1

I have some .mp3 files of conversations with really bad audio quality that I am displaying on a web page using JavaScript. I was wondering if there was an elegant solution to display these mp3s with subtitles.

I came across this jQuery plugin, which does something similar but using the <video> element.

Sarre
  • 21
  • 1
  • 2

2 Answers2

1

Yes, you can use JW Player. It uses a Timed Text XML file to sync captions. It's free for non-commercial use and reasonably priced for commercial use.

Hugh Brackett
  • 2,706
  • 14
  • 21
-1

Yes, you can present mp3 with its subtitles. The problem is.

  1. Save the subtitles in the .vvt file format.
  2. Create a subtitle box on your web page and
  3. write some javascript to show the subtitle as player plays.

And here is an example with an excerpt from the song Hot Stuff:

http://ndfbr.org/danh/music/mp3sub/testmp3.htm

Vivek Jain
  • 2,730
  • 6
  • 12
  • 27