I have 23 frames:
frame-1.png
frame-2.png
....
..
frame-23.png
Each frame is 15840PX x 15840PX and around 240Mb in size.
I'm trying:
ffmpeg -r 23 -i "frame-%d.png" -c:v libx265 -r 23 out.mp4
and what I get in the end is a 12Mb video of 00:00 duration with no image
Also, right before the command completes execution (it takes quite some time obviously) I get:
[1] 12580 killed ffmpeg -r 23 -i "frame-%d.png" -c:v libx265 -r 23 out.mp4x
on the terminal.
I don't know if that means it failed or whether it's a normal log after completion.
Is my command wrong or is it impossible to execute due to the size of each frame ?
Thank you in advance for your help