Re: [FFmpeg-user] Apply format with overlay and -ss in front of inputfile is strange?

2015-07-14 Thread nicolab
Nicolas George george at nsup.org writes: Le quintidi 25 messidor, an CCXXIII, Carl Eugen Hoyos a écrit : I can confirm that there may be an issue but it is not overlay-related: $ ffmpeg -i input -vf split[x][z];[x]format=gray[x1];[x1]nullsink -strict -2 -vcodec jpeg2000 -ss 1 out1.avi

Re: [FFmpeg-user] Apply format with overlay and -ss in front of inputfile is strange?

2015-07-13 Thread nicolab
Sorry my poor english. The format of the output of the overlay filter is yuva420p. This is not supported by x264, so the output format file-wise is yuv420p. The output is visually gray because you overlayed a gray frame (x1) over another frame (of the same size). Yes. This is right. I

Re: [FFmpeg-user] Apply format with overlay and -ss in front of inputfile is strange?

2015-07-13 Thread Carl Eugen Hoyos
nicolab robelt2525 at gmail.com writes: ffmpeg -f lavfi -i rgbtestsrc=d=10,format=yuv420p -vcodec libx264 rgbtestsrc.mp4 This is visually rgb color[z] overlayed video. ffmpeg -i rgbtestsrc.mp4 -vf split[x][z];[x]format=gray[x1];[x1][z]overlay -vcodec libx264 10.mp4 This is visually

Re: [FFmpeg-user] Apply format with overlay and -ss in front of inputfile is strange?

2015-07-13 Thread Carl Eugen Hoyos
Nicolas George george at nsup.org writes: Le quintidi 25 messidor, an CCXXIII, Carl Eugen Hoyos a écrit : I can confirm that there may be an issue but it is not overlay-related: $ ffmpeg -i input -vf split[x][z];[x]format=gray[x1];[x1]nullsink -strict -2 -vcodec jpeg2000 -ss 1

[FFmpeg-user] Apply format with overlay and -ss in front of inputfile is strange?

2015-07-12 Thread nicolab
Using -ss seconds in fornt of inputfile, apply format filter and overlay output is strange? Creat rgbtestsrc video. ffmpeg -f lavfi -i rgbtestsrc=d=10 -vcodec utvideo rgbtestsrc.avi Overlay z output file is not change format before -ss input file. This is OK. ffmpeg -i rgbtestsrc.avi -ss 1 -vf

Re: [FFmpeg-user] Apply format with overlay and -ss in front of inputfile is strange?

2015-07-12 Thread Carl Eugen Hoyos
nicolab robelt2525 at gmail.com writes: Output is gray format. This is OK. ^^ ffmpeg -i rgbtestsrc.avi -ss 1 -vf split[x][z];[x]format=gray[x1];[z][x1]overlay -vcodec libx264 3.mkv The format of the output of the overlay filter is yuva420p. This is not supported by