VideoHelp Forum




+ Reply to Thread
Page 83 of 154
FirstFirst ... 33 73 81 82 83 84 85 93 133 ... LastLast
Results 2,461 to 2,490 of 4610
  1. Originally Posted by videonerd86 View Post
    I also would like to mention that I have tried these methods: None of them work.

    StreamTransport
    TubeDigger
    Replay Media Catcher
    Url Snooper
    SDP Multimedia

    Webpage source and Web developer Network in firefox.

    I'm using this as a learning method with the code that was given and worked:

    (Video page) https://movies.yahoo.com/video/ellen-page-red-carpet-world-012253758.html

    (Url for Ffmpeg) https://hls.video.query.yahoo.com/b4154df0-99c2-3b00-a5bf-e5d7dfffc06b.m3u8?site=movie...sAIVyC57tmD0F5

    Can someone please help me find where to get the url from? I often need yahoo videos and I need to know how to get the correct code for ffmpeg. Tried so many things and nothing shows up for me.

    Thankyou


    Originally Posted by videonerd86 View Post
    Originally Posted by CristianoA View Post
    Originally Posted by videonerd86 View Post
    Originally Posted by CristianoA View Post
    Originally Posted by videonerd86 View Post
    Originally Posted by CristianoA View Post
    Originally Posted by videonerd86 View Post
    With the help of you lovely people, I can grab almost anything! However, yahoo seems to be the only thing I can't seem to get. What do you recommend? I'm trying to get this one: https://movies.yahoo.com/video/ellen-page-red-carpet-world-012253758.html
    use ffmpeg

    Code:
    ffmpeg -i "https://hls.video.query.yahoo.com/b4154df0-99c2-3b00-a5bf-e5d7dfffc06b.m3u8?site=movies&region=US&lang=en-US&plrs=vd3QMclFsAIVyC57tmD0F5 -c copy -absf aac_adtstoasc video.mp4

    Thankyou Where did you get the yahoo url there to place in the code? Or any other hard to get video sites like bloomberg.com?

    Edit: I can't get the code you gave me to work. I have ffmpeg on my C:/ do I need to change something? I tried with and without quotations.

    C:\Users\Studio-1749>"ffmpeg -i "https://hls.video.query.yahoo.com/b4154df0-99c2
    -3b00-a5bf-e5d7dfffc06b.m3u8?site=movies®ion=US&lang=en-US&plrs=vd3QMclFsAIVyC57
    tmD0F5 -c copy -absf aac_adtstoasc video.mp4"
    '"ffmpeg -i "https:' is not recognized as an internal or external command,
    operable program or batch file.
    'lang' is not recognized as an internal or external command,
    operable program or batch file.
    'plrs' is not recognized as an internal or external command,
    operable program or batch file.

    I cannot find a single tutorial on how to grab streaming videos with this? They all explain converting files and screen recording from desktop...
    use newest version of ffmpeg

    Code:
    ffmpeg -i "https://hls.video.query.yahoo.com/b4154df0-99c2-3b00-a5bf-e5d7dfffc06b.m3u8?site=movies&region=US&lang=en-US&plrs=vd3QMclFsAIVyC57tmD0F5" -c copy -absf aac_adtstoasc video.mp4
    It is the latest version... I still need help with my questions please? This doesnt work

    The other one I'm trying to get also (assuming it would work the same way with ffmpeg) http://www.bloomberg.com/video/badlwin-cruz-on-woody-allen-s-to-rome-with-love-phlKVoi...3VNA~jzdg.html
    download this batch file and run it

    http://www20.zippyshare.com/v/56835883/file.html
    Excellent, thankyou. This worked

    How did you find the yahoo url? Or any other stream. So I can do this in the future without asking you everytime? Thankyou, I am very grateful for your help!

    I thought the bloomberg video may be this: http://b5vod-vh.akamaihd.net/z/o/NtaWM3NTrYX9ZlGz2EwSiNxPC77iOnay/DOcJ-FxaFrRg4gtDEwO,...t.f4m?hdcore=1

    But it gave me an invalid data found error.
    for yahoo

    use AdBlock Plus addon as urls sniffer and install User Agent Switcher addon and change user agent to iPhone 3.0

    Quote Quote  
  2. Member Emeritus
    Join Date
    May 2014
    Search PM
    Originally Posted by videonerd86 View Post
    I'm using this as a learning method with the code that was given and worked:

    (Video page) https://movies.yahoo.com/video/ellen-page-red-carpet-world-012253758.html

    Can someone please help me find where to get the url from? I often need yahoo videos and I need to know how to get the correct code for ffmpeg. Tried so many things and nothing shows up for me.
    As a simple method, you can use, as a general template
    Code:
    http://hls.video.query.yahoo.com/----placeholder_for_content_id----.m3u8?site=ivy&region=US&lang=en-US
    Then, just right click/view source on any yahoo video page and the content id # can be found in the source. There are likely a few dozen instances of the content id #, labeled as "uuid=" or "CONTENT_ID =" or "contentId:"

    Insert the content id # value in the template string and now you have a valid link to the m3u8 playlist.

    You don't need the plrs= string for the m3u8 playlist, it is only needed for direct links to mp4/webm. This is because when the m3u8 playlist is called, it generates new plrs= strings for each of the .ts segments.

    Also, you can use http rather than https for the playlist, which works more smoothly with ffmpeg.
    Quote Quote  
  3. Wow, thankyou CristianoA and Ponens! I'll give both mothods a shot and see how I go.
    Quote Quote  
  4. Hey, guys

    I'm trying to download videos from http://www.globaltv.com/rookieblue/index.html

    For example this: http://www.globaltv.com/rookieblue/video/webisode/stakeout+oliver+and+gail/watch.html?...okieblue/video

    I tried with AdobeHDS, but it's encrypted with FlashAccess DRM and it doesn't work

    Is there any other way?

    Thanks
    Quote Quote  
  5. I was able to only download it twice,but on 66%.
    Click image for larger version

Name:	fail.png
Views:	1827
Size:	39.3 KB
ID:	25293

    Code:
    "D:\rtmpdump\rtmpdump.exe" -r "rtmp://video.slavishow.com/slavishow//slavishow/20140323_KRISIA_AINT_NO_SUNSHINE.mp4" -o "D:\video.flv"
    Quote Quote  
  6. Member Emeritus
    Join Date
    May 2014
    Search PM
    Originally Posted by Hoovah View Post
    I was able to only download it twice,but on 66%.
    Code:
    "D:\rtmpdump\rtmpdump.exe" -r "rtmp://video.slavishow.com/slavishow//slavishow/20140323_KRISIA_AINT_NO_SUNSHINE.mp4" -o "D:\video.flv"
    Code:
    "D:\rtmpdump\rtmpdump.exe" -v -r "rtmp://video.slavishow.com/slavishow/" -a "slavishow/" -f "WIN 13,0,0,214" -W "http://www.slavishow.com/content/themes/slavishow/swf/flowplayer.cluster-3.2.10.swf" -p "http://www.slavishow.com/%d0%ba%d1%80%d0%b8%d1%81%d0%b8%d1%8f-%d1%82%d0%be%d0%b4%d0%be%d1%80%d0%be%d0%b2%d0%b0-aint-no-sunshine/" -y "slavishow/20140323_KRISIA_AINT_NO_SUNSHINE.mp4" --tcUrl "rtmp://video.slavishow.com/slavishow/" -R --buffer 2000 -o "D:\20140323_KRISIA_AINT_NO_SUNSHINE.flv"
    Quote Quote  
  7. It worked! Thank you very much!
    P.S. Could you teach me how to get the code for another song so i can download it by myself and not wasting your time ?

    Thanks in advance
    Quote Quote  
  8. Originally Posted by dmr View Post
    Hi,

    Can anyone help me out please, RTMPDumpHelper + RtmpDump, and rtmp explorer also doesn't work anymore with this website.

    http://rtl-now.rtl.de/alles-was-zaehlt/folge-1934.php?film_id=153435&player=1&season=0
    Anyone got an idea what's the problem ?
    Quote Quote  
  9. Hi guys!

    Can somebody explain me why the download stops as shown in the screenshot below?

    Click image for larger version

Name:	00.JPG
Views:	284
Size:	285.6 KB
ID:	25295

    If i try to resume sometimes it works, sometimes it doesn't:

    Click image for larger version

Name:	01.JPG
Views:	1762
Size:	72.9 KB
ID:	25296

    Code:
    rtmpdump.exe -e -r "rtmpe://cp24806.edgefcs.net/ondemand/mtviestor/_!/intlod/it/ontv/il_testimone/stagione_06/it_iltestimone_608_1280x720_3500_h32.mp4" -o "C:\Temp\messico.mp4"
    Last edited by pj_hack; 21st May 2014 at 17:01. Reason: code added
    Quote Quote  
  10. pj_hack
    add link swf
    -W "........................"
    Quote Quote  
  11. Originally Posted by chapun67 View Post
    pj_hack
    add link swf
    -W "........................"
    thank you!
    Quote Quote  
  12. Member
    Join Date
    May 2014
    Location
    United Kingdom
    Search PM
    About ready to throw my laptop through the window, because I've tried everything (within my very basic skill set) to download the following two videos:
    http://www.vh1.com/video/misc/1044133/daniel-radcliffe-on-skinny-dipping-in-toronto-vs...tml#id=1727477
    http://www.vh1.com/video/misc/1044135/daniel-radcliffe-sings-the-periodic-table-for-ni...tml#id=1727477

    I keep getting the handshake 6/handshake 9 error when using rtmpsrv or rtmpsuck, and I don't know enough about it to work out how to correct that. Hoping one of you lovely people could help me out with the correct code or a dl, please!
    Quote Quote  
  13. I have the same problem with videos from e.g. The Daily Show and The Colbert Report. I can't download them anymore

    Can somebody help me?

    http://media.mtvnservices.com/player/prime/mediaplayerprime.2.8.0.swf?uri=mgid:arc:video:thedailyshow.com:18a8c0b2-ed01-11e0-aca6-0026b9414f30
    Quote Quote  
  14. ...
    Last edited by sysanin; 13th Nov 2015 at 17:52.
    Quote Quote  
  15. Member
    Join Date
    Apr 2009
    Location
    New Zealand
    Search PM
    ..
    Last edited by katipo; 30th May 2014 at 08:35.
    Quote Quote  
  16. Member
    Join Date
    May 2014
    Location
    United Kingdom
    Search PM
    Sysanin, thank you so much, I really appreciate you taking the time to help me.
    Quote Quote  
  17. Member
    Join Date
    May 2014
    Location
    Europe
    Search Comp PM
    When I'm trying to download a video,it works but I get images like the one beneath.
    This is not al the time,but the audio faltered also,so it's very annoying.
    Code:
    Code:
    rtmpdump -r "rtmp://vrt.flash.streampower.be/ketnet2011_nogeo" -y "2014/03/webk_bandits_optreden_20140330_111825_Ketnet2011_D10.flv" -o "c:\one.flv"
    Click image for larger version

Name:	rtmp fails.png
Views:	1569
Size:	1.27 MB
ID:	25387
    Quote Quote  
  18. Originally Posted by Nightrise View Post
    When I'm trying to download a video,it works but I get images like the one beneath.
    This is not al the time,but the audio faltered also,so it's very annoying.
    Code:
    Code:
    rtmpdump -r "rtmp://vrt.flash.streampower.be/ketnet2011_nogeo" -y "2014/03/webk_bandits_optreden_20140330_111825_Ketnet2011_D10.flv" -o "c:\one.flv"
    Image
    [Attachment 25387 - Click to enlarge]
    link to video
    Quote Quote  
  19. Member Emeritus
    Join Date
    May 2014
    Search PM
    Originally Posted by Nightrise View Post
    When I'm trying to download a video,it works but I get images like the one beneath.
    This is not al the time,but the audio faltered also,so it's very annoying.
    Code:
    Code:
    rtmpdump -r "rtmp://vrt.flash.streampower.be/ketnet2011_nogeo" -y "2014/03/webk_bandits_optreden_20140330_111825_Ketnet2011_D10.flv" -o "c:\one.flv"
    Try use
    Code:
    http://download.streampower.be/vrt/vrt_ketnet2011_ngeo/streams/_definst_/2014/03/webk_bandits_optreden_20140330_111825_Ketnet2011_D10.mp4
    Quote Quote  
  20. can anyone help me out get this video in HD plz.

    http://www.bbc.co.uk/programmes/b045cn3f
    Quote Quote  
  21. Originally Posted by angelroj7 View Post
    can anyone help me out get this video in HD plz.

    http://www.bbc.co.uk/programmes/b045cn3f
    i think the best quality is 832x468 1500k
    Quote Quote  
  22. Member
    Join Date
    May 2014
    Location
    Europe
    Search Comp PM
    Originally Posted by CristianoA View Post
    Originally Posted by Nightrise View Post
    When I'm trying to download a video,it works but I get images like the one beneath.
    This is not al the time,but the audio faltered also,so it's very annoying.
    Code:
    Code:
    rtmpdump -r "rtmp://vrt.flash.streampower.be/ketnet2011_nogeo" -y "2014/03/webk_bandits_optreden_20140330_111825_Ketnet2011_D10.flv" -o "c:\one.flv"
    link to video
    http://www.ketnet.be/kijken/ketnet-king-size/bandits-met-one

    Originally Posted by ponens View Post
    Try use
    Code:
    http://download.streampower.be/vrt/vrt_ketnet2011_ngeo/streams/_definst_/2014/03/webk_bandits_optreden_20140330_111825_Ketnet2011_D10.mp4
    Thanks this works great.
    Last edited by Nightrise; 27th May 2014 at 12:48. Reason: deleted my attachment,because it's big and from my quote.
    Quote Quote  
  23. Member Emeritus
    Join Date
    May 2014
    Search PM
    Originally Posted by angelroj7 View Post
    can anyone help me out get this video in HD plz.

    http://www.bbc.co.uk/programmes/b045cn3f
    Use get_iplayer or youtube-dl.
    Last edited by ponens; 2nd Jun 2014 at 14:04.
    Quote Quote  
  24. Hi!

    I'm trying to teach myself to use rtmpdump but I'm failing miserably... can someone teach me how to get this video on a mac (OS 10.9.3).

    Thanks in advance
    Quote Quote  
  25. Originally Posted by Hoovah View Post
    It worked! Thank you very much!
    P.S. Could you teach me how to get the code for another song so i can download it by myself and not wasting your time ?

    Thanks in advance
    <>
    Quote Quote  
  26. Some live youtube videos allow you to scroll to watch video at an earlier time, is there any way to use ffmpeg or other program to record stream from youtube from earlier from cetrain point.. i see .ts files in the browser console as i watch, but don't know how to get these saved as they come up?
    Quote Quote  
  27. can anyone help me out with a live stream plz cant download the stream :/ it downloads a bit then stops

    http://new.livestream.com/clearchannelboston/events/3039160
    Quote Quote  
  28. Originally Posted by angelroj7 View Post
    can anyone help me out with a live stream plz cant download the stream :/ it downloads a bit then stops

    http://new.livestream.com/clearchannelboston/events/3039160
    try use
    Code:
    ffmpeg -i "http://livestream-f.akamaihd.net/i/3820269_111021_baa3a490_1@111021/index_1756_av-p.m3u8?sd=10&dw=100&rebase=on&hdnea=st=1401571461~exp=1401572361~acl=/i/3820269_111021_baa3a490_1@111021/*~hmac=41f391f3e8267d676c34da76883697366c77b45df8ea566b6c523d05389f8b61" -c copy t.mkv
    Quote Quote  
  29. Originally Posted by angelroj7 View Post
    can anyone help me out with a live stream plz cant download the stream :/ it downloads a bit then stops

    http://new.livestream.com/clearchannelboston/events/3039160
    Code:
    #EXTM3U
    #EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=678000,RESOLUTION=768x432,CODECS="avc1.77.30, mp4a.40.2"
    http://livestream-f.akamaihd.net/i/3820269_111021_baa3a490_1@111021/index_678_av-p.m3u8?sd=10&dw=100&rebase=on
    #EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=198000,RESOLUTION=480x270,CODECS="avc1.66.30, mp4a.40.2"
    http://livestream-f.akamaihd.net/i/3820269_111021_baa3a490_1@111021/index_198_av-p.m3u8?sd=10&dw=100&rebase=on
    #EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=1756000,RESOLUTION=848x480,CODECS="avc1.77.30, mp4a.40.2"
    http://livestream-f.akamaihd.net/i/3820269_111021_baa3a490_1@111021/index_1756_av-p.m3u8?sd=10&dw=100&rebase=on
    #EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=48000,CODECS="mp4a.40.2"
    http://livestream-f.akamaihd.net/i/3820269_111021_baa3a490_1@111021/index_198_a-p.m3u8?sd=10&dw=100&rebase=on
    Quote Quote  
  30. Originally Posted by CristianoA View Post
    Originally Posted by angelroj7 View Post
    can anyone help me out with a live stream plz cant download the stream :/ it downloads a bit then stops

    http://new.livestream.com/clearchannelboston/events/3039160
    Code:
    #EXTM3U
    #EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=678000,RESOLUTION=768x432,CODECS="avc1.77.30, mp4a.40.2"
    http://livestream-f.akamaihd.net/i/3820269_111021_baa3a490_1@111021/index_678_av-p.m3u8?sd=10&dw=100&rebase=on
    #EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=198000,RESOLUTION=480x270,CODECS="avc1.66.30, mp4a.40.2"
    http://livestream-f.akamaihd.net/i/3820269_111021_baa3a490_1@111021/index_198_av-p.m3u8?sd=10&dw=100&rebase=on
    #EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=1756000,RESOLUTION=848x480,CODECS="avc1.77.30, mp4a.40.2"
    http://livestream-f.akamaihd.net/i/3820269_111021_baa3a490_1@111021/index_1756_av-p.m3u8?sd=10&dw=100&rebase=on
    #EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=48000,CODECS="mp4a.40.2"
    http://livestream-f.akamaihd.net/i/3820269_111021_baa3a490_1@111021/index_198_a-p.m3u8?sd=10&dw=100&rebase=on
    How would I download the m3u8 to get the video?
    Quote Quote  



Similar Threads

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