Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rtmpdump YouTube video #1797

Closed
RingoTheDog opened this issue Nov 19, 2013 · 4 comments
Closed

rtmpdump YouTube video #1797

RingoTheDog opened this issue Nov 19, 2013 · 4 comments
Labels
bug

Comments

@RingoTheDog
Copy link

@RingoTheDog RingoTheDog commented Nov 19, 2013

Have not dealt this one of these rtmpdump youtube videos before...so I may be doing something wrong.

First time I got:
"ERROR: RTMP download detected but "rtmpdump" could not be run"

...so I put a copy of rtmpdump.exe in the same directory and now I get this:

C:\Transmogrifier>youtube-dl.py -v http://www.youtube.com/watch?v=Gbe0Baw1roA
[debug] System config: []
[debug] User config: []
[debug] Command-line args: ['-v', 'http://www.youtube.com/watch?v=Gbe0Baw1roA']
[debug] youtube-dl version 2013.11.19
[debug] Python version 2.7.3 - Windows-7-6.1.7601-SP1
[debug] Proxy map: {}
[youtube] Setting language
[youtube] Gbe0Baw1roA: Downloading video webpage
[youtube] Gbe0Baw1roA: Downloading video info webpage
[youtube] Gbe0Baw1roA: Extracting video information
[youtube] RTMP download detected
[download] Destination: Hunger Games - Catching Fire Movie Trailer #3 [HD]-Gbe0
Baw1roA.flv
[debug] rtmpdump command line: rtmpdump --verbose -r rtmpe://v22.nonxt2.c.youtub
e.com/videoplayback -o 'Hunger Games - Catching Fire Movie Trailer #3 [HD]-Gbe0
Baw1roA.flv.part' --resume --skip 1
RTMPDump v2.4
(c) 2010 Andrej Stepanchuk, Howard Chu, The Flvstreamer Team; license: GPL
DEBUG: Parsing...
DEBUG: Parsed protocol: 2
DEBUG: Parsed host : v22.nonxt2.c.youtube.com
DEBUG: Parsed app : videoplayback
DEBUG: Number of skipped key frames for resume: 1
ERROR: You must specify a playpath (--playpath) or url (-r "rtmp://host[:port]/p
laypath") containing a playpath
ERROR: unable to download video
Traceback (most recent call last):
File "C:\Transmogrifier\youtube-dl.py\youtube_dl\YoutubeDL.py", line 773, in d
ownload
videos = self.extract_info(url)
File "C:\Transmogrifier\youtube-dl.py\youtube_dl\YoutubeDL.py", line 421, in e
xtract_info
return self.process_ie_result(ie_result, download, extra_info)
File "C:\Transmogrifier\youtube-dl.py\youtube_dl\YoutubeDL.py", line 502, in p
rocess_ie_result
for r in ie_result['entries']
File "C:\Transmogrifier\youtube-dl.py\youtube_dl\YoutubeDL.py", line 446, in p
rocess_ie_result
return self.process_video_result(ie_result, download=download)
File "C:\Transmogrifier\youtube-dl.py\youtube_dl\YoutubeDL.py", line 535, in p
rocess_video_result
self.process_info(info_dict)
File "C:\Transmogrifier\youtube-dl.py\youtube_dl\YoutubeDL.py", line 751, in p
rocess_info
raise UnavailableVideoError(err)
UnavailableVideoError: [Error 2] The system cannot find the file specified: u'Hu
nger Games - Catching Fire Movie Trailer #3 [HD]-Gbe0Baw1roA.flv.part'

Thanks as always...

@robpieke
Copy link

@robpieke robpieke commented Nov 19, 2013

Same issue on a different URL (and platform - OSX). The path generated for rtmpdump looks suspiciously short.

$ youtube-dl -v http://youtube.com/watch?v=Z5pjcx4ODdg
[debug] System config: []
[debug] User config: []
[debug] Command-line args: ['-v', 'http://youtube.com/watch?v=Z5pjcx4ODdg']
[debug] youtube-dl version 2013.11.19
[debug] Python version 2.7.5 - Darwin-13.0.0-x86_64-i386-64bit
[debug] Proxy map: {}
[youtube] Setting language
[youtube] Z5pjcx4ODdg: Downloading video webpage
[youtube] Z5pjcx4ODdg: Downloading video info webpage
[youtube] Z5pjcx4ODdg: Extracting video information
[youtube] RTMP download detected
[download] Destination: The Property Market Undercover-Z5pjcx4ODdg.flv
[debug] rtmpdump command line: rtmpdump --verbose -r rtmpe://v10.nonxt5.c.youtube.com/videoplayback -o 'The Property Market Undercover-Z5pjcx4ODdg.flv.part' --resume --skip 1
RTMPDump v2.4
(c) 2010 Andrej Stepanchuk, Howard Chu, The Flvstreamer Team; license: GPL
DEBUG: Parsing...
DEBUG: Parsed protocol: 2
DEBUG: Parsed host : v10.nonxt5.c.youtube.com
DEBUG: Parsed app : videoplayback
DEBUG: Number of skipped key frames for resume: 1
ERROR: You must specify a playpath (--playpath) or url (-r "rtmp://host[:port]/playpath") containing a playpath
ERROR: unable to download video
Traceback (most recent call last):
File "/usr/local/bin/youtube-dl/youtube_dl/YoutubeDL.py", line 773, in download
videos = self.extract_info(url)
File "/usr/local/bin/youtube-dl/youtube_dl/YoutubeDL.py", line 421, in extract_info
return self.process_ie_result(ie_result, download, extra_info)
File "/usr/local/bin/youtube-dl/youtube_dl/YoutubeDL.py", line 502, in process_ie_result
for r in ie_result['entries']
File "/usr/local/bin/youtube-dl/youtube_dl/YoutubeDL.py", line 446, in process_ie_result
return self.process_video_result(ie_result, download=download)
File "/usr/local/bin/youtube-dl/youtube_dl/YoutubeDL.py", line 535, in process_video_result
self.process_info(info_dict)
File "/usr/local/bin/youtube-dl/youtube_dl/YoutubeDL.py", line 751, in process_info
raise UnavailableVideoError(err)
UnavailableVideoError: [Errno 2] No such file or directory: 'The Property Market Undercover-Z5pjcx4ODdg.flv.part'

@dequis
Copy link
Contributor

@dequis dequis commented Feb 22, 2014

This sounds like a duplicate of #343

@dequis
Copy link
Contributor

@dequis dequis commented Feb 22, 2014

Actually, the error message seems to be new, but it's rtmpe and with a generic URL, rtmpe://v10.nonxt5.c.youtube.com/videoplayback

@dstftw
Copy link
Collaborator

@dstftw dstftw commented Jun 12, 2016

Duplicate of #343.

@dstftw dstftw closed this Jun 12, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Linked pull requests

Successfully merging a pull request may close this issue.

None yet
4 participants
You can’t perform that action at this time.