Programming audio hardware, and the various audio formats or containers.

learn more… | top users | synonyms (1)

0
votes
0answers
31 views

Error while playing .wav audio file from sd card

I am playing .wav file from sd card but it gives me error like this-- Media Player error (1, -2147483648) java.io.IOException: Prepare failed.: status=0x1 at android.media.MediaPlayer.prepare(Native ...
0
votes
0answers
18 views

how to use the mp32ogg api through php

Since the documentation of the mp32ogg api isnt available, can somebody tell me how to use it? I need to convert an mp3 file to ogg on the fly through php. You can find the API here - ...
0
votes
0answers
26 views

Audio record for user defined time from C code to MATLAB [closed]

How to record audio for user defined time in MATLAB, when data is sent from C code to the MATLAB function? Here, I am verifying Audio by calling MATLAB function in C code using system command. To that ...
1
vote
1answer
49 views

How do I fill an array with binary data streaming from websocket

I got a continuous stream of byte data receiving from websocket. When I view the data with this function: document.getElementById('log').innerHTML = document.getElementById('log').innerHTML + msg + ...
0
votes
1answer
38 views

Android combine two audio files into one

I have two .3gp (or .wav) audio files that I have saved from the user's microphone. How can I concatenate these two audio files together in code into a single file? Thanks.
0
votes
1answer
43 views

Looking for a Java sound manipulation library [closed]

I'm working on a program which seeks to have a few sound-editing features, a little like Audacity. I am looking for a library/API of some sort, in Java, which has the following features: loading ...
0
votes
0answers
11 views

Concat videos with ffmpeg does not work [migrated]

I'm currently trying to concat 3 Videos which don't have a audio stream and adding a audio file in the same step. I created this command which should do the work: ffmpeg -y -r 30 -i data\intro.mp4 ...
0
votes
1answer
30 views

Why sfml does not play the file inside a function in this python code?

from tkinter import * import sfml window = Tk() window.minsize( 640, 480 ) def sonido(): file = sfml.Music.from_file('poco.ogg') file.play() test = Button ( window, text = 'Sound ...
1
vote
1answer
43 views

Caching .mid audio files in a game

The question may seem really simple. I am working on a game project, so for now I need to implement a sound engine. I have several audio files to be played. I do it this way: File file = new ...
1
vote
1answer
35 views

Javascript and Howler.js - how to choose a random sound?

I am rather new to javascript and trying to have random selected sounds playing on mousemove. I can't get to work and would appreciate help. I am using howler.min.js to control the sound so does not ...
0
votes
0answers
11 views

What is the appropriate way to record mp4 w/ LC-AAC audio encoding with the ios image/video capture?

I'm a little lost on what the appropriate way to change the encoding in the UIImagePickerController to Mp4/AAC. I assume it's not possible from the documentation I read but do I need to convert the ...
1
vote
2answers
29 views

Playing a certain part of a large wav file

I want to play a certain parts of a wav file. Like playing the first ten seconds and then playing it from 50th-60th seconds and so on. I know how to play a entire wave file in Java using the start ...
0
votes
0answers
30 views

How can we mute MPMoviePlayerController when earphones connected

Possible duplicate of How to turn off audio in MPMoviePlayerController iPhone and Detect if headphones (not microphone) are plugged in to an iOs device I have an application, where i am playing a ...
0
votes
1answer
46 views

GStreamer: Introduce delay/gap/shift to audio

I have the following pipeline setup in gstreamer: two pulse audio sources (pulsesrc) from two seperate usb audio interfaces and one pulse audio sink (pulsesink). I'm combining the two incoming audio ...
2
votes
2answers
84 views

How do I concat/flatten byte arrays

I'm making a function that generates a .wav file. I have the header all set, but I'm running into trouble with the data itself. I have a function for creating a sine wave at 880Hz (at least I think ...
5
votes
1answer
58 views

Check whether headphones are plugged in

I can't seem to find a way to know on android if the headphones are plugged in. I found various solutions but they always seem to return false. The only thing that seems to work properly is a ...
0
votes
1answer
50 views

Android: Play soundfile or text-to-speech during phone call/SIP

is it possible in android to make a phone call or SIP call and play a soundfile after the call is established? Other option that would be ok for me is that after the established call the TTS engine ...
0
votes
0answers
36 views

How to play amr file in Windows Phone 8?

From what I read, WP8 does support amr However, I don't know how to play it. When using SoundEffect, I can't hear anything, maybe it's because SoundEffect supports wav only. Someone already asked ...
-1
votes
0answers
26 views

Android Background Audio recording using Mic? [closed]

I have a code that records audio on android and plays it back. I want make this to be run on background and plays back.I am new to android development please help. Thanks in advance. package ...
-2
votes
2answers
63 views

Delphi7, repeat sounds using Tmediaplayer

i am using delphi7. I want put a song in my program, but i don't want it to end never. I tried using a timer, but it didn't play the music: procedure TForm1.FormCreate(Sender: TObject); begin ...
-1
votes
1answer
37 views

AVfoundation AudioPlayer not working

I am trying to play a sound on button click using the AVFoundation framework. Previously, i used audio toolbox however when i use the audioplayer nothing comes out. What is weird is that when i test ...
0
votes
0answers
17 views

Web Audio API - Browser ogg vs Windows Media Foundation mp3

I'm playing with the Web Audio API in Firefox. MP4 Videos play really nice in Firefox through Windows Media Foundation. MP3 and OGG play also nice - but i wonder what what is better/faster or uses ...
0
votes
2answers
32 views

MME Audio Output Buffer Size

I am currently playing around with outputting FP32 samples via the old MME API (waveOutXxx functions). The problem I've bumped into is that if I provide a buffer length that does not evenly divide the ...
0
votes
2answers
21 views

Play and pause sound with SpaceBar

I'm trying to play and pause a sound with JS. The sound is already playing, but i want to be able to pause and unpause it. case 32: //SpaceBar if (play){ $("#leson").pause(); play = false; ...
1
vote
0answers
29 views

Play .mp4 using python and check if/while it is still playing

I'm using Windows 64 bit. I have tried several libraries. Couldnt' get pygame to work, couldnt' get pymedia to install on python 2.7. Eventually got mplayer for python. Installed it ...
0
votes
0answers
20 views

Adding audio data from file to an AudioGroup to send over RTP

I am trying to stream audio data read from a file to a remote client over RTP. I have no clue how to add audio data from a file(mp3) to an AudioStream object. I can hear microphone data clearly, but ...
-3
votes
0answers
24 views

Add sounds in xcode projects [closed]

I want to create a application in which the sound is included. I am very new to xcode and i bought a mac just before a week. I don't have any sort of basic idea. I searched for internet. It doesn't ...
0
votes
0answers
8 views

Cocoa: How to get a music file's Disc Number tag?

Right now i can get these tags from an audio file: #define kAFInfoDictionary_Artist "artist" #define kAFInfoDictionary_Album "album" #define ...
2
votes
1answer
63 views

C++ Upsampling raw audio from 22050 to 48000 Hz

I have raw audio data in the form of vector<short> m_shorts; The audio data is 22050 kHz mono. Does anybody have any idea how I can (without any third party library) quickly convert the ...
0
votes
1answer
33 views

Issue with looping an audio file

How can i get the value of repetitions completed from mp.setLooping(true). I can use OnCompletionListener to get number of repetitions, but it produces 1sec delay between looping, which is annoying in ...
0
votes
0answers
24 views

Make an audio player that plays audio files [closed]

I want to make an android app that will have almost more than 2000 audio files. Of course, I can't copy to assets folder and play but I don't know any other easier way on how to get started. Can ...
0
votes
0answers
50 views

Video has no audio when played using HTML5

I have a media site where I can upload video files. After upload, they are converted to MP4 using ffmpeg and then ffmpeg2theora converts that to OGV. I have recently discovered that some videos that ...
1
vote
1answer
21 views

Playing just one sound android

i'm developing a little quizz app and i would like to play sound depending on if the user answers the question correctly or not. I've got many sound files in "assets/". What I would like to do is to ...
1
vote
0answers
32 views

Pygame music queue

So this is a question that may not have a nice answer. Basically I would like to know if it is possible to use the queue in pygame.mixer.music to play multiple tracks immediately one after another. ...
0
votes
0answers
29 views

algorithm for audio and video separation using matlab

sir i want to design an algorithm which can take a movie clip or a video signal having both audio and video and extract the audio and video part separate using the help of filters, matlab and signal ...
1
vote
1answer
39 views

PHP - how to extract parts of mp3 with volume higher than X?

I have a MP3 file that contains some sounds and some silent parts. My question is - is there any way I can extract the not-silent (or with volume or something higher than X) parts and put them in ...
0
votes
0answers
27 views

Web Audio API Timeshifting? (Preserve Pitch)

I'm trying to slow-down some audio while preserving the pitch using the Web Audio API. Chrome and Safari both support playbackRate for without changing pitch, but I can't find it for Web Audio API. ...
0
votes
1answer
35 views

ios - Recording Audio After VIdeo play

I can't record audio after playing a video, if I record before playing the video no problem but then I have to close the application to record again. I can't record audio after playing a video, if I ...
1
vote
2answers
45 views

How to give path of the music file that is inside the Java package?

I created a package named sounds in my Java project and my sound is in this package. However, I get an java.io.FileNotFoundException error with this code. So how can I give the path of this file? ...
0
votes
1answer
65 views

HTML5 Canvas mouse over event on canvas

I am loading an image to an canvas element + playing a soundfile I want to play the sound again when moving the mouse over the image on the canvas. I know how to do that adding a button under the ...
-3
votes
0answers
20 views

Android Eclipse not sure what it would be called but wanting to do something like this for my soundboard [closed]

I'm not sure what it would be called, but I want to do something like the picture below for my soundboard rather than all one scrollable screen as it is at moment. Can anyone help with a solution or ...
1
vote
0answers
56 views

VB.NET/ASP.NET - Getting duration of MP3 file on upload

I'm trying to upload an MP3 file to a site and finding the duration of the audio at the same time. I'm quite new to ASP and VB.NET, but I've managed to get the file to upload to the server using a ...
1
vote
0answers
15 views

How to transmit sound from Synthesizer to sequencer

Okay, this is my first question here so go easy on me guys. I'm trying to generate sound on the fly using the noteOn in the MidiChannel class with the internal Java Synthesizer. It produces sound ...
0
votes
0answers
35 views

Recording sound in the background - no sound

I have a problem writing an application to record sound in the background. The purpose of the application will record outgoing phone calls. The application has two text fields - the name of the ...
0
votes
1answer
20 views

FLASH - Loading Sound from Different Host/Domain

I have made an Audio Player in Flash that is embedded in JSP. which sets Param when JSP is loaded which Plays mp3 file that is availabe on my server, i.e. I passes path like /dirOnMyServer/sample.mp3 ...
0
votes
1answer
42 views

How to stop one audio player from playing when I click another - javascript

I am creatinga page specifically for an ipad. I have 12 audio players on a page. They are all working fine but if you click a second player the first one continues to play. I've seen this question ...
1
vote
1answer
34 views

Audio - Byte to Int and back in java

I'm playing around with looping a sound snippet at succesively faster speeds, for the fun of it, and have stumbled upon this question, which solves it nicely, I guess. It does get kind of buggy when ...
0
votes
0answers
27 views

Dynamically created HTML5 audio is not playable in some browsers?

I am creating an audio element in JavaScript and then appending it to my document. I am controlling it through JavaScript as well. It works fine in Firefox, Chrome, and Opera but not on IE and Safari. ...
2
votes
0answers
43 views

Streaming audio over a bluetooth socket

I need to stream audio over Windows sockets to a bluetooth headset. I am able to make socket connection to the Bluetooth headset using RFCOMM and A2DP / Headset profile / Hands-free profile. My ...
-3
votes
0answers
23 views

best online audio file tag information provider/update like last fm api [closed]

I want a api like last fm for audio files tags update and coverart download for desktop application using fingerprinting. I am making commercial desktop application so need some api which support it. ...

1 2 3 4 5 213