View Single Post
  #1  
Old 12-06-2015, 03:47 PM
utuxia utuxia is offline
Member
 
Join Date: Apr 2015
Posts: 32
utuxia is on a distinguished road
Default

ffmpeg and neulion


I'm using the following command to capture a neulion stream (NFL)

Code:
  ffmpeg \
    -y \
    -threads 0 \
    -user-agent "${agent}" \
    -headers "User-Agent: ${agent}" \
    -i ${input} \
    -copytb 1 \
    -c:v copy -c:a copy \
    ${out_m3u8} \
    2> error.log \
  &
I have two questions....it only captures about every 3rd time I run it. The other two times it says it can't find the key. Not sure what's going on here.

The other issue is there is a lot of buffering when it does work. Is there anyway I can control the size of the m3u8 playlist (default is 5 I believe) and also the time of each .ts file? Default is 2 I believe.

I'm wondering if increasing both of these will help with the buffering.

Here's an example link:
Code:
http://nlds12.cdnak.neulion.com/nlds/nfl/raiders/as/live/raiders_hd_4500_ipad.m3u8?hdnea=expires%3D1449436027%7Eaccess%3D%2Fnlds%2Fnfl%2Fraiders%2Fas%2Flive%2F*%7Emd5%3Dd4e69636466b823c56c412699d11b706
Reply With Quote