WebM file size

Posted May 24th, 2010 in Blog by admin

HTML5 audio with javascript

Posted May 17th, 2010 in Blog by admin

Create audioElement

var audioElement = document.createElement(‘audio’);

want to use with current audio tag

var audioElement = document.getElementById(‘myaudio’);

Play

audioElement.play();

Pause

audioElement.stop();

Duration (show with seconds)

audioElement.duration

Current Time (seconds)

audioElement.currentTime

Go to 35 secons

audioElement.currentTime = 35;

Change music

audioElement.setAttribute(‘src’, ‘music/Track01.mp3′);

audioElement.load();

Ogg for firefox and opera. Mp3 for safari and chrome.

html audio with jquery UI

Posted May 15th, 2010 in Blog by admin

I need to implement , next , previous and change to another music when music has been stop.

Source
http://github.com/saturngod/html5audio-jquery_ui

Demo
http://www.saturngod.net/project/html5audio/

HTML 5 Demo

Posted July 19th, 2009 in Blog by admin

Today I found a new website. That it HTML5 Demo site. It’s so nice site. We can see drag & drop, Canvas, postMessage,etc.. We need to uprage my knowledge because HTML 5 is so nice and it will be future of the web development and design.