From ef3b1d20f26b43cc92ce6f10b25a9a9502f05d7f Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Tue, 31 Oct 2023 00:37:27 +0100 Subject: [PATCH] Updated `MediaPlugin` documentation snippet. --- platypush/plugins/media/__init__.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/platypush/plugins/media/__init__.py b/platypush/plugins/media/__init__.py index e12b2c41..2617501e 100644 --- a/platypush/plugins/media/__init__.py +++ b/platypush/plugins/media/__init__.py @@ -165,13 +165,15 @@ class MediaPlugin(Plugin, ABC): :param torrent_plugin: Optional plugin to be used for torrent download. Possible values: - - ``torrent`` - native ``libtorrent``-based plugin (default) - - ``rtorrent`` - torrent support over rtorrent RPC/XML interface (recommended) + - ``torrent`` - native ``libtorrent``-based plugin (default, recommended) + - ``rtorrent`` - torrent support over rtorrent RPC/XML interface - ``webtorrent`` - torrent support over webtorrent (unstable) - :param youtube_format: Select the preferred video/audio format for YouTube videos (default: ``best``). - See the `youtube-dl documentation `_ for - more info on supported formats. + :param youtube_format: Select the preferred video/audio format for + YouTube videos (default: ``best``). See the `youtube-dl + documentation + `_ for more + info on supported formats. """ super().__init__(**kwargs)