use java-ffmpeg wrapper, or simply use java runtime to execute ffmpeg?
Posted
by user156153
on Stack Overflow
See other posts from Stack Overflow
or by user156153
Published on 2009-08-15T06:59:23Z
Indexed on
2010/06/03
6:34 UTC
Read the original article
Hit count: 244
I'm pretty new to Java, need to write a program that listen to video conversion instructions and convert the video once an new instruction arrives (instructions is stored in Amazon SQS, but it's irrelevant to my question)
I'm facing a choice, either use Java RunTime to exec 'ffmpeg' conversion (like from command line), or I can use a ffmpeg wrapper written inJava http://fmj-sf.net/ffmpeg-java/getting%5Fstarted.php
I'd much prefer using Java Runtime to exec ffmpeg directly, and avoid using java-ffmpeg wrapper as I have to learn the library. so my question is are there any benefits using java-ffmpeg wrapper over exec ffmpeg directly using Runtime? I don't need ffmpeg to play videos, just convert videos
Thanks
© Stack Overflow or respective owner