I have been asked to use aif audio files on a website. I am using jplayer.
- Would there be a noticeable difference using .aif?
- Which browsers support .aif?
- Would you advise using .aif for the web?
- Would it mean I would need 3 versions of each track to cover all Browsers/OS?
Like so:
<audio controls>
<source src="horse.ogg" type="audio/ogg">
<source src="horse.mp3" type="audio/mpeg">
<source src="horse.aif" type="audio/aif">
Your browser does not support the audio element.
</audio>
Thanks :)