Skip to content

Commit

Permalink
bump OPM
Browse files Browse the repository at this point in the history
  • Loading branch information
JarbasAl committed Jan 8, 2024
1 parent a1a24d3 commit ea05097
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ovos_plugin_vlc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import vlc
from ovos_bus_client.message import Message

from ovos_plugin_manager.templates.media import MediaBackend
from ovos_plugin_manager.templates.media import MediaBackend, AudioPlayerBackend, VideoPlayerBackend
from ovos_utils.log import LOG


Expand Down Expand Up @@ -154,11 +154,11 @@ def seek_backward(self, seconds=1):
self.player.set_time(new_time)


class VLCOCPAudioService(VlcBaseService):
class VLCOCPAudioService(AudioPlayerBackend, VlcBaseService):
def __init__(self, config, bus=None):
super().__init__(config, bus, video=False)


class VLCOCPVideoService(VlcBaseService):
class VLCOCPVideoService(VideoPlayerBackend, VlcBaseService):
def __init__(self, config, bus=None):
super().__init__(config, bus, video=True)

0 comments on commit ea05097

Please sign in to comment.