Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
2answers
11k views

Improve Android Audio Recording quality?

is there any possibility to make audio recording with higher quality? And how can I read information that User is saying something? In Audio Recording application you can see such indicator (I don't ...
13
votes
3answers
8k views

Audio capturing with HTML5

I've tried to see if there's a way to record audio with HTML5 to no avail. I tried using this example but it didn't work. I'm guessing he really meant it when he said that it is not supported by any ...
11
votes
4answers
2k views

How do I capture the audio that is being played?

Does anyone know how to programmatically capture the sound that is being played (that is, everything that is coming from the sound card, not the input devices such as a microphone).
9
votes
4answers
6k views

Detect & Record Audio in Python

I need to capture audio clips as WAV files that I can then pass to another bit of python for processing. The problem is that I need to determine when there is audio present and then record it, stop ...
8
votes
1answer
1k views

Why is it impossible to use the Speech Recorder on the Android emulator?

I am trying to run the Speech Recorder that comes with the Android 2.2 emulator. The problem is that the moment I click the "Record" button: It aborts with an error message "The application Speech ...
8
votes
3answers
3k views

Recording Audio From Web Page

I'm looking for a solution for capturing audio from a user's microphone and posting it (preferably as MP3) to a server. I need something that I can embed in a web page. I've seen where Flash can do ...
7
votes
4answers
1k views

What is the simplest way to continuously sample from the line-in using C#

I want to continuously sample from my PC's audio line in using C# (then process that data). What is the best way to do the sampling?
6
votes
4answers
2k views

Android. How to Do Audio Recording with High Volume?

I will describe briefly my trouble with audio recording. So, I am doing audio recording using MediaRecorder, but unfortunately when I playback the recorded audio, I have media with a very low volume. ...
5
votes
2answers
328 views

Monitoring an audio line

I need to monitor my audio line-in in linux, and in the event that audio is played, the sound must be recorded and saved to a file. Similiar to how motion monitors the video feed. Is it possible to ...
5
votes
1answer
1k views

Is it possible to record phone calls via an Android App?

I'm a developer looking to create an Android application to record phone calls. This spawned out of my own personal need to record phone calls for my own purposes and for my records. Is it possible ...
5
votes
2answers
240 views

Learning Audio Manipulation

I want to learn how applications like CakeWalk, Cubase, and ProTools are built. Are there any good resources out there to learn this type of development? Resources Digital Signal Processing Basics ...
5
votes
5answers
2k views

Recording Audio via the Web for an Intranet Solution

What is the best (cheapest, most open) way to record audio via a web page. Then keep that recording as MP3 format and make it available via a unique ID / URL. I guess Flash-based plug-in would be ...
5
votes
3answers
6k views

How can I record AMR audio format on the iphone?

A voice recorder doesn't need uncompressed Linear PCM audio. Compressed AMR would do fine. The iPhone framework built for recording audio is simple enough, but the only examples I've found for ...
4
votes
1answer
64 views

How to keep the audio size, reduced, while recording in android?

My requirement is to keep the size of audio as small as i can. Also, after getting the recorded stream, i can accomplish this task by zencoder type APIs but I am interested to do this thing while ...
4
votes
1answer
857 views

How to record sound produced by mixer unit output (iOS Core Audio & Audio Graph)

I'm trying to record sound produced by a mixer unit output. For the moment, my code is based on the apple MixerHost iOS app demo : A mixer node is connected to a remote IO node on the audio graphe. ...
4
votes
1answer
324 views

Recording with NAudio using c#

I am trying to record audio in C# using Naudio. After looking at the NAudio Chat Demo, I used some code from there to record. here is the code: using System; using NAudio.Wave; public class FOO { ...
4
votes
2answers
2k views

Playing back sound coming from microphone in real-time

I've been trying to get my application recording the sound coming from the microphone and playing it back in (approximately) real-time, however without success. I'm using AudioRecord and AudioTrack ...
4
votes
3answers
340 views

Importing Data from Audio CD using C#?

I am doing a music album library.The program should connect to a database like FreeDB and then store it. At the moment, it is just a concept and I want to know if it is possible to do it. The real ...
4
votes
2answers
1k views

flash voice recording, then upload to server

I'm looking for a flash widget that allows users to record their audio and then send it to the server. There are a few similar questions: Record Audio and Upload as Wav or MP3 to server They ...
4
votes
1answer
4k views

Mp3 encoder for android, record audio in mp3 format

I want to record audio in MP3 format in my android application. I know I can read PCM audio using the audioRecord class. Is there a java library compatible with android that will encode PCM to MP3? Is ...
4
votes
1answer
286 views

android, audio filters

I would like to make audio records (via MediaRecorder/AudioRecorder) and then play recorded file with some changes (special effects) (e.g. increasing/decreasing speed, adding echo, mix with other ...
4
votes
1answer
461 views

How to record a specific applications audio? vb.net

How can I make an application that can record the audio output of another application using VB.net?
4
votes
1answer
2k views

Problems with MediaRecorder class to record audio - prepare() gives an exception - Permission denied

I'm new in Android development and I have the next question/problem. I'm playing around with the MediaRecorder class to record just audio from the microphone. I'm following the steps indicated in ...
4
votes
3answers
1k views

How to sample multi-channel sound input in Java

I realised this might be relatively niche, but maybe that's why this is good to ask anyway. I'm looking at a hardware multiple input recording console (such as the Alesis IO 26) to take in an Adat ...
3
votes
1answer
67 views

sound waves during recording in android

How to implement sound waves during recording sound in android?? in the below code super.onCreate(savedInstanceState); setContentView(R.layout.main); resultView = (TextView) ...
3
votes
1answer
105 views

Recording audio and playing iPod at the same time?

I'm trying to be able to record audio through the iPhone's microphone while simultaneously playing music from the iPod. The recording and playback work separately but if I try to playback from the ...
3
votes
1answer
156 views

Audio Recording in Python

I want to record short audio clips from a USB microphone in Python. I have tried pyaudio, which seemed to fail communicating with ALSA, and alsaaudio, the code example of which produces an unreadable ...
3
votes
1answer
206 views

IPhone XCode Unable to Reactivate Audio Capture Sessions when in Background

When the app is in the background and capturing audio fine, and then a call comes in, the capturing is stopped and the proper callbacks are called. When the call is done the proper callbacks are ...
3
votes
2answers
503 views

Recording mp3 on iPhone by SDK

I'm wondering if it's possible to record an audio file in mp3 format programmatically with Xcode... I've read a tons of documentations and I've googled for this, but without results.. Someone know if ...
3
votes
2answers
794 views

Can anyone suggest how to record audio from microphone on a website using html5 and javascript

I want to record audio using javascript and html5, there is device element in html5 but i dont know to use it. Found no examples for the same.
3
votes
4answers
986 views

PCM audio amplitude values?

I am starting out with audio recording using my Android smartphone. I successfully saved voice recordings to a PCM file. When I parse the data and print out the signed, 16-bit values, I can create a ...
3
votes
1answer
810 views

Android AudioRecord vs. MediaRecorder for recording audio

I want to record human voice on my Android phone. I noticed that Android has two classes to do this: AudioRecord and MediaRecorder. Can someone tell me what's the difference between the two and what ...
3
votes
2answers
1k views

Record voice with Java

I want to record voice using a Java application; I guess this will be basically an applet that will run on client side. But I don't have any idea of how to do it... any ideas? Also, I want to play ...
3
votes
1answer
1k views

Why does AudioRecord.getMinBufferSize return ERROR_BAD_VALUE (-2)?

I am testing this on a Samsung Galaxy S i9000. int sampleRate = 44100; int bufferSize = AudioRecord.getMinBufferSize(sampleRate, AudioFormat.CHANNEL_IN_MONO, AudioFormat.ENCODING_PCM_8BIT); It ...
3
votes
2answers
1k views

Record and play audio Simultaneously

Any one help to me to record and play audio Simultaneously in Iphone. Thanks in advance.
3
votes
2answers
269 views

internal audio recording program

NOTE: This isn't something that would use a mic. I want to INTERNALLY record audio. I would like to write a program in C# or Java that records audio data sent to the speakers in my computer. The end ...
3
votes
2answers
3k views

Problems with MediaRecorder class setting audio source - setAudioSource() - unsupported parameter

I'm new in Android development and I have the next question/problem. I'm playing around with the MediaRecorder class to record just audio from the microphone. I'm following the steps indicated in the ...
3
votes
3answers
1k views

Audio streaming from iPhone to a server?

How can I stream the audio recorded from iPhone to a server continuously? Am I really have to use RTP? Any other suggestions? Thanks.
3
votes
4answers
2k views

Java AudioSystem and TargetDataLine

I am trying to capture audio from the line-in from my PC, to do this I am using AudioSystem class. There is one of two choices with the static AudioSystem.write method: Write to a file Or Write to a ...
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
1answer
79 views

Circular Buffer Audio Recording iOS: Possible?

A client of mine wants to continually record audio and when he clicks submit he wants to submit the last 10 seconds only. So he wants a continual recording and only keeping the last x seconds. I ...
2
votes
1answer
302 views

How to record audio in a Chrome Extension?

What's the simplest way to setup a chrome extension to record audio from the microphone? I see there is a working experimental speech input API but how come you don't have access to the recorded ...
2
votes
0answers
91 views

How to play back AudioRecord with some delay

I'm implementing an app which will repeat everything I'm telling it. What I need is to play the sound I'm recording on a buffer just with a second of delay So that I would be listening myself but 1 ...
2
votes
1answer
171 views

Audio CMSampleBuffer format

What is the data stored in CMSampleBuffer when using AVCaptureAudioDataOutput? It delivers CMSampleBuffers via delegate method –captureOutput:didOutputSampleBuffer:fromConnection: but what's inside ...
2
votes
2answers
174 views

Real time microphone in Delphi?

Is there a real-time microphone Delphi component? I'm looking for one that provides the results without a buffer.
2
votes
1answer
61 views

Recording audio on Android without saving to external storage

I'm writing audio to external storage, but immediately uploading the file and then deleting it. I would prefer to just obtain the audio data and upload it directly, without having to write to the SD ...
2
votes
1answer
75 views

Is it possible in Android to record somthing played by mediaplayer not from mic

I want to know if there is any possibility of recording using Android MediaPlayer rather than MediaRecorder. In my application im doing LiveAudioStreaming using media player i want to capture the ...
2
votes
2answers
349 views

Android Audio Analysis in Real-time

I have searched for this online, but am still a bit confused (as I'm sure others will be if they think of something like this). I'd like to preface by saying that this is not for homework and/or ...
2
votes
1answer
126 views

Audio Queues for multi channel real time audio processing on Mac

I have a 4 mic array connected to an iMac via an external audio interface (RME Fireface). I need to record from all 4 simultaneously, get individual signals, perform some operations, and play an ...
2
votes
2answers
189 views

How to install red5 on heroku server

I am trying to build an audio recorder and have 3 questions: Is red5 enough for building an audio recorder? No need for a flash recorder or something? How can I install red5 on heroku server? Is ...

1 2 3 4 5 8