forked from platypush/platypush
Added mpv to the supported media plugins on media.webtorrent
This commit is contained in:
parent
88600dab90
commit
f71e534860
1 changed files with 3 additions and 3 deletions
|
@ -40,7 +40,7 @@ class MediaWebtorrentPlugin(MediaPlugin):
|
||||||
"""
|
"""
|
||||||
|
|
||||||
_supported_media_plugins = {'media.mplayer', 'media.omxplayer',
|
_supported_media_plugins = {'media.mplayer', 'media.omxplayer',
|
||||||
'media.webtorrent'}
|
'media.mpv', 'media.webtorrent'}
|
||||||
|
|
||||||
# Download at least 10 MBs before starting streaming
|
# Download at least 10 MBs before starting streaming
|
||||||
_download_size_before_streaming = 10 * 2**20
|
_download_size_before_streaming = 10 * 2**20
|
||||||
|
@ -51,7 +51,7 @@ class MediaWebtorrentPlugin(MediaPlugin):
|
||||||
**kwargs):
|
**kwargs):
|
||||||
"""
|
"""
|
||||||
media.webtorrent will use the default media player plugin you have
|
media.webtorrent will use the default media player plugin you have
|
||||||
configured (e.g. mplayer, omxplayer) to stream the torrent.
|
configured (e.g. mplayer, omxplayer, mpv) to stream the torrent.
|
||||||
|
|
||||||
:param webtorrent_bin: Path to your webtorrent executable. If not set,
|
:param webtorrent_bin: Path to your webtorrent executable. If not set,
|
||||||
then Platypush will search for the right executable in your PATH
|
then Platypush will search for the right executable in your PATH
|
||||||
|
@ -293,7 +293,7 @@ class MediaWebtorrentPlugin(MediaPlugin):
|
||||||
:type resource: str
|
:type resource: str
|
||||||
|
|
||||||
:param player: If set, use this plugin type as a player for the
|
:param player: If set, use this plugin type as a player for the
|
||||||
torrent. Supported types: 'mplayer', 'omxplayer', 'chromecast'.
|
torrent. Supported types: 'mplayer', 'omxplayer', 'chromecast', 'mpv'.
|
||||||
If not set, then the default configured media plugin will be used.
|
If not set, then the default configured media plugin will be used.
|
||||||
:type player: str
|
:type player: str
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue