Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have 2 audio input of a concert. The first is a wav file and the second is taken by microphone in real time. I need play the first file in synch with the microphone input.

What library can i use?

Is there any tutorial, guide or example for do this?

thanks

share|improve this question
Are we talking about two wav files you want to mix? – zaf May 31 '11 at 12:59
Is this the requirement of the program you are writing or would it be ok to synch the two audio files up in 3rd party software? – DrLazer May 31 '11 at 16:39

1 Answer

Take a look here

This is entire sound api documentation

http://download.oracle.com/javase/1.5.0/docs/guide/sound/programmer_guide/

Also

  • Chapter 4: Synchronizing Playback on Multiple Lines
  • Chapter 6: Processing Audio with Controls

BUT

here is what i found in jsresource faq

How can I synchronize two or more playback lines ?

The synchronization functions in Mixer are not implemented. Nevertheless, playback typically stays in sync

How can I synchronize playback (SourceDataLines) with recording (TargetDataLines)?

As with multiple playback lines from the same Mixer object, playback and recording lines from the same Mixer object stay in sync once they are started. In practice, this means that you can achieve synchronization this easy way only by using the "Direct Audio Device" mixers. Since the "Java Sound Audio Engine" only provides playback lines, but no recording lines, playback/recording sync is not as easy with the "Java Sound Audio Engine".

If playback and recording lines originate from different Mixer objects, you need to synchronize the soundcards that are represented by the Mixer objects. So the situation is similar to external synchronization.

AND

The main problem is buffering and processing mic audio hits and timing realtime , a practical way is using external clock

And here is a bunch of java sound resources , i think u should look at monitoring sound section in api documentation and try to trigger timedelay based on hits and monitor outputs , it's little complicated i also interested in this question i will try to find out if i did i will let u know

Take a look at this links and it's going to be easy as i found and read description of this processing libraries

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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