syncplay/syncplay/players/__init__.py
Et0h e03cfe12c3 Experimental VLC support
VLC now works, but it ain't perfect.
2013-01-17 20:43:44 +00:00

12 lines
412 B
Python

from syncplay.players.mplayer import MplayerPlayer
from syncplay.players.mpv import MpvPlayer
from syncplay.players.vlc import VlcPlayer
try:
from syncplay.players.mpc import MPCHCAPIPlayer
except ImportError:
from syncplay.players.basePlayer import DummyPlayer
MPCHCAPIPlayer = DummyPlayer
def getAvailablePlayers():
return [MPCHCAPIPlayer, MplayerPlayer, MpvPlayer, VlcPlayer]