Postby Amit_al » 26 Nov 2019 04:46
Thanks @mederi for replying.
Actually, I am looking for some X264 command line statement, which can take input as set of some PNG files(started from 0) and provide output as .mp4 file.
For example, in case of bmp input files, below command in working fine -
x264 --crf 10 -o "<directory path>test.mp4" "<Directory path>%04d.bmp" --fps 30 --vf crop:0,0,1,0"
Similarly, I want to create .mp4 with PNG instead of bmp files, something like below -
x264 --crf 10 -o "<directory path>test.mp4" "<Directory path>%04d.png" --fps 30 --vf crop:0,0,1,0" --> this is not working
I am not implementing the library of X264. I am just creating a process and invoking X264 command line statement, in my code.
Hope you got my query.
Please help with any of the suggestions..I am even not sure, if it is possible or not.
Thanks in advance.