VideoHelp Forum




+ Reply to Thread
Page 75 of 154
FirstFirst ... 25 65 73 74 75 76 77 85 125 ... LastLast
Results 2,221 to 2,250 of 4610
  1. Member
    Join Date
    Oct 2013
    Location
    United States
    Search PM
    can anyone help me getting this http://tvline.com/2014/03/13/glee-episode-100-video-lea-michele-interview/

    I can't get the code I need for rtmpdump
    Quote Quote  
  2. Little Up ♥ Please
    Quote Quote  
  3. Hello all! What a great site. For the last few days I have been tring to grab a few Sochi speed skating videos from cbc.ca that are on demand. I have tryed Rtmphelper and Streamtransport to no avail. I just starting playing with rtmp because I was not impressed with the quality of a screen capture software I used. Please pardon my noobishness but can anyone help me download one of these videos before cbc stops streaming them?
    Any replys would be greatly appreciated!
    Here is a link to one of the videos "http://olympics.cbc.ca/videos/live/video/speed-skating-womens-500m-run-webcast-35031.html"

    Many thanks
    Quote Quote  
  4. Hello,

    I'm asking advice in downloading the video at

    http://www.moshcam.com/megadeth/no-sleep-til-festival-853.aspx

    The stream is transferred over RTMP but I can't get the correct parameters for RTMPDump (I'm trying to use Wireshark to do this).

    Thank you very much if you are able to help!
    Last edited by muzakh; 15th Mar 2014 at 19:58. Reason: Fixing a typo
    Quote Quote  
  5. batch expert Endoro's Avatar
    Join Date
    Dec 2013
    Location
    Bozen
    Search PM
    Code:
    rtmpdump -r "rtmpe://cp163278.edgefcs.net:1935/ondemand" -y "mp4:videos-moshcam/moshcam/1692k/megadeth_002_20101218_nst_moshcam_1692k_480p.mp4" -o "Intro-Holy Wars - The Punishment Due.flv"
    Quote Quote  
  6. I also tried to find the rtmp link using the wireshark filter and nothing under rtmp came up. I tried streamtransport and was only able to grab the commercial before the video. Before that I used Rmtphelper to work with rtmpdump and still no stream that I think Im looking for? Before that I tried Adobe HDS and used the firefox console to filter "f4m" and nothing showed. It looks like the video in fragments but Ive read people can still download these? I haven't gotten as far to see if it's encryped yet. Is anyone familar with cbc.ca streams? I'm not quite sure what format they use.
    Quote Quote  
  7. Hi, New user here.
    Thank you ahead of time for whomever can help me. I am trying to download download this video

    http://gotv.tvb.com/programme/103303/154767

    It requires Hong Kong proxy.

    But no luck so far. Thanks again.
    Quote Quote  
  8. Deceased
    Join Date
    Dec 2007
    Search PM
    Originally Posted by mingmingming3721 View Post
    Hi, New user here.
    Thank you ahead of time for whomever can help me. I am trying to download download this video

    http://gotv.tvb.com/programme/103303/154767

    It requires Hong Kong proxy.

    But no luck so far. Thanks again.
    Read page 65 of this thread.
    Quote Quote  
  9. Hello,

    I'm trying to download one of several videos from the same site. As an example, I'm using https://www.daisuki.net/movies/watch/KILLlaKILL/QFc/5Gc, since it's the smaller of the bunch. Following this guide I've put together the following command from Chrome's developer tools network element:

    Code:
    rtmpdump -r rtmp://cp221510.edgefcs.net/ondemand/ -y mp4:videos/391673657002/201309/30/391673657002_613809559002_a-524a2172f0d01.mp4 -o pv.flv
    This, however, manages to download a file which can't be played by VLC or other video players. RTMPExplorer automatically generates a more elaborate command, but the result is a non-playable video again (although there is a RTMP_HashSWF error).


    RTMPDumpHelper gives me an error and doesn't produce any files.

    Can anyone give me any idea on what I'm doing wrong (which I'm sure is plenty), and how to reliably find the correct parameters for the other videos?

    Thanks in advance.
    Last edited by Duebrithil; 16th Mar 2014 at 17:00. Reason: Added RTMPExplorer screenshot
    Quote Quote  
  10. Endoro, thanks a lot for the push into right direction. If I correctly understand, the parameters needed for rtmpdump are encrypted but rtmpsrv.exe knows how to decrypt them. Using this guide http://stream-recorder.com/forum/use-rtmpdump-rtmpsrv-linux-t7661.html, I managed to find the correct parameters and then download the whole concert video using rtmpdump in the usual way. If it's any use for someone else, the command is

    Code:
    rtmpdump -r "rtmpe://cp163278.edgefcs.net:1935/ondemand" -a "ondemand" -f "LNX 11,2,202,332" -W "http://www.moshcam.com/[[IMPORT]]/players.edgesuite.net/flash/plugins/osmf/advanced-streaming-plugin/v2.11/osmf2.0/AkamaiAdvancedStreamingPlugin.swf" -p "http://www.moshcam.com" -C O:1 -C O:0 -y "mp4:videos-moshcam/moshcam/1692k/megadeth_002_20101218_nst_moshcam_1692k_480p.mp4" -o megadeth_002_20101218_nst_moshcam_1692k_480p.flv
    James667, I tried to found a way to download that skating video of yours but no luck, sorry. Looking into the packets with Wireshark, I'm quite sure that the video is not streamed using RTMP. Hopefully someone smarter can help you.
    Quote Quote  
  11. Deceased
    Join Date
    Dec 2007
    Search PM
    Originally Posted by Duebrithil View Post
    This, however, manages to download a file which can't be played by VLC or other video players.
    .
    .
    Can anyone give me any idea on what I'm doing wrong (which I'm sure is plenty), and how to reliably find the correct parameters for the other videos?

    Thanks in advance.
    You're getting the server file correctly, but it is encrypted with flash access. If you look at the header of the video file in a hex editor, you'll see "FlashAccessv2" and also "encv", both signs of encryption.
    Quote Quote  
  12. Originally Posted by Pynot View Post
    Hi,

    What's the best ffmpeg command to download the m3u8 video with the smallest watchable file size possible (cost-benefit)? I've been using (ffmpeg -i "http://..." -c copy t.mkv), but it seems to me that I could lose a little more quality to get a smaller video file (I usually get around 2.35mb per minute).

    Thank you very much in advance.
    Does anyone know a FFMPEG command to download a smaller file from m3u8 link than this:
    Code:
    ffmpeg -i "http://...m3u8" -c copy t.mkv
    ?

    Sorry to ask again, it's because I have to download more than 400 videos.

    Thanks in advance. Best regards.
    Quote Quote  
  13. Originally Posted by blimey View Post
    You're getting the server file correctly, but it is encrypted with flash access. If you look at the header of the video file in a hex editor, you'll see "FlashAccessv2" and also "encv", both signs of encryption.
    Ah, I see. Is there any way to get rid of this encryption and make the video file playable or is recording the screen the other viable option? In any case, thanks for your answer!
    Quote Quote  
  14. batch expert Endoro's Avatar
    Join Date
    Dec 2013
    Location
    Bozen
    Search PM
    Originally Posted by Pynot View Post
    Does anyone know a FFMPEG command to download a smaller file from m3u8 link
    use the "-map" option http://ffmpeg.org/ffmpeg.html#Advanced-options
    Quote Quote  
  15. Originally Posted by blimey View Post
    Originally Posted by mingmingming3721 View Post
    Hi, New user here.
    Thank you ahead of time for whomever can help me. I am trying to download download this video

    http://gotv.tvb.com/programme/103303/154767

    It requires Hong Kong proxy.

    But no luck so far. Thanks again.
    Read page 65 of this thread.
    I have tried the method but it isn't work for me

    Could anyone can advice me how to do it? Thanks a lot.
    Quote Quote  
  16. @ muzakh , I appreciate that thanks for the heads up! I'm looking into it.
    Here is a section of of the text that loads in firefox console as the video plays.
    @ http://olympics.cbc.ca/videos/live/video/speed-skating-women-1500m-finals-webcast.html


    https://gwd.lphbs.com/0/lpg/msg [HTTP/1.1 200 OK 63ms]
    http://vod-s.olympics.cbc.ca/63240481-4cba-4017-bb1b-bae30efb5c21/7a0a3763-855f-4110-b...o=501727220000) [HTTP/1.0 200 OK 1203ms]
    http://vod-s.olympics.cbc.ca/63240481-4cba-4017-bb1b-bae30efb5c21/7a0a3763-855f-4110-b...o=501747240000) [HTTP/1.0 200 OK 563ms]
    http://vod-s.olympics.cbc.ca/63240481-4cba-4017-bb1b-bae30efb5c21/7a0a3763-855f-4110-b...o=501767260000) [HTTP/1.0 200 OK 1118ms]
    http://vod-s.olympics.cbc.ca/63240481-4cba-4017-bb1b-bae30efb5c21/7a0a3763-855f-4110-b...o=501787280000) [HTTP/1.0 200 OK 437ms]
    http://ping.chartbeat.net/ping [HTTP/1.1 200 OK 54ms]
    http://olympics.cbc.ca/DivaData/output/VideoData/IIS/35416.xml [HTTP/1.1 304 Not Modified 39ms]
    http://olympics.cbc.ca/divadata/output/Alerts-en-GB.xml"

    Hate to post in the wrong section If anyone can point me in the right direction.
    Thanks in advance.
    Quote Quote  
  17. So I used ulr detector in coojah6 with this "http://olympics.cbc.ca/videos/live/video/speed-skating-women-1500m-finals-webcast.html vid I'm trying to download, under the video tab only the commercial came up, under the flash tab I have 10 items all with "swf" witch I understand may be flash? This is the first string under the flash tab "http://olympics.cbc.ca/flash/diva/DivaCBC_960.swf?1395059526300" Would it be possible to make a downloadable ulr with this to use with something like Adobe HDS Downloader??
    Any replies appreciated.
    Quote Quote  
  18. ...
    Last edited by sysanin; 13th Nov 2015 at 17:42.
    Quote Quote  
  19. Deceased
    Join Date
    Dec 2007
    Search PM
    See next message...
    Last edited by blimey; 28th Apr 2014 at 11:43.
    Quote Quote  
  20. Originally Posted by sysanin View Post
    Originally Posted by mingmingming3721 View Post
    I have tried the method but it isn't work for me
    Everything works
    sysanin, Thanks for your demonstration

    So is it need to use Firefox to download the video? And what the add-on are you using?
    Great thanks for your help!
    Quote Quote  
  21. Originally Posted by James667 View Post
    Would it be possible to make a downloadable ulr with this to use with something like Adobe HDS Downloader??
    try use linux(cygwin)
    use ffmpeg
    IP(Canada)
    Code:
    ffmpeg -headers 'Cookie: hdntl=exp=1395177488~acl=%2f*~hmac=8ea5d93d61a95f425e1c1f4ca007aa78645648f9d5a73c37f3374a6d879e6852'$'\r\n' -i 'http://vod-i.olympics.cbc.ca/63240481-4cba-4017-bb1b-bae30efb5c21/7a0a3763-855f-4110-b9e4-08b55ada5b9c.ism/QualityLevels(2500000)/Manifest(video,format=m3u8-aapl)' -headers 'Cookie: hdntl=exp=1395177488~acl=%2f*~hmac=8ea5d93d61a95f425e1c1f4ca007aa78645648f9d5a73c37f3374a6d879e6852'$'\r\n' -i 'http://vod-i.olympics.cbc.ca/63240481-4cba-4017-bb1b-bae30efb5c21/7a0a3763-855f-4110-b9e4-08b55ada5b9c.ism/QualityLevels(48000)/Manifest(englishbbm,format=m3u8-aapl)' -c:v libx264 -c:a copy t.mkv
    Image Attached Files
    Last edited by chapun67; 17th Mar 2014 at 15:55.
    Quote Quote  
  22. Hi People!
    Need help to download some videos.
    Here is an exemple. I caught this link from the source of the webpage rtmps://stream07.localmidia.com.br/bmestudo/_definst_/mp4:bmestudo/aula_demonstrativa.mp4/playlist.m3u8.
    I already try to download using some rtmpdump line commands I found here and other topics.

    Maybe I“m using the wrong command. Could anybody help me with this?
    thanks in advance
    Quote Quote  
  23. batch expert Endoro's Avatar
    Join Date
    Dec 2013
    Location
    Bozen
    Search PM
    Originally Posted by lindermman View Post
    Here is an exemple. I caught this link from the source of the webpage rtmps://stream07.localmidia.com.br/bmestudo/_definst_/mp4:bmestudo/aula_demonstrativa.mp4/playlist.m3u8.
    Code:
    ffmpeg -i "http://stream07.localmidia.com.br/bmestudo/_definst_/mp4:bmestudo/aula_demonstrativa.mp4/playlist.m3u8" -c copy aula_demonstrativa.ts
    Quote Quote  
  24. Originally Posted by Endoro View Post
    Originally Posted by lindermman View Post
    Here is an exemple. I caught this link from the source of the webpage rtmps://stream07.localmidia.com.br/bmestudo/_definst_/mp4:bmestudo/aula_demonstrativa.mp4/playlist.m3u8.
    Code:
    ffmpeg -i "http://stream07.localmidia.com.br/bmestudo/_definst_/mp4:bmestudo/aula_demonstrativa.mp4/playlist.m3u8" -c copy aula_demonstrativa.ts

    Thanks very, very, very much!!!!!
    Now I will be able to study when not at home!!!!!!!!
    Thank you!!!!!
    Quote Quote  
  25. Hey,
    could you please help with this stream: http://www.inthemix.com.au/fm/50241/Danger_ITMFM_exclusive_mix
    I noticed bat999 did it a while ago here but the pastie was removed.

    Thanks!
    Quote Quote  
  26. Originally Posted by mailinator_ View Post
    Hey,
    could you please help with this stream: http://www.inthemix.com.au/fm/50241/Danger_ITMFM_exclusive_mix
    I noticed bat999 did it a while ago here but the pastie was removed.

    Thanks!
    use IDM
    Code:
    rtmp://media-rtmp.thesoundalliance.net/inthemix/itm-fm//mp4:110603-DangerMix.m4a
    Quote Quote  
  27. Deceased
    Join Date
    Dec 2007
    Search PM
    Originally Posted by mailinator_ View Post
    Code:
    http://media-cdn.thesoundalliance.net/inthemix/itm-fm/110603-DangerMix.m4a
    or
    http://media.thesoundalliance.net.s3.amazonaws.com/inthemix/itm-fm/110603-DangerMix.m4a
    Last edited by blimey; 20th Mar 2014 at 09:26.
    Quote Quote  
  28. Thanks guys!

    I had tried a bunch of programs but none found it. I also tried by hand, and thought the link was (it's missing mp4:)
    Code:
    rtmp://media-rtmp.thesoundalliance.net/inthemix/itm-fm/110603-DangerMix.m4a
    Can you explain to me the steps you took to find the rtmp url and the s3 one? I want to learn this stuff
    Quote Quote  
  29. Download FFmpeg?


    http://192.95.33.166:1935/vod/_definst_/mp4:http2/Enfase_Enfase_OD_Wowza/201827_94_232.../playlist.m3u8

    "rtmpe://192.95.33.166-1935/vod/_definst_/mp4:http2/Enfase_Enfase_OD_Wowza/201827_94_232.mp4?ticket=znZxZVgS0UjScLB3DTrjSbTfS i3FGLME\u0026id=58880039\u0026prioridade=False\""}
    Quote Quote  
  30. Originally Posted by K4skavel View Post
    Download FFmpeg?


    http://192.95.33.166:1935/vod/_definst_/mp4:http2/Enfase_Enfase_OD_Wowza/201827_94_232.../playlist.m3u8

    "rtmpe://192.95.33.166-1935/vod/_definst_/mp4:http2/Enfase_Enfase_OD_Wowza/201827_94_232.mp4?ticket=znZxZVgS0UjScLB3DTrjSbTfS i3FGLME\u0026id=58880039\u0026prioridade=False\""}
    http://www73.zippyshare.com/v/21235328/file.html
    http://www73.zippyshare.com/v/57117747/file.html
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!