H5 wants to play audio on the page, but the format is aac, is there a way to transcode it?

H5 wants to play audio on the page, but the format is aac. Is there any way to transcode it?

Nov.02,2021

https://github.com/audiocogs/.


has this problem been solved?


<audio id="audio" :controls="controls" >
    <source 
    :src="url"
    type="audio/mpeg">
</audio>


url
let audio = document.getElementById("audio");
audio.play();


H5AAC
Menu