我正在尝试修剪音频文件,然后将其与我在Android上的视频文件合并。
我可以将它们与下面的命令合并在一起
String command[] = {"-i", mOutputFile.getAbsolutePath(), " -i", mOutputAudioFile.getAbsolutePath(), "-c:v", "copy", "-c:a", "aac","-shortest", dest.getAbsolutePath()};
但我需要修改我的音频文件的开头(例如半秒)(用于同步问题)。因此,如果你可以用一个命令来帮助我,那将是完美的,但也许我可以连续运行两个ffmpeg命令,但我也不知道如何做到这一点。谢谢!
答案 0 :(得分:0)
对音频应用搜索选项:
String command[] = {"-i", mOutputFile.getAbsolutePath(), " -ss 0.5", " -i", mOutputAudioFile.getAbsolutePath(), "-c:v", "copy", "-c:a", "aac","-shortest", dest.getAbsolutePath()};
这将从0.5秒开始播放音频。
答案 1 :(得分:0)
{"-i", mOutputFile.getAbsolutePath(), "-ss", "0.5", "-i", mOutputAudioFile.getAbsolutePath(), "-c:v", "copy", "-c:a", "aac", "-shortest", dest.getAbsolutePath()};
感谢