I need to change the pitch of mp3 files while they are playing.
I am using setPitch but I see no changes.
Is anything special that I have to do?
This is what I am doing:
__________________________________________________________________________________
InputStream is = getClass().getResourceAsStream("/test.mp3") ; //"/sb120.mid");
p = Manager.createPlayer(is,"audio/mp3");
p.realize();
vc = (VolumeControl) p.getControl("VolumeControl");
rc = (RateControl) p.getControl ("RateControl");
pc = (PitchControl) p.getControl ("PitchControl");
pc.setPitch(12000);
____________________________________________________________________________________
Thanks

Reply With Quote

