3,606 questions
0 votes
0 answers
50 views
Audio captions are not displaying despite switching to SRT
I've been attempting to create captions for my audio. After a lot of searching, it seems srt is best for audio transcripts. After trying that and WebVTT, it's still not showing up. I'm not sure what ...
3 votes
2 answers
127 views
Is there a way to target a pseudo-element in CSS by its class?
I am looking to construct CSS to target this element... <input type="button" pseudo="-webkit-media-controls-play-button" aria-label="play" ...
0 votes
2 answers
56 views
React Music Player – audioRef.play() not triggered when track changes
I’m building a simple music player in React that uses the HTMLAudioElement via audioRef. I expect the track to auto-play whenever I change currentTrack, but playback doesn’t start (though the UI ...
0 votes
1 answer
79 views
How to enable autoplay for dynamically added audio tag
I am working on live class. Whenever a user unmute mic all the participants receive the audio stream. But audio can't play because of autoplay policy. It works well on desktop browser but not on iOS ...
0 votes
0 answers
38 views
Safari cannot set playbackRate of audio source when work with MediaElementAudioSourceNode
I write a frontend tool to enhance the audio quality using WASM, but the speed control not work in safari only, Chrome and Firefox is ok. here is my mainly code // main.ts // Interfaces and Wasm ...
-1 votes
1 answer
226 views
Why does MediaRecorder.ondataavailable return empty blobs (event.data.size === 0) on some devices?
I’m building a web application that captures microphone audio using MediaRecorder and sends it to the backend for processing. Everything works fine on most devices (desktop and mobile), but on some ...
0 votes
0 answers
46 views
how to play audio in an html5 page when opened in android facebook webview?
I have an html5 application that uses three.js library for some 3d wireframe graphics and a background music (mp3). The page works perfectly in chrome. But If I send to to someone on facebook and they ...
0 votes
2 answers
69 views
How do I make table elements evenly spaced proportionate to the screen width?
I use InPage tabs for my website so I can't use "display: grid;" etc. Or it will show where it isn't supposed to show. I am trying to evenly space each element in the table can someone ...
0 votes
1 answer
42 views
HTML5 Twitching Audio Progress Bar in Safari/Orion, Smooth in Chrome/Firefox
Problem: About half a second after audio playback starts (in Safari and Orion), the progress bar "twitches", jumping back towards the start momentarily before continuing to progress. The ...
0 votes
1 answer
84 views
Why won't my audio object play? (Vanilla Javascript)
I'm trying to learn about the web audio API. I have a simple "Recording.m4a" file in my project directory, and I am attempting to load this file into an audio object and then play it on the ...
0 votes
0 answers
93 views
How to wait for can-play event for playing media
I have a global <MediaPlayer /> in my footer (AppFooter), and songs are played from individual song items in a list. When I click a play button in the list item, I sometimes get this runtime ...
0 votes
0 answers
31 views
Flask website not displaying HTML audio player
I'm creating a phishing training website with Python Flask and HTML and trying to display an audio file on one of my slides. The audio file is of correct format, I've tested by visiting the URL for ...
1 vote
1 answer
53 views
Audio doesn’t stop playing using <audio> tag in HTML5
I have this HTML code right now that automatically plays an audio after a set period of time: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"&...
1 vote
1 answer
80 views
Get audio from html5 video tag with muted
I've tried mediaStream Recording API and audioWorkletProcessor API but they both have a issue. If the video is muted by users, they will get nothing. I want to get the audio data no matter the video ...
0 votes
0 answers
43 views
Script in html/js for audio fade and crossfade on iPhone
I created an html file with a javascprit script that allows you to do fade operations between two audio files. The files are played in two players, Player1 and Player2 respectively. On PC/Mac it works ...