2012-01-13 67 views
2

我有一个mp3文件和一个图像。我需要创建一个视频结合他们,在Java中。
我试图用xuggle来做,但仍然没有结果。
有人可以给我任何建议吗?Xuggle将音频与生成的音频结合起来

+0

你最近怎么样?也许你应该使用MediaTool? (请参阅:[MediaTool简介](http://wiki.xuggle.com/MediaTool_Introduction)) – mrzasa 2012-01-13 09:28:59

+0

我还是Xuggle的新手。我试图创建2个流,一个用于音频,另一个用于视频(就像站点中的一些示例一样),但可能我做的是错误的,因为它失败了...... – user584397 2012-01-13 09:44:38

+0

我的问题是,当视频生成飞,但音频已经在磁盘上,我不知道如何把它们放在一起。我认为只保存视频,然后连接它们([link] http://code.google.com/p/xuggle/source/browse/trunk/java/xuggle-xuggler/src/com/xuggle/mediatool/演示/ ConcatenateAudioAndVideo.java [/ link]),但它没有为这个示例工作... – user584397 2012-01-13 09:48:41

回答

2

最后,我找到了解决方案。

我使用了Xuggle示例中的代码片段。

我也解决了音频转码的问题。

我会在这里写我的代码,因为我无法解释它为什么会起作用,但它只是起作用。

public String make() throws IOException, InterruptedException { 
     BufferedImage s1 = genImage(); 
     writer = ToolFactory.makeWriter("temp/" + sermon.getFile().getName() + ".flv"); 

     String filename = sermon.getFile().getAbsolutePath(); 
     IContainer container = IContainer.make(); 

     if (container.open(filename, IContainer.Type.READ, null) < 0) { 
      throw new IllegalArgumentException("could not open file: " + filename); 
     } 
     int numStreams = container.getNumStreams(); 

     int audioStreamId = -1; 
     IStreamCoder audioCoder = null; 
     for (int i = 0; i < numStreams; i++) { 
      IStream stream = container.getStream(i); 
      IStreamCoder coder = stream.getStreamCoder(); 
      if (coder.getCodecType() == ICodec.Type.CODEC_TYPE_AUDIO) { 
       audioStreamId = i; 
       audioCoder = coder; 
       break; 
      } 
     } 
     if (audioStreamId == -1) { 
      throw new RuntimeException("could not find audio stream in container: " + filename); 
     } 

     if (audioCoder.open() < 0) { 
      throw new RuntimeException("could not open audio decoder for container: " + filename); 
     } 
     writer.addAudioStream(0, 0, audioCoder.getChannels(), audioCoder.getSampleRate()); 
     writer.addVideoStream(1, 1, width, height); 
     IPacket packet = IPacket.make(); 
     int n = 0; 
     while (container.readNextPacket(packet) >= 0) { 
      n++; 

      if (packet.getStreamIndex() == audioStreamId) { 
       IAudioSamples samples = IAudioSamples.make(2048, audioCoder.getChannels()); 
       int offset = 0; 
       while (offset < packet.getSize()) { 
        try { 
         int bytesDecoded = audioCoder.decodeAudio(samples, packet, offset); 
         if (bytesDecoded < 0) { 
          //throw new RuntimeException("got error decoding audio in: " + filename); 
          break; 
         } 
         offset += bytesDecoded; 

         if (samples.isComplete()) { 
          if (n % 1000 == 0) { 
           writer.flush(); 
           System.out.println(n); 
           System.gc(); 
          } 
          writer.encodeAudio(0, samples); 
         } 
        } catch (Exception e) { 
         System.out.println(e); 
        } 
       } 
      } else { 
       do { 
       } while (false); 
      } 
     } 
     for (int i = 0; i < container.getDuration()/1000000; i++) { 
      writer.encodeVideo(1, s1, i, TimeUnit.SECONDS); 
     } 

     writer.close(); 

     if (audioCoder != null) { 
      audioCoder.close(); 
      audioCoder = null; 
     } 
     if (container != null) { 
      container.close(); 
      container = null; 
     } 
     return "temp/" + sermon.getFile().getName() + ".flv"; 
    } 

谢谢,祝你好运。