VideoHelp Forum




+ Reply to Thread
Results 1 to 9 of 9
  1. hi, can someone please tell me step by step how to run rtmpdump and download this video at 720p 3500k

    I have never used rtmpdump so need step by step guide

    http://www.spike.com/episodes/w6r3nj/impact-wrestling-hdimp947a-season-9-ep-947

    thank you
    Last edited by blade2005; 4th Dec 2014 at 05:17.
    Quote Quote  
  2. Member Emeritus
    Join Date
    May 2014
    Search PM
    newest version of youtube-dl will do it automatically without rtmpdump, but it downloads all of the parts separately.
    Quote Quote  
  3. Hi ,

    Thanks for this newest version .

    ******************
    youtube-dl -U

    Updating to version 2014.12.04.2 ...
    Waiting for file handle to be closed ...
    Updated youtube-dl to version 2014.12.04.2.
    ====

    The newest version destroy the older one (2014.12.1.0) ; Why ?
    Note : The older way for updating was a good way .
    ******************

    **** other QUESTION ****

    Here below one try . The file .flv is lagging .
    =========
    youtube-dl http://pluzz.francetv.fr/videos/questions_au_gouvernement_,113257137.html -o Senat-info-113257137.flv

    [pluzz.francetv.fr] questions_au_gouvernement_,113257137: Downloading webpage
    [pluzz.francetv.fr] 113257137: Downloading video JSON
    [pluzz.francetv.fr] 113257137: Downloading f4m manifest token
    [pluzz.francetv.fr] 113257137: Downloading f4m manifest
    [pluzz.francetv.fr] 113257137: Downloading m3u8 information
    [download] Downloading f4m manifest
    [download] Destination: Senat-info-113257137.flv
    [download] 100% of 62.48MiB in 03:02
    =========
    I have been obliged to do :
    ffmpeg -i "Senat-info-113257137.flv" -vcodec copy -acodec copy -f mp4 Senat-info-113257137.mp4
    Could it be done directly ?

    Regards .
    Quote Quote  
  4. Originally Posted by ponens View Post
    newest version of youtube-dl will do it automatically without rtmpdump, but it downloads all of the parts separately.
    can you tell me how to use it?
    how do I download the video as 720p
    if it downloads in parts will they be .mp4 files?

    if not could you tell me how to download the video with rtmpdump

    thank you
    Quote Quote  
  5. Member Emeritus
    Join Date
    May 2014
    Search PM
    Originally Posted by blade2005 View Post
    can you tell me how to use it?
    Download youtube-dl.exe, open windows command prompt in the folder where youtube-dl.exe exists and type:
    Code:
    youtube-dl "http://www.spike.com/episodes/w6r3nj/impact-wrestling-hdimp947a-season-9-ep-947"
    Last edited by ponens; 6th Dec 2014 at 01:31.
    Quote Quote  
  6. Hi ,

    Witch formats are able in a video ?
    Code:
    ===
    youtube-dl -F https://www.youtube.com/watch?v=vxdHMHuTxUQ
    
    RESULT
    [youtube] vxdHMHuTxUQ: Downloading webpage
    [youtube] vxdHMHuTxUQ: Extracting video information
    [youtube] vxdHMHuTxUQ: Downloading DASH manifest
    [info] Available formats for vxdHMHuTxUQ:
    format code extension resolution  note
    139         m4a       audio only  DASH audio   48k , audio@ 48k (22050Hz), 1.27MiB (worst)
    140         m4a       audio only  DASH audio  128k , audio@128k (44100Hz), 3.39MiB
    171         webm      audio only  DASH audio  143k , audio@128k (44100Hz), 3.57MiB
    172         webm      audio only  DASH audio  198k , audio@256k (44100Hz), 4.89MiB
    141         m4a       audio only  DASH audio  255k , audio@256k (44100Hz), 6.80MiB
    278         webm      256x144     DASH video   92k , webm container, VP9, 1fps, video only, 1.39MiB
    160         mp4       256x144     DASH video  124k , 15fps, video only, 2.82MiB
    242         webm      426x240     DASH video  114k , 1fps, video only, 2.35MiB
    133         mp4       426x240     DASH video  278k , 30fps, video only, 6.71MiB
    243         webm      640x360     DASH video  218k , 1fps, video only, 4.52MiB
    134         mp4       640x360     DASH video  266k , 30fps, video only, 6.16MiB
    244         webm      852x480     DASH video  395k , 1fps, video only, 8.03MiB
    135         mp4       852x480     DASH video  581k , 30fps, video only, 13.42MiB
    247         webm      1278x720    DASH video  793k , 1fps, video only, 14.59MiB
    136         mp4       1278x720    DASH video 1284k , 30fps, video only, 27.77MiB
    17          3gp       176x144
    36          3gp       320x240
    5           flv       400x240
    43          webm      640x360
    18          mp4       640x360
    22          mp4       1280x720    (best)
    ===
    If you want a specific assembly . Example = 'Format 136' + 'Format 141'
    Code:
    ===
    youtube-dl -f 136+141 https://www.youtube.com/watch?v=vxdHMHuTxUQ -o Zorba.mp4
    
    [youtube] Confirming age
    [youtube] vxdHMHuTxUQ: Downloading webpage
    [youtube] vxdHMHuTxUQ: Downloading video info webpage
    [youtube] vxdHMHuTxUQ: Extracting video information
    [youtube] vxdHMHuTxUQ: Downloading DASH manifest
    [download] Destination: Zorba.f136.mp4
    [download] 100% of 27.77MiB in 01:12
    [download] Destination: Zorba.f141.mp4
    [download] 100% of 6.80MiB in 00:17
    [ffmpeg] Merging formats into "Zorba.mp4"
    ===
    Regards .
    Quote Quote  
  7. Originally Posted by ponens View Post
    Originally Posted by blade2005 View Post
    can you tell me how to use it?
    If you're running windows, just download youtube-dl.exe. Run it at a windows command prompt, followed by the url placed within quotes.

    Download youtube-dl.exe, open windows command prompt in the folder where youtube-dl.exe exists and type:
    Code:
    youtube-dl "http://www.spike.com/episodes/w6r3nj/impact-wrestling-hdimp947a-season-9-ep-947"
    Originally Posted by blade2005 View Post
    how do I download the video as 720p
    The above command will.

    Originally Posted by blade2005 View Post
    if it downloads in parts will they be .mp4 files?
    yes
    Originally Posted by blade2005 View Post
    if not could you tell me how to download the video with rtmpdump
    rtmpdump is much more difficult, you have to get all the parameters manually for each and every part which is much more work. The downloads will be in .flv container.

    Did you even try youtube-dl? It is easier than falling on a log.
    OK, thanks I will try it tonight
    Quote Quote  
  8. ...
    Last edited by sysanin; 13th Nov 2015 at 18:20.
    Quote Quote  
  9. Hi ,

    Thanks to 'sysanin' .

    Code:
    !!! Get the good rtmpdump file !!!
    
    
    Create a batch file ( 1 stream )
    
    @echo on
    rtmpdump -r "rtmpe://cp22372.edgefcs.net/ondemand/mtvnorigin/gsp.alias/mediabus/spike.com/2014/08/20/09/05/679141/HDIMP947A_clip1_1280x720_3500_h32.mp4" -o "season-9-ep-947-1.flv"
    pause
    :fin
    
    Here below the process :
    =====
    RTMPDump vx.y GIT-.....
    (c) 2010 Andrej Stepanchuk, Howard Chu, The Flvstreamer Team; license: GPL
    Connecting ...
    WARNING: HandShake: Type mismatch: client sent 6, server answered 10
    INFO: Connected...
    Starting download at: 0.000 kB
    INFO: Metadata:
    INFO:   duration              618.11
    INFO:   moovPosition          32.00
    INFO:   width                 1280.00
    INFO:   height                720.00
    INFO:   videocodecid          avc1
    INFO:   audiocodecid          mp4a
    INFO:   avcprofile            100.00
    INFO:   avclevel              32.00
    INFO:   aacaot                2.00
    INFO:   videoframerate        29.97
    INFO:   audiosamplerate       24000.00
    INFO:   audiochannels         2.00
    INFO: trackinfo:
    INFO:   length                18521000.00
    INFO:   timescale             29970.00
    INFO:   language              eng
    INFO: sampledescription:
    INFO:   sampletype            avc1
    INFO:   length                14834688.00
    INFO:   timescale             24000.00
    INFO:   language              eng
    INFO: sampledescription:
    INFO:   sampletype            mp4a
    264379.354 kB / 618.07 sec (99.9%)
    Download complete
    =====
    Cheers .
    Last edited by aazerty; 6th Dec 2014 at 08:39.
    Quote Quote  
Visit our sponsor! Try DVDFab and backup Blu-rays!