0
votes
0answers
5 views

Microphone activity level of WebRTC MediaStream

I would like some advice on how best to get the microphone activity level of an audio MediaStreamTrack javascript object in Chrome/Canary. The MediaStreamTrack object is an audio track of the ...
0
votes
1answer
39 views

Creating simple audio player using the <audio> tag and Javascript / jQuery

This is my first question on here, and I'm new to Javascript and jQuery. I've been searching through the web to learn the basics for creating my own functions to the HTML5 tag. I can't get it to ...
0
votes
1answer
25 views

Random sound from array Javascript

I am trying to play a random sound effect once the button is click. Basically, I created an array of sound as shown below. My goal is, when the users click the button, I want to pick a random sound ...
3
votes
0answers
41 views

HTML5 Audio Mixing

I would like to make a web application where people can add recorded sounds and samples to a timeline. I want it to output 1 soundfile (approximately 3min long) which will be send to the server. Now ...
0
votes
1answer
20 views

Flash audio mp3 player with javascript api wanted for playing online radios

I am working on HTML5 website, and i need a player for playing online radio streams. I need to play mp3 streams - and i found that mp3 is not supported by mozilla. So, i decided to use a flash ...
0
votes
0answers
14 views

<audio> getUserMedia not producing any sound from microphone

I have this code which accesses the microphone and reproduces the sound created from my microphone to my speakers. But it seems that it's not working. It accesses the microphone, and a red circle ...
0
votes
1answer
35 views

Universal volume control for whole website?

my website has several audio players on one page. Mostly these audio players would depend on an html5 <audio> element, however for some sites there is an flash / <object> fallback. I was ...
0
votes
1answer
33 views
+50

Play a loaded file in javascript

I'm trying to load a file from the user and want to play it with javascript. The file is loaded correctly, and I can access it seeing the name, the type and so on, with the FileList API. What I ...
0
votes
1answer
43 views

Javascript Web Audio API AnalyserNode Not Working

The code is supposed to stream any url and provide a visualization of the audio. Unfortunately, the visualizer is not working. The visualization relies on the data from the AnalyzerNode, which is ...
0
votes
0answers
24 views

detecting support for mime types

Which of these javascript techniques would result in the most successful audio plays: a) set mime type and source of the audio file based on the browser and its published documentation and ...
0
votes
0answers
22 views

IE8 not responding to flash audio javascript api

I've been building an audio option for components on a webpage. I have the HTML% audio working perfect and have downloaded a flash fallback for ie8 (http://www.alsacreations.fr/dewplayer-en.html). ...
-4
votes
2answers
40 views

Regex to match audio files

I have multiple files coming from the database to the front-end. To style them properly I would like to extract videos and audio files into a separate group. If anyone know how to determine which ...
6
votes
1answer
62 views
+50

Which jPlayer event designates the ability to start playing?

I have a basic jPlayer set up which plays a (150MB) audio file from AWS S3. My setup basically looks like this. jQuery(function() { var $player, jPlayerDefaults, progressCount; $player = ...
-1
votes
3answers
50 views

unable to clear the setInterval

Can someone help me to clear the SetInterval in below code. I already tired window.clearInterval(intervalListener) its not working. <audio id="audio1" controls="controls" ...
-1
votes
0answers
17 views

How to disable the controls of audio tag in HTML5 from clicking on it?

I want to disable the controls of audio tag so that no one can click on it or can adjust the progress bar. Doing controls="false" is hiding the controls. I want my controls to be disabled without ...
1
vote
1answer
33 views

Dynamic sound file with .play()

Code I am creating is a function which with the function it should .play() it... here is the code function playSound() { document.getElementById('newMessage').play(); } var sound = ...
0
votes
3answers
50 views

Page moves when I click in image

I have a page with an image that would play a sound in clicking on it. But when i click my page goes down if I'm at the top and up if I'm at the bottom of the page, for whatever reason. I tried all ...
0
votes
1answer
22 views

Stop play sound when not hovering the picture

I want the sound to stop play when you are not active hovering the picture. What is the easiest way to do this? Thanks in advance! imgarr[i].onmouseout=function(){ ...
0
votes
0answers
29 views

Muting audio source from within an html iframe possibly using JS

I am working on a gallery page with quite a few external HTML pages embedded using iframe, however, some of these external pages have audio embedded into them which I would like to mute. Here is a ...
0
votes
1answer
21 views

onfinish fires early when using SoundManager2

I'm trying to fire a function when my sound in SoundManager2 is finished playing, using onfinished. My code is as follows: function createSound(id, path) { mySound = soundManager.createSound({ ...
0
votes
1answer
44 views

MouseOver sound effect, a Better way than this

I need a sound on a mouse over event, I have this way but its problem comes from a delay between the mouse over and the sound playing, which is due (I supposed) the embed sound deal on the code. I ...
3
votes
1answer
51 views

Custom progressive audio streaming in browser

Say i like to create my very own progressive streaming mechanicsm in Javascript because i'm finding the browser's built in streaming mechanism not fault-tollerant enough or i like to implement my own ...
0
votes
0answers
24 views

Multiple Instance of HTML5 audio - I need only one to play at any time

I am creating a page specifically for an ipad. I have 12 audio players on a page. I need only one audio player to play at a time. The code below will work but only after you have started and stopped ...
0
votes
0answers
19 views

SoundManager2 and mobile audio playing on click events

I am currently working on a mobile website (in particular, for a part of an iOS app that I am developing) which has a section that is supposed to play media. Basically, there is some music on my ...
0
votes
0answers
30 views

Why CreateJS code not working in firefox?

Have exported my flash cs6 game using createjs using "toolkit for createjs". All sounds exported to directory successfully. Following code calls sounds var manifest = [ {src:"sounds/cutter.wav", ...
1
vote
1answer
52 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 + ...
1
vote
1answer
37 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
2answers
23 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; ...
0
votes
0answers
29 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
47 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
0answers
30 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. ...
0
votes
0answers
63 views

Javascript in Firefox Loads Entire HTML5 Audio before Playing

I've noticed that Firefox is loading my entire MP3 file, that's embedded and played using a jQuery HTML5 audio player. So far, that's the only browser I've caught doing it. Is there something I can ...
0
votes
1answer
30 views

Hang on Page Load: Too much Javascript?

I've finally fixed some of my Javascript issues, and managed to use only one library now (it was crazy before). There's a little bit of a hang in the page load, so I was going to see if you guys ...
0
votes
1answer
32 views

HTML 5 audio: playing one file after the other, and looping the second one

I'm sure this is possible some way or another, but basically I want to have one sound file play once, and then another sound file play after it but will loop instead of just play once, how would I go ...
4
votes
3answers
212 views

High Quality Audio Recording in Web Browser

One line version: What open source software (WAMI-Recorder)/web browser (via getUserMedia) will give me the best quality audio recordings? High quality would be defined as (44.1 or 48 sample rate) ...
-1
votes
0answers
46 views

Can I mix two audio files to one in browser? [closed]

I need to mix two audio files into one file in browser. Is there some library to do it? Please, help me with this question.
2
votes
1answer
53 views

chrome audio analyzer breaking on audio switch

I'm creating an audio visualizer with webgl, and have been integrating soundcloud tracks into it. I want to no be able to switch tracks, but I can either get my visualizer to work and the audio to ...
0
votes
2answers
62 views

Play BIOS sounds (with PC speaker) in Java or Javascript

Is it possible to play basic BIOS sounds with Javascript or Java? I need sounds that can be played on PC computers without Sound Card. Every PC has built-in PC speaker that can be useful in this case. ...
0
votes
1answer
55 views

How to embed audio

I'm trying to design a surveymonkey survey that has some audio embedded in it. As in people taking the survey can listen to an audio clip, and answer questions about it. How to best get it done, I'm ...
0
votes
1answer
33 views

How to reproduce sound from binary data identical to the original

I get binary data like -0.00005645725104856084 and 0.00000906579771242124 (-1 to 1 range) using the method available from here: https://gist.github.com/maxogden/3786030 Then I send them to a server ...
1
vote
1answer
104 views

audio still playing after jquery mobile page navigation

I will preface by apologizing if this is indeed asked and answered somewhere else...I have been rewording and googling for days for a solution to this problem with no luck. I took on the code writing ...
0
votes
0answers
34 views

Wami audio recorder, callback functions not called

I am using Wami Recorder https://code.google.com/p/wami-recorder/ The problem is that the callback function don't execute when the playing of audio get finished. Here is the code that I am using : ...
0
votes
0answers
31 views

firefox audio only play parts

We use ruby audio merging method to merge audios and delivery to website, for example 1.mp3 2.mp3 3.mp3 and convert into a 1-2-3.mp3. The audio works fine for most browsers, apart from firefox ...
0
votes
0answers
61 views

Play a sound with onclick function (Not working!)

I'm trying to play a sound when a button is pressed. I have used this function in my javascript file function playSound(soundfile) { alert('hello'); ...
2
votes
1answer
54 views

Node.js stop playing audio

var fs = require('fs'); var lame = require('lame'); var Speaker = require('speaker'); var $stream = fs.createReadStream('sounds/test.mp3').pipe(new lame.Decoder).pipe(new Speaker); ...
0
votes
0answers
21 views

Stop ding sound when enter is pressed to submit a form

I have a web form that does not have a submit button. Instead, when you press enter on the password, it submits the form: onkeyup="if( event.keyCode == 13 ){ document.formName.submit(); }" It ...
0
votes
1answer
41 views

play wave file for all browser and mobile web browser javascript

How to play wave file for all browser and mobile browser by javascript or other ways? I need to play alert.wave or mp3 file but <audio> and <embed> not working on mobile web browser. ...
0
votes
3answers
32 views

Using Jquery's .closest to access audio element not working?

I used .each() and before() to automatically insert an audio element with class 'pipe1' for a hover effect before every element of class 'product_name' because an individual audio element cannot ...
0
votes
1answer
43 views

html5 audio crashes on seeking

I have a ASP.NET Application and i want to use the tag to play music. In the codebehind i write this element <audio controls preload src='PATH/TO/FILE'></audio> into a literal. The ...
0
votes
2answers
63 views

Select multiple divs but play different audio with jQuery

I'm currently trying to create a soundboard just to learn some more advanced jQuery techniques. Currently, each div is associated to a jQuery function that represents a sound. When the div is ...

1 2 3 4 5 14