Sunday, October 16, 2016
How to add a music player in Blogspot
How to add a music player in Blogspot
In preparation for explaining how to podcast with Blogger, this tutorial explains how to easily add an HTML5 mp3/audio player to your blog posts or layout. No JavaScript, Flash or plugins are required, and with a fallback for older browsers which dont support the player.
Ive even created a simple form to generate basic tags for you! Adding music to your Blogspot site has never been so easy!
Basic HTML5 Audio Tags Explained
TheIt is supported in Internet Explorer 9, Firefox, Opera, Chrome, and Safari, and can be set to play the linked audio file automatically (autoplay) or loop if required.
Heres a basic example using the
The audio player above is produced using the following HTML code:
If you cannot see the audio controls, your browser does not support the audio element
In the example above, all code related to the audio player is wrapped in controls in the audio element, a simple player is displayed, enabling the user to begin playback when (or if) they want, and to adjust the volume.
Any text between the audio tags (which is not enclosed in the tags) is displayed in browsers which do not support the audio element (IE8 and below).
If you would like the audio to begin playback as soon as it is ready, you can enable autoplay as in the following example:
If you cannot see the audio controls, your browser does not support the audio element
By retaining the controls attribute, you give visitors the option to stop or resume audio playback if they choose.
To loop audio (specify that the audio will start over again, every time it is finished), include the loop element in the
If you cannot see the audio controls, your browser does not support the audio element
Hosting files for your audio player
Blogger does not allow us to upload or host audio files, so in order to add an audio player you will need to find a host for your mp3/ogg files.While Blogger Help suggests hosting providers which offer free and premium packages, I anticipate most of you would prefer a simple free solution, so here are a few suggestions:
- Link to public domain audio files which allow hotlinking, such as this collection of classical music on Wikipedia
- Upload files to your Public folder on Dropbox
- Host files on Google sites
Once you have uploaded your audio files, make a note of the direct link to the file which youll need to add in the code for your audio player.
How to add a music player to a blog post
While using the compose tab, write the main content of your post as normal, then place your cursor where you would like the audio player to appear. Then use one of the example code snippets above (substituting the direct link to your audio file) or use the code generator below and paste into your blog post.
Be sure to check the Interpret Typed HTML option on the post Options in the right side of the post editor, otherwise the raw code for your player will be displayed instead!
Alternatively, switch to the HTML mode when composing a post and paste your code as HTML.
Alternatively, switch to the HTML mode when composing a post and paste your code as HTML.
Available link for download