php - How to play multiple sound files on one Web Page? (on click best practice) - Stack Overflow

I have a page where there is a list of vocabularies. I have a TTS for each vocabulary.The current appr

I have a page where there is a list of vocabularies. I have a TTS for each vocabulary. The current approach that I am using is to include an mp3 flash player for each vocabulary. This creates delay to load all the flash because there can be more than 10 vocabularies in one page.

another problem is that the mp3 of the tts file has to be created on the page load, this also gives delay to the loading time.

Some alternative approach in my mind is to:

  • include only one flash player.
  • load and play the file on click to reduce page load for tts file creation.

So my question is,

Is there any javascript or jquery plugin that can do either of the 2 other approaches?

thank you

I have a page where there is a list of vocabularies. I have a TTS for each vocabulary. The current approach that I am using is to include an mp3 flash player for each vocabulary. This creates delay to load all the flash because there can be more than 10 vocabularies in one page.

another problem is that the mp3 of the tts file has to be created on the page load, this also gives delay to the loading time.

Some alternative approach in my mind is to:

  • include only one flash player.
  • load and play the file on click to reduce page load for tts file creation.

So my question is,

Is there any javascript or jquery plugin that can do either of the 2 other approaches?

thank you

Share Improve this question edited Jan 1, 2012 at 21:18 Charles 51.5k13 gold badges106 silver badges144 bronze badges asked Aug 26, 2011 at 0:05 bbnnbbnn 3,61210 gold badges51 silver badges70 bronze badges 1
  • Have you already considered SoundManager ? it's a Javascript to Flash API which is simple to use. – aziz punjani Commented Aug 26, 2011 at 14:17
Add a ment  | 

1 Answer 1

Reset to default 5

You can use the <audio> tag (HTML5) and you can control it when to load the files.
It is supported in most of the browsers like Google Chrome, Firefox, Opera...

It has two ways to set the link:

Way 1

<audio src="YOUR FILE LINK HERE">
    <embed> <!--FALLBACK HERE (FLASH PLAYER FOR IE)--> </embed>
</audio>

Way 2

<audio>
    <source src="YOUR FILE LINK HERE (MP3)" type="audio/ogg" />
    <source src="YOUR OTHER FILE LINK HERE (OGG)" type="audio/mp3" />
    <embed> <!--FALLBACK HERE (FLASH PLAYER FOR IE)--> </embed>
</audio>

Attributes

  • Put controls="controls" if you want it to display the audio player.
  • Put loop="loop" if you want it to loop the audio.
  • Put autoplay="autoplay" if you want it to play the audio by itself.
  • Put preload="preload" if you want it to preload it.

JavaScript Controlling

You can also control it using JavaScript.

To play it: document.getElementById("YOUR AUDIO TAG").play()
To pause it: document.getElementById("YOUR AUDIO TAG").pause()


Read more

  • http://w3schools./html5/tag_audio.asp

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745202907a4616432.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信