VideoHelp Forum
+ Reply to Thread
Page 117 of 154
FirstFirst ... 17 67 107 115 116 117 118 119 127 ... LastLast
Results 3,481 to 3,510 of 4600
Thread
  1. Originally Posted by youngdemon26 View Post
    http://hocmai.vn/mod/scorm/player.php?id=35248

    LOGIN: username : dunghiep1416
    password : dung1997

    I try to download video from this site by rtmpdump with this code

    Code:
    rtmpdump -v -r "rtmp://media.hocmai.vn/hocmaisrv/2011-2012/Tieng_anh/LTDH-Co_Vu_Mai_Phuong/38.PP_lam_bt_phat_hien_loi_sai/" -a "hocmaisrv/2011-2012/Tieng_anh/LTDH-Co_Vu_Mai_Phuong/38.PP_lam_bt_phat_hien_loi_sai/" -f "WIN 17,0,0,134" -W "http://hocmai.vn/file.php/265/moddata/scorm/6958/Main.swf" -p "http://hocmai.vn/file.php/265/moddata/scorm/6958/index.html?vitri=3&sig=ptWsvAkkcwhlqDsQuY7dLIKHOxEXbvor" -C S:passed_para -y "03.flv" -o "outdadut.flv"
    but get error

    please help me to download video from this site

    sorry for my bad english
    TubeDigger in RecMode+ works
    Quote Quote  
  2. Hello,

    Is Baldrick's first post back in 2009 (thread start) still valid?

    In particular the following:
    Tools required:
    URL Snooper
    RTMPDump(also called FLVStreamer)


    I want to rip the following program to a FLV or MP4 file (42 min):
    http://www.tv3play.se/program/sos-sommar/278615?autostart=true

    How do I proceed? I don't know where to start (what to D/L) and what steps I should do.
    Thanks.
    Quote Quote  
  3. Originally Posted by randomuser1 View Post
    Hello,

    Is Baldrick's first post back in 2009 (thread start) still valid?

    In particular the following:
    Tools required:
    URL Snooper
    RTMPDump(also called FLVStreamer)


    I want to rip the following program to a FLV or MP4 file (42 min):
    http://www.tv3play.se/program/sos-sommar/278615?autostart=true

    How do I proceed? I don't know where to start (what to D/L) and what steps I should do.
    Thanks.
    hi

    Code:
    youtube-dl -F "http://www.tv3play.se/program/sos-sommar/278615?autostart=true"
    Code:
    [TVPlay] 278615: Downloading video JSON
    [TVPlay] 278615: Downloading streams JSON
    [info] Available formats for 278615:
    format code  extension  resolution note
    hls          m3u8       unknown    
    medium       flv        unknown    (best)
    so two format

    A) format rtmp
    Code:
    youtube-dl -g -f best "http://www.tv3play.se/program/sos-sommar/278615?autostart=true"
    Code:
    rtmp://mtgfs.fplive.net/mtgflash/sweden/tv3/SOS_sommar/season1/program/sos_sommar_109.flv

    Code:
    rtmpdump -r "rtmp://mtgfs.fplive.net:1935/mtg" -W "http://flvplayer.viastream.viasat.tv/flvplayer/play/swf/MTGXPlayer-3.6.swf"  -y "flash/sweden/tv3/SOS_sommar/season1/program/sos_sommar_109.flv" -o "sos_sommar_109.flv"

    B) format hls
    Code:
    youtube-dl -g -f hls "http://www.tv3play.se/program/sos-sommar/278615?autostart=true"
    Code:
    http://iphone.cdn.viasat.tv/iphone/006/00614/S61470_sossommar_0uavsydslkp0nkno_iphone.m3u8
    Code:
    ffmpeg -i "http://iphone.cdn.viasat.tv/iphone/006/00614/S61470_sossommar_0uavsydslkp0nkno_iphone.m3u8" -c copy sos_sommar_109.ts
    or
    Code:
    livestreamer "hlsvariant://http://iphone.cdn.viasat.tv/iphone/006/00614/S61470_sossommar_0uavsydslkp0nkno_iphone.m3u8" best -o sos_sommar_109.ts
    or mp4 output
    Code:
    ffmpeg -i "http://iphone.cdn.viasat.tv/iphone/006/00614/S61470_sossommar_0uavsydslkp0nkno_iphone.m3u8" -c copy -absf aac_adtstoasc sos_sommar_109.mp4
    Last edited by biezom; 3rd Jun 2015 at 15:14.
    Quote Quote  
  4. Hi I'm having problems downloading the video from this page http://www.redgiant.com/videos/redgianttv/item/430/

    I've tried the method above using youtube-dl, I've also tried using some stream info taken from the html source into rtmpdump. I want to download the 1920x1080 version mentioned in the html but can't seem to get the rtmpdump to the right stream address.

    Code:
    rtmp://redgiant.flash.internapcdn.net/redgiant/_definst_/rgtv&file=100_Glitch_Text_640x360.mp4
    Thanks for any advice.
    Quote Quote  
  5. Originally Posted by nogoodnames View Post
    Hi I'm having problems downloading the video from this page http://www.redgiant.com/videos/redgianttv/item/430/

    I've tried the method above using youtube-dl, I've also tried using some stream info taken from the html source into rtmpdump. I want to download the 1920x1080 version mentioned in the html but can't seem to get the rtmpdump to the right stream address.

    Code:
    rtmp://redgiant.flash.internapcdn.net/redgiant/_definst_/rgtv&file=100_Glitch_Text_640x360.mp4
    Thanks for any advice.
    hi

    Code:
    rtmpdump -r "rtmp://redgiant.flash.internapcdn.net/redgiant/_definst_/rgtv/100_Glitch_Text_1920x1080.mp4" -o Episode-100-Darknet-Glitching-Text-Transition.flv
    Quote Quote  
  6. Originally Posted by biezom View Post
    Originally Posted by nogoodnames View Post
    Hi I'm having problems downloading the video from this page http://www.redgiant.com/videos/redgianttv/item/430/

    I've tried the method above using youtube-dl, I've also tried using some stream info taken from the html source into rtmpdump. I want to download the 1920x1080 version mentioned in the html but can't seem to get the rtmpdump to the right stream address.

    Code:
    rtmp://redgiant.flash.internapcdn.net/redgiant/_definst_/rgtv&file=100_Glitch_Text_640x360.mp4
    Thanks for any advice.
    hi

    Code:
    rtmpdump -r "rtmp://redgiant.flash.internapcdn.net/redgiant/_definst_/rgtv/100_Glitch_Text_1920x1080.mp4" -o Episode-100-Darknet-Glitching-Text-Transition.flv
    Thanks, I thought it would be something simple I was doing wrong!
    Quote Quote  
  7. Originally Posted by nogoodnames View Post
    Originally Posted by biezom View Post
    Originally Posted by nogoodnames View Post
    Hi I'm having problems downloading the video from this page http://www.redgiant.com/videos/redgianttv/item/430/

    I've tried the method above using youtube-dl, I've also tried using some stream info taken from the html source into rtmpdump. I want to download the 1920x1080 version mentioned in the html but can't seem to get the rtmpdump to the right stream address.

    Code:
    rtmp://redgiant.flash.internapcdn.net/redgiant/_definst_/rgtv&file=100_Glitch_Text_640x360.mp4
    Thanks for any advice.
    hi

    Code:
    rtmpdump -r "rtmp://redgiant.flash.internapcdn.net/redgiant/_definst_/rgtv/100_Glitch_Text_1920x1080.mp4" -o Episode-100-Darknet-Glitching-Text-Transition.flv
    Thanks, I thought it would be something simple I was doing wrong!
    other way the direct link
    Code:
    http://redgiant.http.internapcdn.net/redgiant/rgtv/100_Glitch_Text_1920x1080.mp4
    Quote Quote  
  8. Originally Posted by biezom View Post
    hi

    Hi,
    Thanks for helping.

    However, I don't know in what I need to download and exactly how to use your commands.
    youtube-dl for example, isn't in the original post.

    "youtube-dl is a small command-line program to download videos from YouTube.com and a few more sites. It requires the Python interpreter (2.6, 2.7, or 3.3+), and it is not platform specific. Full description. "

    Exactly what tools do I need? (How do I get python interpreter etc.)
    Quote Quote  
  9. @biezom
    Ok, I've managed to download with rtmpdump with your example.

    Five questions:

    1. From where do you get "rtmp://mtgfs.fplive.net:1935/mtg", "http://flvplayer.viastream.viasat.tv/flvplayer/play/swf/MTGXPlayer-3.6.swf" and "flash/sweden/tv3/SOS_sommar/season1/program/sos_sommar_109.flv" ?

    2. If using command "youtube-dl -g -f hls" is the second alternative, why isn't the first alternative "youtube-dl -g -f medium" (but instead "best"? kind of illogical)

    3. From where do you get "http://iphone.cdn.viasat.tv/iphone/006/00614/S61470_sossommar_0uavsydslkp0nkno_iphone.m3u8" ?

    4. How do you know how to use "-absf aac_adtstoasc" ?

    5. Which of all the alternatives gives me the highest quality output?

    thx
    Last edited by randomuser1; 6th Jun 2015 at 06:33.
    Quote Quote  
  10. Originally Posted by randomuser1 View Post
    @biezom
    Ok, I've managed to download with rtmpdump with your example.

    Six questions:

    1. From where do you get "rtmp://mtgfs.fplive.net:1935/mtg", "http://flvplayer.viastream.viasat.tv/flvplayer/play/swf/MTGXPlayer-3.6.swf" and "flash/sweden/tv3/SOS_sommar/season1/program/sos_sommar_109.flv" ?

    2. If using command "youtube-dl -g -f hls" is the second alternative, why isn't the first alternative "youtube-dl -g -f medium" (but instead "best"? kind of illogical)

    3. From where do you get "http://iphone.cdn.viasat.tv/iphone/006/00614/S61470_sossommar_0uavsydslkp0nkno_iphone.m3u8" ?

    4. How do you know how to use "-absf aac_adtstoasc" ?

    5. What is ffmpeg and where do I get that?

    6. Which of all the alternatives gives me the highest quality output?

    thx
    1) and 2) with the command "youtube-dl -g -f medium" and "youtube-dl -g -f best" it's for the same format (protocol rtmp) just add -W option (swf player)
    3) with the code "youtube-dl -g -f hls"
    4) with the habit of using ffmpeg
    5) http://ffmpeg.zeranoe.com/builds/
    6) ~ same quality rtmp=720 x 400; hls=720 x 416
    Quote Quote  
  11. Thanks,

    Still clueless about Q 1) though - don't know how to get the .swf link etc

    Use -W; how, where?
    Quote Quote  
  12. Also a general question: what about ripping from sites where one must be logged in to view content? Then what?
    Quote Quote  
  13. Originally Posted by randomuser1 View Post
    Thanks,

    Still clueless about Q 1) though - don't know how to get the .swf link etc

    Use -W; how, where?
    you can use adblockplus addon on firefox


    Name:  0adblock.png
Views: 3590
Size:  10.2 KB

    Click image for larger version

Name:	0swf.png
Views:	303
Size:	14.0 KB
ID:	32096
    Quote Quote  
  14. When running this:
    Code:
    youtube-dl -g -f best "http://www.tv3play.se/program/sos-sommar/278615?autostart=true"
    I get
    Code:
    rtmp://mtgfs.fplive.net/mtgflash/sweden/tv3/SOS_sommar/season1/program/sos_sommar_109.flv
    But how do I know where to cut this string and use this (for rtmp method)? And how to determine port?!
    Code:
    rtmp://mtgfs.fplive.net:1935/mtg
    --

    PS. Is there any docs available for youtube-dl? Specifically, what parameters are available and how to use them.
    Thanks
    Quote Quote  
  15. ...
    Last edited by sysanin; 13th Nov 2015 at 19:00.
    Quote Quote  
  16. Member
    Join Date
    Aug 2013
    Location
    New York
    Search Comp PM
    I'm trying to dl from this news site...

    http://news.tvb.com/finance/55750f726db28c914d000003/

    how? what prog to use?
    thanks in adv.
    Last edited by klatwork; 9th Jun 2015 at 00:37.
    Quote Quote  
  17. Originally Posted by klatwork View Post
    I'm trying to dl from this news site...

    http://news.tvb.com/finance/55750f726db28c914d000003/

    how? what prog to use?
    thanks in adv.
    just try, use livestreamer, ffmpeg
    Code:
    "livestreamer.exe" "hlsvariant://token.tvb.com/stream/vod/news/hls/content1/export/20150608/entries_55750f726db28c914d000003_a1d2a5b05d09395f32299a4d270a9a32_cht_1280_720_1500k_v2.mp4" best -o "無線新聞 - 財經 - 中國中車首日排牌 稱將積極參與一帶一路.ts"

    Code:
    "ffmpeg.exe" -i "無線新聞 - 財經 - 中國中車首日排牌 稱將積極參與一帶一路.ts"  -c:v copy -c:a copy -bsf:a aac_adtstoasc "無線新聞 - 財經 - 中國中車首日排牌 稱將積極參與一帶一路.mp4"
    Quote Quote  
  18. Member
    Join Date
    Aug 2013
    Location
    New York
    Search Comp PM
    Originally Posted by passerbyhk View Post
    Originally Posted by klatwork View Post
    I'm trying to dl from this news site...

    http://news.tvb.com/finance/55750f726db28c914d000003/

    how? what prog to use?
    thanks in adv.
    just try, use livestreamer, ffmpeg
    Code:
    "livestreamer.exe" "hlsvariant://token.tvb.com/stream/vod/news/hls/content1/export/20150608/entries_55750f726db28c914d000003_a1d2a5b05d09395f32299a4d270a9a32_cht_1280_720_1500k_v2.mp4" best -o "無線新聞 - 財經 - 中國中車首日排牌 稱將積極參與一帶一路.ts"

    Code:
    "ffmpeg.exe" -i "無線新聞 - 財經 - 中國中車首日排牌 稱將積極參與一帶一路.ts"  -c:v copy -c:a copy -bsf:a aac_adtstoasc "無線新聞 - 財經 - 中國中車首日排牌 稱將積極參與一帶一路.mp4"
    thanks
    Quote Quote  
  19. Originally Posted by randomuser1 View Post
    Also a general question: what about ripping from sites where one must be logged in to view content? Then what?
    Bumping this.
    I have a page with a clip, where the first 60 seconds is available to everyone.
    In order to continue, I have to log in, then I can watch the complete video on the same URL.
    I successfully managed to use youtube-dl to download the 60 sec version, but how do I get the complete video? URL Snooper or somethin' and then..?
    Last edited by randomuser1; 11th Jun 2015 at 00:35.
    Quote Quote  
  20. Help me ?

    I need do download, this is link: http://51a59b8396b9d.streamlock.net:1935/alfaconcursos2s/_definst_/mp4:???:1/200/thall.../playlist.m3u8

    I try but don't can it.

    Please, help me. Thanks!
    Quote Quote  
  21. i wanted to download the webinar hosted on here.

    i already tried with the code

    Code:
    rtmp://s3iaynba9mrrng.cloudfront.net/cfx/st/webinar/encoded/files/297_for_affiliates_for_tomorrow_night.mp4
    or

    Code:
    rtmp://s3iaynba9mrrng.cloudfront.net/cfx/st/mp4:/webinar/encoded/files/297_for_affiliates_for_tomorrow_night.mp4
    but no luck. Any help/pointers highly appreciated!
    Quote Quote  
  22. Originally Posted by manojpatil View Post
    i wanted to download the webinar hosted on here.

    i already tried with the code

    Code:
    rtmp://s3iaynba9mrrng.cloudfront.net/cfx/st/webinar/encoded/files/297_for_affiliates_for_tomorrow_night.mp4
    or

    Code:
    rtmp://s3iaynba9mrrng.cloudfront.net/cfx/st/mp4:/webinar/encoded/files/297_for_affiliates_for_tomorrow_night.mp4
    but no luck. Any help/pointers highly appreciated!

    hi

    direct link
    480p
    Code:
    http://stream101912.s3.amazonaws.com/webinar/encoded/files/297_for_affiliates_for_tomorrow_night.mp4
    768p
    Code:
    http://stream101912.s3.amazonaws.com/webinar/encoded/files/297_for_affiliates_for_tomorrow_night-HD.mp4
    Quote Quote  
  23. Can you show how you got the direct link? Even though I'm not interested in these videos, I like to be able to follow through with the procedure and learn something about how to download.
    Quote Quote  
  24. Originally Posted by jimdagys View Post
    Can you show how you got the direct link? Even though I'm not interested in these videos, I like to be able to follow through with the procedure and learn something about how to download.
    source code and user agent switcher addon on firefox
    Quote Quote  
  25. Originally Posted by biezom View Post
    Originally Posted by manojpatil View Post
    i wanted to download the webinar hosted on here.

    i already tried with the code

    Code:
    rtmp://s3iaynba9mrrng.cloudfront.net/cfx/st/webinar/encoded/files/297_for_affiliates_for_tomorrow_night.mp4
    or

    Code:
    rtmp://s3iaynba9mrrng.cloudfront.net/cfx/st/mp4:/webinar/encoded/files/297_for_affiliates_for_tomorrow_night.mp4
    but no luck. Any help/pointers highly appreciated!

    hi

    direct link
    480p
    Code:
    http://stream101912.s3.amazonaws.com/webinar/encoded/files/297_for_affiliates_for_tomorrow_night.mp4
    768p
    Code:
    http://stream101912.s3.amazonaws.com/webinar/encoded/files/297_for_affiliates_for_tomorrow_night-HD.mp4
    Thank you very much. Although i did use source code, user agent switcher is something new to me and would do googling on it more to use it.
    Quote Quote  
  26. Hi,

    Someone can help me download this video?

    http://vod.toggletv.sg/vod/s/felucia/201502W-A/20150614_DORAEMON_TV_SPECIAL_EP33_PC_SS.ism


    I used both livestreamer and ffmpeg

    Code:
    ffmpeg -i "http://vod.toggletv.sg/vod/s/felucia/201502W-A/20150614_DORAEMON_TV_SPECIAL_EP33_PC_SS.ism/20150614_DORAEMON_TV_SPECIAL_EP33_PC_SS.m3u8" -c copy -absf aac_adtstoasc DORAEMON_33.mp4
    Both manage to download a 21 minutes video (about 210mb). But when playback, both video show a blank green screen with no sound.

    Please Help and Thanks
    Quote Quote  
  27. Originally Posted by jpodell88 View Post
    Hi,

    Someone can help me download this video?

    http://vod.toggletv.sg/vod/s/felucia/201502W-A/20150614_DORAEMON_TV_SPECIAL_EP33_PC_SS.ism


    I used both livestreamer and ffmpeg

    Code:
    ffmpeg -i "http://vod.toggletv.sg/vod/s/felucia/201502W-A/20150614_DORAEMON_TV_SPECIAL_EP33_PC_SS.ism/20150614_DORAEMON_TV_SPECIAL_EP33_PC_SS.m3u8" -c copy -absf aac_adtstoasc DORAEMON_33.mp4
    Both manage to download a 21 minutes video (about 210mb). But when playback, both video show a blank green screen with no sound.

    Please Help and Thanks
    https://github.com/0x776b7364/toggle.sg-download


    Code:
    http://vod.toggletv.sg/w/rori/201502W-A/20150614_DORAEMON_TV_SPECIAL_EP33_STB.wvm

    Code:
    livestreamer --stream-segment-threads 3  "httpstream://http://vod.toggletv.sg/w/rori/201502W-A/20150614_DORAEMON_TV_SPECIAL_EP33_STB.wvm" best -o 20150614_DORAEMON_TV_SPECIAL_EP33_STB.wvm
    Last edited by biezom; 19th Jun 2015 at 02:24.
    Quote Quote  
  28. https://github.com/0x776b7364/toggle.sg-download


    Code:
    http://vod.toggletv.sg/w/rori/201502W-A/20150614_DORAEMON_TV_SPECIAL_EP33_STB.wvm

    Code:
    livestreamer --stream-segment-threads 3  "httpstream://http://vod.toggletv.sg/w/rori/201502W-A/20150614_DORAEMON_TV_SPECIAL_EP33_STB.wvm" best -o 20150614_DORAEMON_TV_SPECIAL_EP33_STB.wvm

    Thanks for the fast respond.

    I have to say that I'm bad in this kind of command.

    1. I do not understand the purpose "https://github.com/0x776b7364/toggle.sg-download". No download link to install apps.

    2. How do you get this url "http://vod.toggletv.sg/w/rori/201502W-A/20150614_DORAEMON_TV_SPECIAL_EP33_STB.wvm"

    3. When I tried to run livestreamer with the code. I manage to downlaod the video with extension .wvm. When played on VLC, can only 10 second of the 21 minutes video. How to convert the video?


    Thank you for your patients.
    Quote Quote  
  29. Originally Posted by jpodell88 View Post
    https://github.com/0x776b7364/toggle.sg-download


    Code:
    http://vod.toggletv.sg/w/rori/201502W-A/20150614_DORAEMON_TV_SPECIAL_EP33_STB.wvm

    Code:
    livestreamer --stream-segment-threads 3  "httpstream://http://vod.toggletv.sg/w/rori/201502W-A/20150614_DORAEMON_TV_SPECIAL_EP33_STB.wvm" best -o 20150614_DORAEMON_TV_SPECIAL_EP33_STB.wvm

    Thanks for the fast respond.

    I have to say that I'm bad in this kind of command.

    1. I do not understand the purpose "https://github.com/0x776b7364/toggle.sg-download". No download link to install apps.

    2. How do you get this url "http://vod.toggletv.sg/w/rori/201502W-A/20150614_DORAEMON_TV_SPECIAL_EP33_STB.wvm"

    3. When I tried to run livestreamer with the code. I manage to downlaod the video with extension .wvm. When played on VLC, can only 10 second of the 21 minutes video. How to convert the video?


    Thank you for your patients.
    1) and 2) it's the tool i use to find the url
    3) sorry I had not tried
    i find this
    " WVM file is a WideVine DRM Protected Video. Widevine is an industry standard Digital Rights Management (DRM) technology developed by Google that M-GO uses to securely deliver video content. "

    so probably DRM
    Quote Quote  
  30. Originally Posted by randomuser1 View Post
    Originally Posted by randomuser1 View Post
    Also a general question: what about ripping from sites where one must be logged in to view content? Then what?
    I have a page with a clip, where the first 60 seconds is available to everyone.
    In order to continue, I have to log in, then I can watch the complete video on the same URL (in firefox).
    I successfully managed to use youtube-dl to download the 60 sec version, but how do I get the complete video? URL Snooper or somethin' and then..?
    bump...anyone?
    Quote Quote  



Similar Threads

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