Re: [FFmpeg-user] raw file to video

2022-10-19 Thread Naveen.B
Apologies - typo: ffmpeg -pixel_format gray10be -s 1600x1300 -r 30 -i CapturedImage-%03d.raw -c:v libx264 -pix_fmt yuv420p -crf 18 raw_video.mp4 Thanks for the support, It worked! On Sat, Oct 15, 2022 at 10:41 AM Kieran O Leary wrote: > Apologies - typo: > ffmpeg -pixel_format > gray10be -s

Re: [FFmpeg-user] raw file to video

2022-10-15 Thread Kieran O Leary
Apologies - typo: ffmpeg -pixel_format gray10be -s 1600x1300 -r 30 -i CapturedImage-%03d.raw -c:v libx264 -pix_fmt yuv420p -crf 18 raw_video.mp4 ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-user To

Re: [FFmpeg-user] raw file to video

2022-10-15 Thread Kieran O Leary
Hi, On Sat, Oct 15, 2022 at 9:06 AM Naveen.B wrote: > > Which video player have you used to play it back, have you tried another > like mpv? > .mp4 and .avi, -mpv I tried but I got an error message. > I meant which video player, like VLC etc. MPV is another player, not a command line flag.

Re: [FFmpeg-user] raw file to video

2022-10-15 Thread Naveen.B
A good start would be the complete uncut command line output which might have some extra info, a sample could be useful, and perhaps info about the raw file. C:\Naveen\projects\DMS\software\ffmpeg_full\ffmpeg\bin>ffmpeg -pixel_format gray10be -s 1600x1300 -r 30 -i CapturedImage-%03d.raw -c:v

Re: [FFmpeg-user] raw file to video

2022-10-15 Thread Kieran O Leary
On Fri 14 Oct 2022 at 14:39, Naveen.B wrote: > Hello, > > I am trying to convert a set of raw files in directory to the .mp4 video > using the ffmpeg command, the converted .mp4 video looks completely blank > and I don't see any pictures in it. > > ffmpeg -pixel_format gray10le -video_size

[FFmpeg-user] raw file to video

2022-10-14 Thread Naveen.B
Hello, I am trying to convert a set of raw files in directory to the .mp4 video using the ffmpeg command, the converted .mp4 video looks completely blank and I don't see any pictures in it. ffmpeg -pixel_format gray10le -video_size 1600x1300 -framerate 30 -i CapturedImage-%03d.raw -c:v libx264