Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

play mp3 file using jquery

How can i play an mp3 file using jquery in website.I m using servlets or http to play a song.Also how can i calculate total time of song played.

Regards Angelina

like image 963
angelina Avatar asked Aug 24 '26 14:08

angelina


2 Answers

Try something like jPlayer.

like image 75
Nikola Kotur Avatar answered Aug 26 '26 05:08

Nikola Kotur


You can add an element with your sound to the page:

var sound = $('<embed autoplay="true" height="0" width="0" />');
sound.attr('src', urlOfMyMp3);
$('body').append(sound);

Source: Embed MP3 in website

like image 29
Sjoerd Avatar answered Aug 26 '26 03:08

Sjoerd