Saturday, February 1, 2014

HTML 5 - uploading mp3 to blogger

Ever since flash player plug-in were taken away from Android and all smart devices, all my music were not able to be played unless if you're using a computer. All my graphics and musics that I've produced to a swf files were seen as nothing. The technology now is using html 5. HTML5 was developed with multimedia in mind with the new <audio> tag that allows you to play media without a flash player.

I have learn a simple coding through some pages to upload my songs;



<audio autoplay="autoplay" controls="controls">
  <source src="YOUR AUDIO SOURCE" type="audio/mpeg" />
</audio>



thanks to;
http://yourblogslution.blogspot.com/2013/06/add-mp3-files-to-blogger.html
http://www.htmlgoodies.com/primers/html/article.php/3920991

Update :

<audio autoplay="autoplay" controls="controls" oncontextmenu="return false">
  <source src="YOUR AUDIO SOURCE" type="audio/mpeg"></source>
</audio>