gpt4 book ai didi

java - 如何使用Java xuggler合并视频中的两种不同音频

转载 作者:行者123 更新时间:2023-12-03 02:02:58 25 4
gpt4 key购买 nike

我需要帮助将两个单独的音频文件连接在一起。我的第一条音轨持续7秒钟,我希望第二条音轨在第一条音轨之后立即播放。

以下是我的代码:

private void initVideo(String fileName){
String inputAudioFilePath = "/Users/Document/Desktop/audio.mp3";

createEmptyMP4(folder + "/" + fileName + ".mp4");
writer = makeWriter(folder + "/" + fileName + ".mp4");
screenBounds = Toolkit.getDefaultToolkit().getScreenSize();
writer.addVideoStream(0, 0, ICodec.ID.CODEC_ID_MPEG4,screenBounds.width, screenBounds.height);
startTime = System.nanoTime();

IContainer containerAudio = IContainer.make();

if(containerAudio.open(inputAudioFilePath, IContainer.Type.READ, null) < 0){
throw new IllegalArgumentException("Cant find " + inputAudioFilePath);
}

// read audio file and create stream
IStreamCoder coderAudio = containerAudio.getStream(0).getStreamCoder();

if(coderAudio.open(null, null) < 0){
throw new RuntimeException("Cant open audio coder");
}

IPacket packetaudio = IPacket.make();
writer.addAudioStream(1, 0, coderAudio.getChannels(), coderAudio.getSampleRate());
int a = -1;
ArrayList<IAudioSamples> audioPac = new ArrayList<IAudioSamples>();

while ((a = containerAudio.readNextPacket(packetaudio)) >= 0){
if (a >= 0){
// audio packet
IAudioSamples samples = IAudioSamples.make(512, coderAudio.getChannels(), IAudioSamples.Format.FMT_S32);
coderAudio.decodeAudio(samples, packetaudio, 0);
audioPac.add(samples);
}
}

for(int j=0; j < 300; j++){
writer.encodeAudio(1, audioPac.get(j));
}

coderAudio.close();
containerAudio.close();
}

最佳答案

假设您打开了两个音频文件:

coderAudio1 <--- first.mp3

coderAudio2 <--- second.mp3

将所有音频的第一个样本写入编写器中,完成后,开始编写第二个音频样本。

通过一些更改和控制,您可以在两个音频之间添加视频帧。

关于java - 如何使用Java xuggler合并视频中的两种不同音频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29981653/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com