From d248063f96f296dfc24cc48af318fbc515e6a9d5 Mon Sep 17 00:00:00 2001 From: J0J0 T Date: Mon, 29 Aug 2022 14:15:03 +0200 Subject: [PATCH] convert: playlist: Improve --playlist help text --- beetsplug/convert.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/beetsplug/convert.py b/beetsplug/convert.py index 88c99e53d..9493a5fc2 100644 --- a/beetsplug/convert.py +++ b/beetsplug/convert.py @@ -180,14 +180,14 @@ class ConvertPlugin(BeetsPlugin): help='hardlink files that do not \ need transcoding. Overrides --link.') cmd.parser.add_option('-m', '--playlist', action='store', - help='''the name of an m3u8 playlist file to - be created in the root of the destination folder. - The m3u8 format ensures special characters - support by using unicode to save media file - paths. Relative paths are used to point to media - files ensuring a working playlist when - transferred to a different computer (eg. when - opened from an external drive).''') + help='''create an m3u8 playlist file containing + the converted files. The playlist file will be + saved below the destination directory, thus + PLAYLIST could be a file name or a relative path. + To ensure a working playlist when transferred to + a different computer, or opened from an external + drive, relative paths pointing to media files + will be used.''') cmd.parser.add_album_option() cmd.func = self.convert_func return [cmd]