0
votes
0answers
38 views

How to play respective sound when pressing each child in an ExpandableListView?

I am now working on an Android language learning application. I tried to use a expandable list. That is, there are several groups and if you click each group there will be child listview showing up. ...
0
votes
0answers
44 views

Audio continues playing on Phonegap when receiving a call

I'm creating a Radio App, which works fine on iOS using HTML5. To do it on Android I need to use Phonegap Media resource. I'm able to play the streaming and MP3s files, even in background/suspended ...
0
votes
1answer
58 views

Playing Audio with pipeline in Gstreamer (C#)

I've been struggling with GStreamer for a while because I can't find any C# examples/tutorials. As far as I know, Gstreamer uses pipelines in order to decode and then be able to send, for instance a ...
0
votes
1answer
10 views

Append media to post excerpt

I am developing a Wordpress site to allow users to sell musical productions, I would like to have PHP handle the media as that would be the most secure but I am a novice and I don't have a coder on ...
0
votes
0answers
57 views

Play sound once in loop which refreshes every second

I’m using the Sun Java Media Framework to play mp3 sound. I do it using this tutorial: http://www.morgenstille.at/blog/how-to-play-a-mp3-file-in-java-simple-and-beautiful/ In my program I have ...
0
votes
1answer
93 views

audio streaming server

I'm a php developer, trying to develop a website to stream on-demand music to the users. After a lot of googling I'm confused about which kind of server or tools should I use? I've seen some like ...
1
vote
1answer
48 views

How do media timeline apps work under the hood?

There are numerous examples of apps that are time-based and send out events or carry out complex processing to a very fine resolution and accuracy. Think MIDI sequencing apps, audio and video editing ...
0
votes
0answers
35 views

Stop jamming sounds while playing sounds via a button is pressed (called)

I am making an app to play sound clips, however the script jams while I was trying to play them (two clips are duplicated!) Here's my script: <script type="text/javascript"> var playerObj = ...
0
votes
1answer
70 views

Audio wont play?

I'm running into this problem, where the audio just doesnt want to play. There are no errors, but i dont hear the music when im supposed to. Heres the code below, and the logcat. I dont know how to ...
0
votes
1answer
151 views

how to play sound on multiple speaker using c++ under windows?

I have a standard speaker and a bluetooth speaker. I want to play a simple wav file on both speakers simultaneously under window xp or windows 7. Is any way I can do it using c++? Thanks.
2
votes
2answers
361 views

Corona sdk : Is there a difference between audio.play() and media.play() and which one is better?

Is there a difference between audio.play() and media.play() and which one is better?
1
vote
1answer
321 views

How to convert Mp3 to Amr Audio Format in Java

I'm writing a Java application and I'd like to convert Mp3 to Amr audio format. So, I could'nt success since there are no documentations or libraries to help. if possible, could you any hint about how ...
0
votes
1answer
100 views

html5 audio loading bar [closed]

I'm trying to make a loading bar for my html5 audio player. I found the currentTime attribute to be very useful for the progress bar. Is there anything out there similar to this for the loading ...
0
votes
2answers
285 views

Call requires API level 9 (current is 8 => WRONG), android.media.audiofx.Visualizer related. (Picture Inside)

Sorry I couldn't make the title more clear, so here is my problem : I'm using a source code from this project ( https://github.com/felixpalmer/android-visualizer ) and have a really weird problem. ...
1
vote
1answer
408 views

WP7 background audio resources are no longer available

I'm using BackgroundAudioPlayer for my Windows Phone 7 music & video application. After I play some music, I play video using MediaPlayerLauncher, then press Back to return to my app. There ...
1
vote
2answers
828 views

what is the best way to stream a audio file to website users/listners

I'm developing a music site which will stream audio files stored in a server to users, audio files will be played through flash player placed in a webpage.. As I heard I need to use a streaming ...
1
vote
1answer
45 views

How can i change the volume type affected when the user adjusts the volume manually?

I play short sounds in my app. about 0.5s, and I can imagine the user might want to adjust the volume of their playback. But they are so short that by the time you press the volume op or down ...
0
votes
1answer
658 views

Windows 8 store app MediaElement events not firing

I've developing a Windows 8 app in Visual Studio 2012 ultimate but i'm having an issue with the MediaElement where the MediaOpened and MediaEnded events are not being fired. Below is my code: ...
1
vote
1answer
111 views

How do I flush buffer in AudioRecord object?

I am trying to get very accurately timed recordings from the microphone on my android device. My thought was something like while (true) { audioRecord.startRecording(); sleep(0,nanoSeconds); ...
1
vote
1answer
873 views

FLAC codec on android 4.1

docs for 4.1 state that FLAC codecs are supported. However the mediarecorder.encoder list of codecs does not include FLAC. If i want to record audio on flac at 16000Mhz so that the output can go ...
1
vote
3answers
282 views

High level audio library for C++

I need to know, if there is any library that can handle this features: Decode the main formats (Mp3, Wav, Ogg, etc..) Handle sample rates, volume, duration, seek, etc... With the library, features ...
1
vote
0answers
76 views

Playing sound over running sound thread, or resuming playback?

I have the following method to play sound in a phonegap app: if (Ext.os.is.Android) { var soundPath = util.phonegap.getResourcesPath() + "/sounds/1khz_1_5s.mp3"; var ...
0
votes
0answers
233 views

Windows Media Player Object with Video_TS Files - No Sound Anymore

I copied a bunch of my DVDs (yes, owned) to a drive and created a basic webpage to be able to search and play them. I am using the code at the bottom to create a Windows Media Player object and then ...
0
votes
0answers
21 views

OnTouchListener for audio

I'm trying to create an Example App that play a Sound when you keep pressing a button, I mean, when you stay pressing it should sound, and when you release the button it should stop. And also if I ...
0
votes
1answer
141 views

how to increase time duration of video file - objective c

I am trying to merge audio and video files. And i have done it with below code. NSString *audioUrl=videoAudioTrackPath;//[[NSBundle mainBundle] pathForResource:@"chalne" ofType:@"mp3"]; ...
0
votes
0answers
98 views

Android : play ogg files with max compatibility

which way is better for play ogg file in my app for max compatibility with diffrent devices, using soundPool or media player class or any other way?
0
votes
0answers
17 views

Music converter that checks folder every minute

I would like to know if there's any music converter that checks a folder in certain times and automatically converts all media types to wav or mp3. Thanks.
1
vote
1answer
68 views

Is there any plugin for JavaScript/jQuery that allows me to trigger an action when a playing song reaches a certain play time?

I need a plugin for JavaScript/jQuery that handles playing audio, but I also need to be able to make my code trigger when it gets to a certain duration (eg. when the song hits 1:06, it displays an ...
0
votes
0answers
116 views

Getting security exception for medial player in android?

In my application, i need to capture the currently playing song. I got the code from this link http://www.alexc.me/android-music-app-service-currently-playing-song/231/ . I have created an activity ...
0
votes
0answers
33 views

Possible to extend Audio Mediatype with Events?

I would like to know if it is possible to extend a mediatype with an additional layer storing event data. For example: I am recording with a microphone but additionally the track stores variables ...
0
votes
1answer
404 views

Details about as3 Sound.extract() format?

Using the sound object .extract() method, it's possible to retrieve the uncompressed sound data as a ByteArray. What is the format of the extracted sound data? Custom internal format, or established ...
1
vote
1answer
169 views

Libraries for compressing and saving sound in iOS

I wish to export a sound recording on iOS from an app into some kind of format that's suitable to be sent over email. Since this leaves a compressed format this leaves out uncompressed wav, and leaves ...
1
vote
1answer
182 views

Trouble creating a spectrogram

I know it was asked a thousand times before, but I still can't find a solution. Searching SO, I indeed found the algorithm for it, but lacking the mathematical knowledge required to truly understand ...
1
vote
0answers
279 views

Android Mixing Audio Input

I've read a lot of questions on stackoverflow and other pages about this topic, but didn't find a real up-to-date solution: In an Android-App I've got two audio files (local file system), which are ...
0
votes
1answer
157 views

Android: Audio card sample rate limit

I would like to play a media file which contains a high frequency sounds (inaudible for humans), to repel some animals. My question is: Which is the sample rate limits of any commercial mobile phones? ...
1
vote
1answer
1k views

Android MediaRecorder Class: Does the setOutputFile() method append data to the existing file?

I am using MediaRecorder in my Android app. I referred to the online documentation for the public void setOutputFile (String path) of the MediaRecorder class but couldn't find information as to ...
2
votes
2answers
533 views

.wav sound file stored on server does NOT play when Loaded in web application

this is the scenario i'm trying to achieve: a sound stored on the same server as a web application, plays when a condition is met on the client. It works perfectly when I run it in the IDE and change ...
2
votes
0answers
2k views

How to manage Android MediaPlayer state, errors, and exceptions?

I am trying to play a short sound byte after processing a scanned bar code. My code currently works fine for as many as twenty scans. However, eventually the MediaPlayer throws the following error ...
0
votes
1answer
500 views

PhoneGap iOS - media.startRecord file URI not working

I am trying to use the audio recording as described in the PhoneGap API documentation. But on IOS there seems to be a problem with the file URI for myrecording.wav. I am using the following code to ...
1
vote
0answers
198 views

AVAudioPlayer crashes intermittently

I have an application that makes heavy use of audio. I use AVAudioPlayers to simplify the task. I've noticed crashes from time to time when using the players, usually when I call [player play]. The ...
0
votes
0answers
442 views

MediaStore Content Provider Error (Android)

I'm trying to use the MediaStore content provider to obtain all the audio files store on the SD card. I then take the title, artist, album, and add them into their respective arrays. For some reason ...
1
vote
1answer
211 views

Is there a way to record and replay audio using pure HTML5?

I need to create a proof of concept where users will record and replay audio, but it should be done using HTML5 without any browser plugin. Is this possible today?
0
votes
1answer
29 views

On-Off tagging of digital conversations

In a normal conversation between two parties, say A and B, four possible events can happen: 1) Both A and B talk 2) A talks and B is silent 3) A is silent and B talks 4) Both A and B are silent I ...
2
votes
1answer
1k views

Phonegap + iOS: how to play audio with Media API

i have an audio file test.mp3. when the file located in "Documents" folder, and i create my media object like this :media = new Media('documents://test.mp3'); Everything works fine. but when my ...
10
votes
2answers
902 views

Strange issue in Combining Audio Files and playing in different API versions

All , I am using Media Recorder for Recording Audio. Case 1: If i use Android Version 2.2 installed devices, my recorded audio combined and playing well. Case 2: If i use it in Android 1.6 installed ...
0
votes
1answer
340 views

Mediaplayer plays twice

I have a media player but when another file is selected it continues to play the old file and new one so it is playing two files at once here is my onCreate method private MediaPlayer mediaplayer = ...
1
vote
2answers
872 views

MP3 to AAC & Flac to AAC Conversion Encoding .NET

We are getting about 10 million MP3 & Flac files from the major labels. We need to convert a version of these that is AAC Do you know of any good tools to do this Freeware or Licensed How ...
0
votes
1answer
936 views

Playing Multiple Audio Files Simultaneously in Android

I want to play multiple audio files simultaneously in sync. I want to load the files using their URI (source will be either a Ringtone, file on the SDcard, or a file in a specific folder). I want to ...
0
votes
1answer
123 views

How to deal with thousands of audio resources in android app

Is there any good solution to deal with thousands of audio resources (mp3 format, 30Mb in total) in an android app? And these resource should be packed into one file that separated from the main app. ...
0
votes
2answers
832 views

How to calculate microphone audio input power in decibell unit

Please help me calculate decibels from phone microphone. The microphone has a getMaxAmplitude() function. How I can I use it to calculate decibels? I read in some forums that the decibel calculation ...

1 2