summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJ0J0 T <jojo@peek-a-boo.at>2022-08-29 14:15:03 +0200
committerJ0J0 Todos <jojo@peek-a-boo.at>2023-03-29 07:46:08 +0200
commitd248063f96f296dfc24cc48af318fbc515e6a9d5 (patch)
tree93a8c70a9f672b65ac602a456f520636b711cb7f
parentc28eb95ef2d4b3e2704f15a715cac128ddd061f6 (diff)
convert: playlist: Improve --playlist help text
-rw-r--r--beetsplug/convert.py16
1 files 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]