Clarify: playlist-start/end options are inclusive

Edit the README.md and the help text to clarify that the number
specified for the --playlist-start and --playlist-end options when
downloading a playlist is inclusive
This commit is contained in:
Camille Flynn 2022-11-02 10:45:21 +01:00
parent 087ddc2371
commit 34df2cd4b7
2 changed files with 4 additions and 4 deletions

View File

@ -128,9 +128,9 @@ Alternatively, refer to the [developer instructions](#developer-instructions) fo
CIDR notation
## Video Selection:
--playlist-start NUMBER Playlist video to start at (default is
--playlist-start NUMBER Playlist video to start at (inclusive) (default is
1)
--playlist-end NUMBER Playlist video to end at (default is
--playlist-end NUMBER Playlist video to end at (inclusive) (default is
last)
--playlist-items ITEM_SPEC Playlist video items to download.
Specify indices of the videos in the

View File

@ -258,11 +258,11 @@ def parseOpts(overrideArguments=None):
selection.add_option(
'--playlist-start',
dest='playliststart', metavar='NUMBER', default=1, type=int,
help='Playlist video to start at (default is %default)')
help='Playlist video to start at (inclusive) (default is %default)')
selection.add_option(
'--playlist-end',
dest='playlistend', metavar='NUMBER', default=None, type=int,
help='Playlist video to end at (default is last)')
help='Playlist video to end at (inclusive) (default is last)')
selection.add_option(
'--playlist-items',
dest='playlist_items', metavar='ITEM_SPEC', default=None,