Last active
May 23, 2020 09:23
-
-
Save Aniket965/7533232cedd0c1d7c3b732c0c7079817 to your computer and use it in GitHub Desktop.
youtube playlist downloader
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from subprocess import call | |
url = raw_input(); | |
command = "youtube-dl --ignore-errors --output '%(playlist)s/%(playlist_index)s.mp4 "+ str(url)+" -c"; | |
call(command.split(), shell=False) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment