Re: [Libav-user] i-Frame only without encoding

2016-03-21 Thread Carl Eugen Hoyos
Patrick Fischer writes: > I'm trying to create an I-Frame only video from an > existing video. > This works fine: > ffmpeg -i input.ts -vf select='eq(pict_type\,PICT_TYPE_I)' output.ts > > Is there an way without re-encoding the video? Currently not, I suspect this is not impossible to impl

[Libav-user] i-Frame only without encoding

2016-03-21 Thread Patrick Fischer
Hello I'm trying to create an I-Frame only video from an existing video. This works fine: ffmpeg -i input.ts -vf select='eq(pict_type\,PICT_TYPE_I)' output.ts Is there an way without re-encoding the video? Something like: ffmpeg -i input.ts -vf select='eq(pict_type\,PICT_TYPE_I)' -vcodec cop