Re: [Live-devel] Record every X seconds wtih playlist (piped ffmpeg?)

2016-12-10 Thread Ross Finlayson
> This is working, it generates recordingXXX.ts files every 10 seconds and adds > them into a m3u8 playlist which is nice, however I also want to attach the > audio stream, so I tried the following: > > ./openRTSP -4 -t rtsp://user:password@hostname:port/path/to/stream | ffmpeg > -i - -codec co

[Live-devel] Record every X seconds wtih playlist (piped ffmpeg?)

2016-12-10 Thread Zoltán Szabó
Hi Everyone, I am trying to record a stream via openRTSP. The idea is that I want to generate a file every 10 seconds with a playlist. So I tried it using a pipe to ffmpeg, like this: ./openRTSP -v -t rtsp://user:password@hostname:port/path/to/stream | ffmpeg -i - -codec copy -hls_time 10 /data/

Re: [Live-devel] Frames from the future - or maybe not

2016-12-10 Thread Ross Finlayson
> *** It is not about the frames arriving in weird order *** , in fact, they > arrive in monotonic presentation time order (I just use baseline and I and P > frames), like this (number being the presentation timestamp): > > 13 14 15 16 17 18 > > All good. But then I check at what time the

Re: [Live-devel] Frames from the future - or maybe not

2016-12-10 Thread sampsa
On 10.12.2016 00:07, Ross Finlayson wrote: First, you should use the term “presentation time”, not “timestamp”. (The word “timestamp” typically refers to the RTP timestamp, which LIVE555 programmers never need to concern themselves with.) Yes, it is perfectly normal for video frames’ presen