I want to reproduce audio streams with the <audio>
tag and display the name of the current track. To that end I have been using the audio's audioTracks property.
I know that this feature is experimental and I went out of my way to enable it.
In Epiphany ( Gnome Web ) the feature works flawlessly ( without even needing to enable it first ), but in Chrome and Firefox the AudioTrack's label property is always empty.
Is Chrome's and Firefox's implementation broken? Is there some other api I may use to retrieve the track's name?
How I am retrieving it:
document.getElementById('audio').audioTracks[0].label;