Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
5answers
204 views

How to create a sound from scratch C#

I am trying to build a virtual piano in C#, and want a way to create a scale of musical notes from scratch. I know that I can simply find or create a bunch of .wav files, 1 for each note, but this ...
3
votes
2answers
292 views

Appropriate audio format for sound effects on Android phones regarding efficiency

I profiled my programs, and it turned out a large portion of CPU was spent on SoundPool.play(). The game has ~10 sound files, each under 1 second. Currently they are 64kbs variable MP3s. They are ...
3
votes
4answers
4k views

Sound processing: Should I use DirectSound or directly Win32 APIs?

I'm making an application where I will: Record from the microphone and do some realtime processing on the input Play an MP3 file (a regular song), but manipulating the output in realtime Every now ...
2
votes
2answers
4k views

AS3 microphone recording/saving works, in-flash PCM playback double speed

I have a working mic recording script in AS3 which I have been able to successfully use to save .wav files to a server through AMF. These files playback fine in any audio player with no weird effects. ...
1
vote
1answer
108 views

android : how can I store an audio file in the application folder

I am using StatusBarNotification in my application. I want to play some particular sound when the notification arrives. So I planned to store the sound file in the application folder. But I am not ...
1
vote
1answer
502 views

C# play MP3 file from specified time for the specified time

I'm wanting to create a program that you can import an mp3 file into, and tell it to play it starting at a specific position, and to play for a specified amount of time. I've looked into NAudio, and ...
1
vote
1answer
249 views

Python audio library for simultaneous audio creation and playback

I'm working on an audio creation framework. It'll be generating large audio files, say 3 minute long audio files that take about 1 minute to generate. So what I want is a system much like streaming ...
0
votes
1answer
206 views

Play the m4v video file in background ie only sound

Im trying to play a m4v files audio alone in the background. I tried using SoundPool and it is giving me error while loading it from the raw folder. i used this sample program. 10-27 11:49:11.684: ...
0
votes
1answer
209 views

Play audio from buffer

I want to play audio from a buffer. Something like using the AudioRecord to record the audio into buffer and play it from the buffer. Is there a way of doing it? In the MediaPlayer there is no such ...
0
votes
1answer
60 views

Titanium Extracting first 10 secs of audio from Ti.MediaSound Object

I need to extract first Ten(10) secs from an audio file. We have the following code. var file = recording.stop(); sound = Titanium.Media.createSound({sound:file}); I need to extract first 10 ...
0
votes
3answers
639 views

C++ multiplatform library to playback /record audio (.wav, .ogg)

I have a multiplatform application and want to add audio annotations functionality. I am looking for audio playback /recording library that is: multiplatform (Windows, Linux, Mac) simple and fast to ...