convert: playlist: Improve --playlist help text

This commit is contained in:
J0J0 T 2022-08-29 14:15:03 +02:00 committed by J0J0 Todos
parent c28eb95ef2
commit d248063f96

View file

@ -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]