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.
simple request about playlist function.. #3508
Comments
|
I just ran into this today. I had to ctrl-c the run while I did some other things and when I tried to resume I found out I couldn't. |
Hi All,
I'm using youtube-dl for a long time on my PC. I created a batch file for youtube playlist, dowloads from playlist.txt simultaneously.
to download max resolution, I use following code:
@youtube-dl --batch-file "Playlists.txt" -f bestvideo+bestaudio --youtube-include-dash-manifest -o "%path%%videoname%"
I downloaded ffmpeg also. program downloading bestaudio dash and bestvideo dash, merging them and finally removing dash audio and dash video file.
The problem is: If program stops unexpected ways and when i start again, because of deleting the dash audio and dash video file it does not start resuming file. I am forced to write "--playlist start NUMBER" code.
Is there any solution for this ??