我只想将mp3文件和图像文件合并为mp4视频格式。我已经完成了谷歌这个主题,发现了一些第三方库,如FFMPEG,Jcodec等,我无法使用这些库。所以请帮我解决这个问题。
答案 0 :(得分:2)
我没有在Android上试过这个。但是在PC上你可以使用它来使用ffmpeg
创建mp4文件以下为我工作
ffmpeg -i download.jpg -r 1/100 -i test.mp3 -s 720x480 out.mp4
https://trac.ffmpeg.org/wiki/Create%20a%20video%20slideshow%20from%20images https://trac.ffmpeg.org/wiki/Create%20a%20thumbnail%20image%20every%20X%20seconds%20of%20the%20video
答案 1 :(得分:1)
Here is the FFmpeg ported for android:
https://github.com/guardianproject/android-ffmpeg-java
you can call commands via JNI wrapper.