Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
Checklist
Verbose log
Description
If you download an entire 100-video playlist, the
playlist_indexkey will be padded with leading zeroes to three digits for all videos downloaded. However, if you use--playlist-start 2 --playlist-end 100to download only 99 videos from the same playlist,playlist_indexwill be padded only to two digits, rather than to the expected three digits. Likewise, if you use--playlist-start 2 --playlist-end 10to download only nine videos from the same 100-video playlist,playlist_indexwill not be padded at all.Apparently, the program considers only the count of videos to be downloaded in determining the padding. According to the readme, however, it is supposed to consider the total length of the playlist.