From f71e534860d9ebb67898df907419d4faef367a4c Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Tue, 19 Feb 2019 10:31:17 +0100 Subject: [PATCH] Added mpv to the supported media plugins on media.webtorrent --- platypush/plugins/media/webtorrent.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/platypush/plugins/media/webtorrent.py b/platypush/plugins/media/webtorrent.py index 31c3e69f98..f9713be73b 100644 --- a/platypush/plugins/media/webtorrent.py +++ b/platypush/plugins/media/webtorrent.py @@ -40,7 +40,7 @@ class MediaWebtorrentPlugin(MediaPlugin): """ _supported_media_plugins = {'media.mplayer', 'media.omxplayer', - 'media.webtorrent'} + 'media.mpv', 'media.webtorrent'} # Download at least 10 MBs before starting streaming _download_size_before_streaming = 10 * 2**20 @@ -51,7 +51,7 @@ class MediaWebtorrentPlugin(MediaPlugin): **kwargs): """ 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, then Platypush will search for the right executable in your PATH @@ -293,7 +293,7 @@ class MediaWebtorrentPlugin(MediaPlugin): :type resource: str :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. :type player: str