Hey guys,
I have a specific problem. I'm trying to download a football match from this site. First two videos in english.
http://livefootballvideo.com/fullmatch/spain/la-liga/barcelona-vs-celta-de-vigo
They're embedded in JW player. I searched the code but no direct link.
Than I tried that URL Snooper and RTMPDump tools and followed the instructions (which I barely understand to be honest...) but I got stuck after few steps.
URL Snooper is not finding RTMP or RTMPE links at all. Instead, when I selected the quality in the player and started playing video it started finding links to what I presume are video fragments looking like this...
http://proxy-25.dailymotion.com/sec(e3532866da5b7e6ff4023e3691e36ada)/frag(01)/video/926/888/93888629_mp4_h264_aac_hq.ts
http://proxy-25.dailymotion.com/sec(e3532866da5b7e6ff4023e3691e36ada)/frag(02)/video/926/888/93888629_mp4_h264_aac_hq.ts
http://proxy-25.dailymotion.com/sec(e3532866da5b7e6ff4023e3691e36ada)/frag(03)/video/926/888/93888629_mp4_h264_aac_hq.ts
...etc
I figured out there are 399 chunks and I can't possibly download them all manually.
I should add I can't stream the whole video and wait cause I'm on an old and slow computer. I'm trying to download 480px version of this video. Any ideas how to proceed? Any way to get this? I really really appriciate all the help I can get. I'm willing to mess around with this.
![]()
+ Reply to Thread
Results 1 to 5 of 5
-
Last edited by MayaJW; 9th Aug 2014 at 00:04.
-
use ffmpeg
p1
Code:ffmpeg -i "http://proxy-25.dailymotion.com/sec(e3532866da5b7e6ff4023e3691e36ada)/video/926/888/93888629_mp4_h264_aac_hq.m3u8" -c copy t1.ts
Code:ffmpeg -i "http://proxy-32.dailymotion.com/sec(75a791d8d28b23314bdf5737b2555eb0)/video/980/998/93899089_mp4_h264_aac_hq.m3u8" -c copy t2.ts
-