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.
Hello. I made a script to download a playlist with next parameters:
youtube-dl -i --format mp4 --yes-playlist --external-downloader aria2c -o '%(playlist_index)03d - %(title)s - %(id)s.%(ext)s' --include-ads --merge-output-format mp4 [playlist]After several days I've faced a problem: playlist's author added a new video in the middle of the playlist and youtube-dl has to downloaded a half of the playlist again. But old files are stay and not removed.
How can I synchronize the playlist and already downloaded files without downloading downloaded files again, but renaming it to a new names? Thanks.