Reputation: 580
I want to use ffmpeg's transcoding features multiple times in my program. This can be achieved by doing
ffmpeg -i input output
in a terminal. I believe I can use some shell or C code to execute these commands programmatically.
I could also directly use ffmpeg's c libraries to do this. My question is, will there be a noticeable performance difference between the 2 approaches? Obviously the first will be simpler to implement, but will I pay a big performance cost?
Upvotes: 0
Views: 562