I want to combine a video file (flv) with no audio with an audio file (mp3) using Xuggler. At the moment I have taken two streams and combined the video and audio parts of those streams separately like picture in picture. Now i want to combine the audio and video files with each other.. Any suggestion or hints will be appreciated. I am using red5 server. Thanks.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Use a MediaConcatenator. See example code "Concatenate Audio And Video"

link|improve this answer
it concatenate mate. We need both audio and video to run simultaneously... this first adds video and then audio file. We don't need that – user966227 Jan 18 at 6:36
Thanks for your response. But i want to make one file with audio of the second file running for the video of the first file. – Hadi Jan 18 at 7:08
So instead of concatenate, you could try to create an IContainer with 2 streams 1 for audio 1 for video. Then decode mp3 and flv in a loop, create an IPacket then use encodeVideo and encodeAudio with the same packet. Once your packet is complete use writePacket (on your output IContainer) to record video and audio. I think I saw a tutorial on xuggle's wiki explaining how to do such thing but I couldn't find it back. – zeropouet Jan 18 at 8:29
I found a link that could help to merge your audio and video file. There is no code in it but some useful advices to do read: groups.google.com/group/xuggler-users/browse_thread/thread/… – zeropouet Jan 19 at 10:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.