Re: [FFmpeg-user] continuous live stream from video files

2016-12-03 Thread Anthony Ettinger
I just use nginx to server the static files. On Fri, Dec 2, 2016 at 3:05 AM, MRob wrote: > On 2016-12-01 23:22, Anthony Ettinger wrote: > >> I found the concatenate option with ffmpeg as described here: >> >> https://trac.ffmpeg.org/wiki/Concatenate#protocol >> >> I can concatenate static files

Re: [FFmpeg-user] continuous live stream from video files

2016-12-02 Thread MRob
On 2016-12-01 23:22, Anthony Ettinger wrote: I found the concatenate option with ffmpeg as described here: https://trac.ffmpeg.org/wiki/Concatenate#protocol I can concatenate static files if I know the list ahead of time and produce an m3u8 stream Would you kindly describe what tools/setup

Re: [FFmpeg-user] continuous live stream from video files

2016-12-02 Thread Paul B Mahol
On 12/2/16, Anthony Ettinger wrote: > I found the concatenate option with ffmpeg as described here: > > https://trac.ffmpeg.org/wiki/Concatenate#protocol > > I can concatenate static files if I know the list ahead of time and produce > an m3u8 stream as output with this: > > ffmpeg -i 'con

[FFmpeg-user] continuous live stream from video files

2016-12-01 Thread Anthony Ettinger
I found the concatenate option with ffmpeg as described here: https://trac.ffmpeg.org/wiki/Concatenate#protocol I can concatenate static files if I know the list ahead of time and produce an m3u8 stream as output with this: ffmpeg -i 'concat:intermediate1.ts|intermediate2.ts' -c copy tes