audio-processing Questions
2
I am new to iOS programming and I want to port an Android app to iOS using Swift 3. The core functionality of the app is to read the byte stream from the microphone and to process this stream live....
Vondavonni asked 18/4, 2017 at 13:5
3
Solved
Whenever I try to read a .wav file, the following error comes.
I have searched everywhere but had no progress upon this.
CODE:
import scipy as sp
import matplotlib.pyplot as plt
sr, y = sp.io.wavf...
Stoltz asked 28/8, 2017 at 8:31
3
I'm trying to train a RNN for digital (audio) signal processing using deeplearning4j.
The idea is to have 2 .wav files: one is an audio recording, the second is the same audio recording but process...
Jestude asked 6/5, 2017 at 21:44
1
Solved
I am going through these two librosa docs: melspectrogram and stft.
I am working on datasets of audio of variable lengths, but I don't quite get the shapes. For example:
(waveform, sample_rate) = l...
Schizo asked 25/6, 2020 at 20:54
2
Solved
I have to detect whether a file is a valid mp3 file. So far, I have found two solutions, including:
this solution from Peter Carroll
using try-catch expression:
try:
_ = librosa.get_duration(f...
Teodoor asked 3/7, 2019 at 12:9
1
Solved
I am working on an M4a file with the following metadata:
Metadata:
major_brand : M4A
minor_version : 0
compatible_brands: M4A mp42isom
creation_time : 2019-08-14T13:45:39.000000Z
iTunSMPB : ...
Passant asked 4/12, 2019 at 10:5
1
Solved
I'm currently extracting mel features from my baby cry sound dataset and the wav files' sampling rate is 8kHz, 16bit, mono and about 7 sec.
Mel-Spectogram when sr = 16000
Mel-Spectogram when sr ...
Coldhearted asked 16/7, 2019 at 9:0
1
I dug a lot on SO and some nice blog post But seems I am having unique requirement of reading Video and Audio buffer separately for further processing on it while recording going on.
My use case ...
Clubman asked 5/1, 2019 at 5:35
4
Solved
I have a load of 3 hour MP3 files, and every ~15 minutes a distinct 1 second sound effect is played, which signals the beginning of a new chapter.
Is it possible to identify each time this sound e...
Phagocyte asked 29/9, 2018 at 21:26
1
I'm trying to create a project that pulls in a live stream audio file from the internet and continuously samples the audio looking for the most dominant frequency for a given time period. The idea ...
Hyetal asked 8/12, 2018 at 15:58
1
Solved
I'm working on a mac application that mix audio from a VideoCard and an external audio card.
How can I change volume on each channel (not each source) independently using AVAudioEngine.
Let's say...
Naughton asked 8/11, 2018 at 12:44
1
I am trying to use ndk-build to use native code for audio processing from Little Endian in an Android application (I don't have JNI yet).
When I executed ndk-build in jni dir I got ($USER_PATH is ...
Pterodactyl asked 21/8, 2014 at 9:37
0
We have two lowpass filters with a different cutoff value:
b, a = signal.butter(2, 0.125)
b2, a2 = signal.butter(2, 0.140)
When applying the first filter to x[0:10000] and the second to x[10000...
Loats asked 25/9, 2018 at 16:31
1
Solved
I am trying to extract MFCC vectors from the audio signal as input into a recurrent neural network. However, I am having trouble figuring out how to obtain the raw audio frames in Swift using Core ...
Augusto asked 1/12, 2017 at 22:38
1
Solved
First time posting here, lets see how this goes.
I trying to write a script in python which would add a second of silence in the beginning of the wav file, but so far been unsuccessfully in doing ...
Ensile asked 15/10, 2017 at 17:22
0
I am making an app to listen to heartbeat . I could listen to filtered heartbeat signal through headset but not through mobile speaker as the mobile speaker doesn't support such low frequencies , I...
Pardner asked 25/9, 2017 at 5:46
1
Solved
According to Microsoft, starting with Windows 10, applications using shared-mode WASAPI can request buffer sizes smaller than 10ms (see https://msdn.microsoft.com/en-us/library/windows/hardware/mt2...
Crunch asked 26/5, 2016 at 18:16
2
Solved
I'm trying to find out if there's a way to determine if an AAC-encoded audio track is encoded with Dolby Pro Logic II data. Is there a way of examining the file such that you can see this informati...
Pneumatics asked 13/4, 2017 at 9:32
4
Solved
From a series of MIDI notes stored in array (with MIDI note number), does an algorithm exist to get the most likely key or scale implied by these notes?
Minutiae asked 6/2, 2013 at 17:1
1
I want to record and playback audio in Mac. Now, I have some problems about the settings for Input/Output/ChannelFormat … I showed you some code I try below.
// Setup audio device
- (OSStatus) set...
Rough asked 8/8, 2016 at 4:29
0
We are trying to implement a music player app with Equalizer presets. We are successful in getting presets from iPod and applying it through audio unit. But, now we need to display sliders and set ...
Commendation asked 9/8, 2016 at 5:32
2
Solved
This question is usually asked as a part of another question but it turns out that the answer is long. I've decided to answer it here so I can link to it elsewhere.
Although I'm not aware of a way...
Demonize asked 9/11, 2014 at 3:28
1
This is my first post. Is it possible to change the speed of a playback during playback? I want to simulate a car engine sound and for this the first step is to change the speed of a looped sample ...
Merger asked 2/7, 2016 at 22:49
1
First off I'm trying to implement this chord detection algorithm:
http://www.music.mcgill.ca/~jason/mumt621/papers5/fujishima_1999.pdf
I originally implemented the algorithm to use my microp...
Haffner asked 14/4, 2016 at 4:4
1
Solved
For my final year project i am trying to identify dog/bark/bird sounds real time (by recording sound clips). I am using MFCC as the audio features. Initially i have extracted altogether 12 MFCC vec...
Belgae asked 7/2, 2016 at 12:5
1 Next >
© 2022 - 2024 — McMap. All rights reserved.