Audio/video stream recording forums (http://stream-recorder.com/forum/index.php)
-   Video stream recording (http://stream-recorder.com/forum/forumdisplay.php?f=4)
-   -  

Download video from JW player

(http://stream-recorder.com/forum/showthread.php?t=10345)

Matuia 03-17-2013 03:38 PM

Re: Download video from JW player


 
Quote:

Originally Posted by evol (Post 60687)
Just view the page source code and look for
Code:

type: 'html5',
;)

Thanks for you reply, I already tried that and it doesn't work.

Matuia 03-17-2013 05:10 PM

Re: Download video from JW player


 
Quote:

Originally Posted by chap (Post 60679)
use ffmpeg
Code:

ffmpeg -i "https://videos30ios-vh.akamaihd.net/i/1909_031213_MPU_2013_ANA_PROC_D_TRABALHO_AULA_01_PT_I_OK.mp4/index_0_av.m3u8?null=&id=AgCypQqiV%2fXYLroNRVGA%2fABU+0Y761gd%2fIDv+5oA5T1grK0kSP6ryJ%2fPaIgrCVgWmCJOINZ2sfWWJg%3d%3d" -c copy t.ts

Thanks a lot, I downloaded the first one and worked fine.

But my question is, how did you get the link:
Code:

"https://videos30ios-vh.akamaihd.net/i/1909_031213_MPU_2013_ANA_PROC_D_TRABALHO_AULA_01_PT_I_OK.mp4/index_0_av.m3u8?null=&id=AgCypQqiV%2fXYLroNRVGA%2fABU+0Y761gd%2fIDv+5oA5T1grK0kSP6ryJ%2fPaIgrCVgWmCJOINZ2sfWWJg%3d%3d"
Considering the source was:
Code:

"https://videos30ios-vh.akamaihd.net/i/1909_031213_MPU_2013_ANA_PROC_D_TRABALHO_AULA_01_PT_I_OK.mp4/master.m3u8?hdnea=st=1363561600~exp=1363561740~acl=/*~id=l2f9c670jbj27itft6lq0advd5~hmac=f31304be2d9af0d1a1f4dad941ec41e3713197ce25b220ed6d494b144af7a148"
Sorry guys, I'm not so advanced user.

Matuia 03-17-2013 06:40 PM

Re: Download video from JW player


 
Ok, problem solved.

Thanks a lot to chap!!!

rmahlert 03-18-2013 11:01 AM

Re: Download video from JW player


 
Any idea how to get the live stream url from this JW player?

http://www1.whdh.com/video/7newslive

I tried a few programs, but I'm a noop.

Thanks

hasomaso 03-18-2013 11:58 AM

Re: Download video from JW player


 
Quote:

Originally Posted by rmahlert (Post 60737)
Any idea how to get the live stream url from this JW player?

http://www1.whdh.com/video/7newslive

I tried a few programs, but I'm a noop.

Thanks

Code:

rtmpdump -v -r "rtmp://whdh.mpl.miisolutions.net/whdh-live01" -a "whdh-live01" -f "WIN 11,6,602,180" -W "http://www1.whdh.com/swf/player-viral.swf" -p "http://www1.whdh.com/video/7news-live_flv.php?width=480&height=288" -y "mp4:7newslive" -o "output.flv"

Matuia 03-18-2013 06:09 PM

Re: Download video from JW player


 
Guys,

I download lots of videos that I need using chap's recommendation.
It is working fine...
You can see an example here:
Code:

ffplay "https://videos30ios-vh.akamaihd.net/i/012412_CAR_JUR_2012_D_CONST
_AULA_06_Pt_I_OK.flv/index_0_av.m3u8?null=&id=AgDJV4NOSPZhFV4YR1HltJf913wqlogb7s
rQyo1565FODCpRJMSGBhjlTmaW4Xs1ueQEsc8bvwdg6Q%3d%3d"

But some other videos I only can get the audio file by using:
Code:

ffmpeg -i "video link" -c copy filename.ts
I think that is because a codec change or something...
Here is an example:
Code:

ffplay "https://videos30ios-vh.akamaihd.net/i/012412_CAR_JUR_2012_D_CONST
_AULA_07_Pt_I_OK_0.flv/index_0_av.m3u8?null=&id=AgDJV4NOSPZhFOsXR1FNuIMa09qLeatE
GoSUVElrw1TTFRKEBFLNPqrFRER9wbXda7oqanNPUwVlfA%3d%3d"

Any ideas how do I get the full video and audio for this?

chap 03-18-2013 06:46 PM

Re: Download video from JW player


 
try use latest version ffmpeg

Matuia 03-19-2013 12:09 PM

Re: Download video from JW player


 
Quote:

Originally Posted by chap (Post 60746)
try use latest version ffmpeg

Thanks for helping again chap.

The problem is I'm trying with the last with the last version I found on the website, what version do you recommend? Could you please post it's link?

rmahlert 03-19-2013 12:30 PM

Re: Download video from JW player


 
Quote:

Originally Posted by hasomaso (Post 60740)
Code:

rtmpdump -v -r "rtmp://whdh.mpl.miisolutions.net/whdh-live01" -a "whdh-live01" -f "WIN 11,6,602,180" -W "http://www1.whdh.com/swf/player-viral.swf" -p "http://www1.whdh.com/video/7news-live_flv.php?width=480&height=288" -y "mp4:7newslive" -o "output.flv"


Thanks!

But, I have no clue what the stream URL is from that. I tried several different variations. I'm trying to get the live stream for that and another tv station so I can add a Roku channel for them. I'm hoping both are compatible with Roku.
From that dump, it looks like the WHDH stream is an mp4, which is good.

I forgot to mention..
http://whdh.mpl.miisolutions.net/whd.../7newslive.mp4
I get a 'cannot pre fill buffer' error in VLC.

If I use rtmp it gives me the 'no such file or directory' error.

The other is:
http://www.myfoxboston.com/category/...e-video-stream

Can anyone give this noob a hand?

chap 03-19-2013 03:21 PM

Re: Download video from JW player


 
Quote:

Originally Posted by Matuia (Post 60761)
Thanks for helping again chap.

The problem is I'm trying with the last with the last version I found on the website, what version do you recommend? Could you please post it's link?

http://ffmpeg.zeranoe.com/builds/


All times are GMT -6. The time now is 03:32 PM.