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.
Downloading Video from playlist and assigning a name.... #1233
Comments
|
The actual reason the first case doesn't fail is that you are not escaping then |
When I try to pull a specific video from a play list (ie URL contains &list=) this works correctly if I do NOT assign an output file name (ie -o) but fails when an output file name is included.
EXAMPLE1: (works with no assigned name)
C:\youtube-dl.py -v http://www.youtube.com/watch?v=OOOGuKa_HLc&list=TLn6fFfNvb6Ik
[debug] System config: []
[debug] User config: []
[debug] Command-line args: ['-v', 'http://www.youtube.com/watch?v=OOOGuKa_HLc']
[debug] youtube-dl version 2013.08.09
[debug] Python version 2.7.1 - Windows-7-6.1.7601-SP1
[debug] Proxy map: {}
[youtube] Setting language
[youtube] OOOGuKa_HLc: Downloading video webpage
[youtube] OOOGuKa_HLc: Downloading video info webpage
[youtube] OOOGuKa_HLc: Extracting video information
[download] Destination: Appalachian Mountains _ New Brunswick, Canada-OOOGuKa_HL
c.mp4
[download] 100.0% of 3.24MiB at 2.66MiB/s ETA 00:0002
'list' is not recognized as an internal or external command,
operable program or batch file.
EXAMPLE2: (fails when assigning output file name)
C:\youtube-dl.py -v "http://www.youtube.com/watch?v=OOOGuKa_HLc&l
ist=TLn6fFfNvb6Ik" -o "C:\TESTVIZ"
[debug] System config: []
[debug] User config: []
[debug] Command-line args: ['-v', 'http://www.youtube.com/watch?v=OOOGuKa_HLc&list=TLn6fFfNvb6Ik', '-o', 'C:\TESTVIZ']
[debug] youtube-dl version 2013.08.09
[debug] Python version 2.7.1 - Windows-7-6.1.7601-SP1
[debug] Proxy map: {}
[youtube:playlist] TLn6fFfNvb6Ik: Downloading page #1
[download] Downloading playlist: Untitled list
[youtube:playlist] playlist 'Untitled list': Collected 0 video ids (downloading
0 of them)
Thanks in advance...
Ringo