Reputation: 1805
While playing back HTML5 Audio the controls integrate with the system's music player (for example when locking the device). However, the title of the audio is shown as the URL where it is stored.
Is there any way to set the title so that it shows for example the name and artist?
I cannot find any information on this. Neither on Apple's developer page nor elsewhere.
Upvotes: 2
Views: 1149
Reputation: 2010
You can try with this:
<audio src="" type="" controls title="Your title"></audio>
Upvotes: 4