✅ – BIOLOGY SCIENCE – 12-59 Aug 9
is it possible to play an audio file which is in a format other than mp3/ogg/wav in a html file ?
28 Replies
It should be possible - browsers support multiple audio formats
https://developer.mozilla.org/en-US/docs/Web/Media/Formats/Containers#index_of_media_container_formats_file_types
i have tried .flac and it didn't work
but .mp3 works fine tho
also im using electron, so it should be chromium right ?
FLAC should work https://caniuse.com/?search=flac
Yes
Maybe you gave incorrect path? Is there any error?
nope, it just doesn't start
so basically i have something like this
- choose a file location
- start to play the audio file when it has loaded
and i have a button to pause and play the audio
so when i choose a .flac file, the audio loads, and the code below it executes as well and no errors too, but the audio just wont play
also if i hit the pause button to pause the audio, i would get an error saying,
The play() request was interrupted by a call to pause()
@ScriptyChris ^Have you checked if that file is played correctly on like plain Chrome or Firefox browser (outside Electron)? So you knew that it may be Electron (or it's Chromium) fault?
chrome and firefox are also made by chromium right ?
anyways ill check on it
No. Chrome is based on Chromium and Firefox is completely separate browser
Google has Chromium, which is an open-sourced browser project and many browsers are based on it (like Brave, Opera) + they have Chrome, which is also based on Chromium, but is closed source browser
Mozilla has Firefox browser, which is not related to Chrome/Chromium
error in chrome
DOMException: The element has no supported sources.
error in firefox
DOMException: The media resource indicated by the src attribute or assigned media provider object was not suitable.
code
i get the errors when i use a local host with node to boot up the site
but when i open the html normally
- in firefox
the audio plays and playing
is printed in the console
- in chrome
the audio doesn't play and playing
is printed in the consoleCheck what content-type is given to that
.flac
file when you load page "normally" and how when you load it via HTTP. I assume that your server doesn't set correct content-type
Check for response headers for that audio file request
https://developer.chrome.com/docs/devtools/network/reference/#headers
You can also try using <source>
element
i did give the content type as
text/html
while i was doing in the node server
this was the code to the local host btw const http = require('http');
No,
text/html
is for text as html and you are sending audio as flac - these are different things
I mean, you should have set different content-type for the audio stuff,im sending the html file right ?? .. im sorry i not sure abt the local server and stuff
HTML is the page, but that HTML contains
<audio>
element, which requests for audio file, which is another request and needs another content-type
Check for Network tabyes yes
it says audio/flac for the audio
how do i do that ?
just change the content type ?
in here ?
nothing loads up now 😢
Any logs in Node console?
Add
console.log('req.url:', req.url)
before first if
. Restart server, reload page and show output of Node's consolei have this code rn, it loads atleast
and the error is
GET http://localhost:3000/Shape%20Of%20You.flac net::ERR_INVALID_CHUNKED_ENCODING 200 (OK)
Ok, so change
.endsWith('html')
to .endsWith('/')
still doesn't play
current code
In neither browser?
oh firefox works
SO maybe Chrome doesn't support flac 🤔
so does electron ?
Probably yes. But i don't have much experience with it, so you might Google Electron issues with Flac or ask at #general-tech
okay sure, thanks for your help
ill prolly ask this in the electron server as well
👍
This question has an answer! Thank you for helping 😄
If you have a followup question, you may want to reply to this thread so other members know they're related. https://discord.com/channels/102860784329052160/565213527673929729/1006547284298834020
This thread hasn’t had any activity in 12 hours, so it’s now locked.
Threads are closed automatically after 12 hours. If you have a followup question, you may want to reply to this thread so other members know they're related. https://discord.com/channels/102860784329052160/565213527673929729/1006547284298834020