HTML5 has tons of new stuff that are exciting and very interesting. It arrived with features that would replace the need of Flash in browsers. Since the features that were available in Flash is coming into the native JavaScript, soon we won’t have to update our Flash player plugin and depend on Adobe for new awesome features. More integration with hardware technologies to the Web is the main important thing. We can now access the audio & video hardware of the user’s system efficiently with less code.... [READ MORE]
Posts marked with "Audio" in tags
Making Text To Speech In PHP With Google Translate
Google provides text to speech feature on their translator product which is an awesome feature. If you are creating a web app of your own and need a human speaking voice for your app, you will get lost. Google have a URL for creating these audio files when given a text. I will tell you how to implement this text to speech feature on your PHP site without directly compromising the Google URL.... [READ MORE]
Stop playback in HTML5 audio using Javascript
You may wanted to stop playback of an audio playing via audio HTML5 tag. Here is the code : document.getElementById(‘audio’).currentTime = 0;//By ID document.getElementsByTagName(‘audio’).currentTime = 0;//By Tag It’s that simple. Just use currentTime = 0.... [READ MORE]