Now I am trying to convert a few jpg files and a mp3 to flv file.
The ffmpeg command can do this.
ffmpeg -loop 1 -i image.jpg -i music.mp3 -shortest -c:v libx264 -crf 20 -tune stillimage -c:a copy output.mkv
but I must use this function in my java project ):
Are there any java opensource projects?
thanks :)