Hi Marek! On 2017-03-10 16:32 +0100, Marek Straka wrote: > Package: ffmpeg > Version: 7:3.2.4-1 > Severity: normal > > > ffmpeg -i > http://hlsak-a.akamaihd.net/2797134697001/5314209465001/2797134697001_5314209465001_s-1.ts > -c copy test.ts > ...saves stream without problem. > > ffmpeg -i test.M3U8 -c copy test.ts > > with file test.M3U8: > --- > #EXTM3U > #EXT-X-TARGETDURATION:10 > #EXT-X-MEDIA-SEQUENCE:0 > #EXTINF:10, > http://hlsak-a.akamaihd.net/2797134697001/5314209465001/2797134697001_5314209465001_s-1.ts? > #EXT-X-ENDLIST > > produce: > [http @ 0x55747248fe80] Protocol not on whitelist 'file,crypto'! > [hls,applehttp @ 0x55747248be40] Failed to open segment of playlist 0 > [hls,applehttp @ 0x55747248be40] Error when loading first segment > 'http://hlsak-a.akamaihd.net/2797134697001/5314209465001/2797134697001_5314209465001_s-1.ts?' > test.M3U8: Invalid data found when processing input > > With > avconv -i test.M3U8 -c copy test.ts > from debian Jessie there are no problems with that. > > Maybe should work > ffmpeg -i test.M3U8 -c copy -protocol_whitelist http test.ts > but it does not.
ffmpeg -protocol_whitelist file,tcp,http -i test.M3U8 -c copy test.ts Does above command line work for you? [...] Alexander