我正在使用ffmeg进行视频压缩。我使用过ffpmeg library
使用命令"ffmpeg -i " + filein.trim() + " -vcodec h264 -acodec mp2 " + fileout.trim()
,但我没有做出任何回应。
我第一次使用任何ndk库。
答案 0 :(得分:0)
使用此命令对您有用。这对我有用。
String cmd = "-y -i " + currentInputVideoPath + " -strict -2 -vcodec libx264 -preset ultrafast " + "-crf 24 -acodec aac -ar 44100 -ac 2 -b:a 96k -s 320x240 -aspect 4:3 " + currentOutputVideoPath;