F fanfalveto Active Member Licensed User Longtime User Jun 8, 2014 #1 How i can save only the speaker sound,not from MIC. I try with differents libraries but i can´t always save sound from MIC. Thank you.
How i can save only the speaker sound,not from MIC. I try with differents libraries but i can´t always save sound from MIC. Thank you.
stevel05 Expert Licensed User Longtime User Jun 8, 2014 #2 What are you trying to achieve? If you are trying to capture output from a different app, I don't think that's possible. Upvote 0
What are you trying to achieve? If you are trying to capture output from a different app, I don't think that's possible.
F fanfalveto Active Member Licensed User Longtime User Jun 8, 2014 #3 i want make an app with differents sounds and while is playing then save it Upvote 0
F fanfalveto Active Member Licensed User Longtime User Jun 8, 2014 #5 B4X: Dim son As MediaPlayer son.Initialize2("son") son.Load(File.DirAssets,"vaca.mp3") son.Play Upvote 0
stevel05 Expert Licensed User Longtime User Jun 8, 2014 #6 The only way you could capture the output would be to use AudioStreamer to Audiotrack to play the sounds and capture them into a new file as they are played. That would require decoding the Mp3's, or using wav files to start with. Upvote 0
The only way you could capture the output would be to use AudioStreamer to Audiotrack to play the sounds and capture them into a new file as they are played. That would require decoding the Mp3's, or using wav files to start with.