Questions tagged [avaudiofile]
65 questions
0
votes
1 answer
swift FFT chunk audio file to get Amplitude
i need your help. in want to use the FFT on my audio file. i want to cut my audio file in more little buffer array and use my FFT with all sub buffer.
why ?? because i need to know and see (with plot data) how my fréquence have particularity. i…

Cyril Jeanneret
- 53
- 1
- 9
0
votes
2 answers
can't find audio file after recording
i created a voice recorder in android studio, but i cant find the recorded file on my phone. normally am meant to attach it to an email that will be sent, but i cant find it on my phone for me to add it as an attachment.This is my code written…

Henry
- 91
- 2
- 12
0
votes
2 answers
AVAudioFile can not read file from document directory
NSArray * paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString * documentsDirectory = [paths objectAtIndex:0];
NSString *filePath = [NSString stringWithFormat:@"%@/audio.mp3",documentsDirectory];
NSURL…
-1
votes
1 answer
Combining 2 audio files is Swift
I am trying to combine 2 audio files.
The main problem is that audio files are lossless .flac files.
I tried creating AVMutableComposition, then creating 2 AVURLAsset for each audio and use AVAssetExportSession to combine the audio files and it…

sabius
- 704
- 7
- 10
-1
votes
2 answers
Can't play sound in java using clip
I want to play some sound in java using this code bellow. That sound is in WAV format so I think that this code should work fine, but instead of playing sound it simply does nothing. There is no even error on my console. So can someone help me to…

Jovan Dukic
- 69
- 9