wav « audio « iPhone iPad Media Q&A

Home
iPhone iPad Media Q&A
1.animation
2.audio
3.AVAudioPlayer
4.box2d
5.cocos2d
6.CoreGraphics
7.CorePlot
8.Flash
9.graphics
10.icon
11.image
12.photo
13.plot
14.sound
15.video
iPhone iPad Media Q&A » audio » wav 

1. How can I reduce the size of .wav audio files for iPhone apps?    stackoverflow.com

I have some music that loops. The .wav file size is about 8 meg. I load this and just loop it... everything was working fine until I added another ...

2. How can I free-up or release the memory I've allocated to a .wav file?    stackoverflow.com

I load some .wav files in my iPhone app like this:

SoundEngine_LoadLoopingEffect([[bundle pathForResource:@"loop" ofType:@"wav"] UTF8String], NULL, NULL, &MySounds[Loop]);

SoundEngine_LoadEffect([[bundle pathForResource:@"intro" ofType:@"wav"] UTF8String], &MySounds[IntroMusic]);
The "intro.wav" file takes up some space (approx 2 meg). ...

3. Error converting wav to caf for the iPhone using afconvert    stackoverflow.com

Here's the command I'm typing in a Terminal window:

afconvert -f caff -d LEI16@44100 -c 1 buzzer.wav buzzer.caf
Error: ExtAudioFileOpenURL failed ('dta?')
Notice that buzzer.wav is my sound file. What's wrong? How should I do ...

4. wav stopped working with AudioServices on my iPhone app?    stackoverflow.com

I have a wav file that was working fine. It is played using the AudioServices methods. Suddenly it stopped working. The weird thing is if i change he wav file to ...

5. iPhone - convert mp3 to wav?    stackoverflow.com

Is there a way I can convert an mp3 file into a wav/aiff in my iPhone app? I have an mp3 but I want to combine it with other files and ...

6. How do you use afconvert to convert from wav to aac caf WITHOUT RESAMPLING    stackoverflow.com

I'm making an Iphone game, we need to use a compressed format for sound, and we want to be able to loop SEAMLESSLY back to a specific sample in the audio ...

7. Beat Detection on iPhone with wav files and openal    stackoverflow.com

Using this website i have tried to make a beat detection engine. http://www.gamedev.net/reference/articles/article1952.asp

{


ALfloat energy = 0;
ALfloat aEnergy = 0;
ALint beats = 0;
bool init = false;
ALfloat Ei[42];
ALfloat V = 0;
ALfloat ...

8. which audio recording format in iPhone?    stackoverflow.com

Which audio recording format shall i consider in iPhone audio recording, since next step is to convert the audio recording format to WAV . Hence please guide me for which audio ...

9. can we stream WAV audio format    stackoverflow.com

Can we stream live audio which is in WAV format from iPhone to server?

10. How to convert WAV audio files for Core Audio playback?    stackoverflow.com

I'm using Core Audio / OpenAL to play CAF audio files. From Apple I know that the best file format is this: Core Audio File Format (CAFF), mono, 16-bit @ 44,1 kHz So ...

11. Save audio in caf format to wav format    stackoverflow.com

I record audio in .caf format and later need to convert it to .wav in order to send the file as a email attachment. How can I convert the file ...

12. After HelloWorld iPhone app, how to move on to app for handling WAV files    stackoverflow.com

I have just started to work with the iPhone SDk(have never worked with MAC either). I finished implementing a helloworld app on iPhone. I'm supposed to build an app on the iPhone ...

13. Convert .wav file to .mp3    stackoverflow.com

I want to convert an audio file saved with .wav file format to a file with .mp3 format. Please suggest that how can I achieve this through Objective C coding. Thanks in advance. ...

14. How to convert byte array to wav file     stackoverflow.com

I want to convert a byte array to a wav file

MyAudioFile  *audioFile = [[MyAudioFile alloc]init];
OSStatus result = [audioFile open:@"MySound" ofType:@"wav"];
int numFrequencies=16384;
int kNumFFTWindows=10;  

OouraFFT *myFFT = [[OouraFFT alloc] initForSignalsOfLength:numFrequencies*2 andNumWindows:kNumFFTWindows];
for(long ...

15. Subchunk2ID in the header of the wav file on the iPhone    stackoverflow.com

Hello wonderful people of the audio computing world! Allright, so I've managed to successfully parse the header of a wav file and spit out the samples into an array. This I did ...

16. i have .wav file. i want to break that file into parts    stackoverflow.com

i have .wav file. i want to break that file into parts. is there any way to do it please let me know.. thanks in advance.... thank you

17. Sending a .wav file using MFMailComposeViewController    stackoverflow.com

I have a .wav file on the iPhone device that I would like to attach automatically to an email that people send from within my app. How would I do this? ...

18. iPhone SDK: Reversing the playback of a wav file    stackoverflow.com

Is it possible to reverse the playback of a wav file by: 1.Putting its samples into an array 2.Reversing the array using: NSArray* reversedArray = [[wavedataarray reverseObjectEnumerator] allObjects]; 3.Writing/Playing the reversed data stored in ...

19. Which one of these is better for short audio input in iPhone- .caf or .wav?    stackoverflow.com

I am making a simple app for iPhone and i want to enter a short audio file on object click. Which of these would be better .caf or .wav? I am ...

20. How to convert a wav or caf audio file on iPhone    stackoverflow.com

I am working on a iPhone IM app, which support audio message. I've tried caf and wav format follow "Speak Here", but the files are too large to be send through ...

21. audio tag on iPhone    stackoverflow.com

I have the following in my html page:

<audio id="doink-wav" src="doink.wav" preload="auto"></audio>
And then I have this in my JavaScript:
var wav = $('#doink-wav')[0];
$('form').submit(function() {
    wav.play();
});
And it works in Chrome and ...

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.