FAQ
HTML5 (40)
Any upcoming updates that will make this player compatible with WordPress 3.4?
I have tested on WordPress 3.4.1.
Its working fine for me
http://blog.svnlabs.com/work/wordpress-3-4-1/
If you are checking here http://wordpress.org/extend/plugins/html5-mp3-player-with-playlist/installation/
Free plugin is old .. new one is compatible with WordPress 3.4.1.
http://blog.svnlabs.com/work/wordpress-3-4-1/
html5 control support Unicode Song file name or not?
Please try unicode mp3 links in XML file
Like:
http://server.com/mp3/បើសិនអូនជាសង្សារបង.mp3 (MP3 from any server or domain)
or
http://ip-address/audio/បើសិនអូនជាសង្សារបង.mp3 (MP3 from any server using IP Address)
How to remove: Twitter, Facebook and other links from the player?
You can find block of code in core files in html5 folder
- html5full.php
- html5small.php
- html5big.php
You need to remove …..
<a href=”https://twitter.com/intent/tweet?status=<?php echo “HTML5 MP3 Player with Playlist “; ?><?php echo urlencode(‘http://html5.svnlabs.com’); ?>&url=<?php echo urlencode(‘http://html5.svnlabs.com’); ?>” target=”_blank” title=”Twitter”><img src=”twitter.png” border=”0″ width=”20″ /></a><a href=”https://www.facebook.com/sharer/sharer.php?u=<?php echo urlencode(‘http://html5.svnlabs.com’); ?>” target=”_blank” title=”Facebook”><img src=”facebook.png” border=”0″ width=”20″ /></a><a href=”http://html5.svnlabs.com” target=”_blank” title=”HTML5 MP3 Player with Playlist”><img src=”link-icon.png” border=”0″ width=”20″ /></a>
OR
<a href=”http://html5.svnlabs.com” target=”_blank” title=”HTML5 MP3 Player with Playlist”><img src=”link-icon.png” border=”0″ width=”20″ /></a>
Which PHP function needed to run this plugin on own server?
- Remote file read file_get_contents()
- XML functions simplexml_load_string()
- File functions fopen(), fread(), fclose()
- php mysql function
Problem downloading MP3 files using HMTL5 MP3 Plugin?
Instructions:
To Listen: Click on the Chapel you would like to listen then click the Play button. The audio files are large and depending on your connection may take a moment to load. Press pause then play if this happens.
To Download: Click the Download icon. It will popup a new web browser window. From there, choose File > Save As. Note that not all browsers may have this option.
How to make player code validate on W3C?
W3C will throw error for iframes, so you need to use object tags in place of iframe tags.
<?php
if($matches[1][0]==”full”)
{
$replace = ‘<object data=”http://html5.svnlabs.com/html5full.php?id=’.$matches[2][0].’&bg=f6f6f6″ type=”text/html” width=”606″ height=”230″ style=”border: medium none; background-color:#f6f6f6; overflow:hidden; width: 606px; height: 230px;”></object>’;
}
else if($matches[1][0]==”big”)
{
$replace = ‘<object data=”http://html5.svnlabs.com/html5big.php?id=’.$matches[2][0].’&bg=f6f6f6″ type=”text/html” width=”386″ height=”434″ style=”border: medium none; background-color:#f6f6f6; overflow:hidden; width: 386px; height: 434px;”></object>’;
}
else
{
$replace = ‘<object data=”http://html5.svnlabs.com/html5small.php?id=’.$matches[2][0].’&bg=f6f6f6″ type=”text/html” width=”386″ height=”230″ style=”border: medium none; background-color:#f6f6f6; overflow:hidden; width: 386px; height: 230px;”></object>’;
}
if($matches[1][0]==”full”)
{
$replace = ‘<iframe src=”http://html5.svnlabs.com/html5full.php?id=’.$matches[2][0].’” frameborder=”0″ marginheight=”0″ marginwidth=”0″ scrolling=”no” width=”566″ height=”207″></iframe>’;
}
else if($matches[1][0]==”big”)
{
$replace = ‘<iframe src=”http://html5.svnlabs.com/html5big.php?id=’.$matches[2][0].’” frameborder=”0″ marginheight=”0″ marginwidth=”0″ scrolling=”no” width=”347″ height=”414″></iframe>’;
}
else
{
$replace = ‘<iframe src=”http://html5.svnlabs.com/html5small.php?id=’.$matches[2][0].’” frameborder=”0″ marginheight=”0″ marginwidth=”0″ scrolling=”no” width=”347″ height=”207″></iframe>’;
}
?>
Radio song info is not refreshed automatically?
Song information is Ajax based process that will run every 5 mins
This is only one way to get song’s information in HTML5 based players
We can reduce Ajax request time to get updated information every 1 or 2 mins
You can review other html5 products, I will be here if you need my plugin
Multiple players on same page using shortcode Addon
Using this addon two or more players can be added on the same page or post.
1. Both full players
2. Small and Full Players
3. Both Small Players
4. Big and Small Players
5. Full and Big Players
6. Both Big Players
http://html5.svnlabs.com/multiple-players-on-same-page-using-shortcode/
What are future extensions?
1. JS Widget
2. Color Scheme
3. Size Customization
4. Playlist Hide / Show
5. Player API
6. Download / Buy Now
HTML5 MP3 player play the song list automatically?
Please check below javascript file link to auto play playlist
http://html5.svnlabs.com/audiojs/audio.js
settings: {
autoplay: true,
You need to update audio.js file in “wp-content/plugins/html5-mp3-player-with-playlist/html5/audiojs/”
OR
Add below statement in player file html5small.php, html5full.php or html5big.php on body load function
$(‘.playing’).click(); //for autoplay
How do I create a download link for my mp3?
Please review … if you know HTML / CSS / PHP
http://html5.svnlabs.com/html5-mp3-player-with-downloadable-playlist-option/
For download option you need to edit files here…
wp-content/plugins/html5-mp3-player-with-playlist/html5/html5full.php
wp-content/plugins/html5-mp3-player-with-playlist/html5/html5big.php
Find:
<li>
<a href=”#” data-src=”<?php echo $mp3s; ?>” title=”<?php echo $mp3t; ?>” class=”track-name” name=”<?php echo $mp3p; ?>”><?php echo $mp3t; ?></a>
<p class=”Title01″><?php echo $mp3a; ?></p>
</li>
Add above it:
<span style=”right:27px; position:absolute;”> <a href=”<?php echo $mp3s; ?>” download=”MyDown” style=”z-index:1000; position:absolute;” target=”_blank” title=”Download”><img src=”download.jpg” border=”0″ width=”17″ /></a></span>
Shoutcast Stream is not working?
Is it possible to play shoutcast internet radio streams with html5?
Add semicolon after shoutcast link ![]()
http://yourdomain:port/;
How could I play a shoutcast/icecast stream using HTML5?
<!DOCTYPE html>
<audio controls src=”http://domain.com:8010/;”></audio>
Does the paid version offer more features?
Paid Version:
1. Vertical playlist http://html5.svnlabs.com/vertical-playlist/
2. You can take backup your xml files becoz file will be hosted on your server
3. We will assist on skype for paid support
4. Paid version have fully customize link, text, images etc. using HTML5 and CSS
5. Paid plugin also support WordPress 3.5
6. Random/Shuffle mode in playlist
Addon: http://html5.svnlabs.com/multiple-players-on-same-page-using-shortcode/
How to replace spaces with %20 in playlist for MP3 link?
<?php
$s = ‘http://www.domain.com/songs/4 THE SICK – 13 – Because Of U featuring Evan Eleazer.mp3′;
$s = str_replace(” “, “%20″, $s);
// OR
$s = preg_replace(‘/ /i’, ‘%20′, $s);
echo $s;
?>
Output: http://www.domain.com/songs/4%20THE%20SICK%20-%2013%20-%20Because%20Of%20U%20featuring%20Evan%20Eleazer.mp3
Different playlist for different pages?
HTML5 MP3 Player with Playlist can be used on different page and post using shortcodes: http://html5.svnlabs.com/shortcodes/
You need to create XML/RSS based playlist first
Small Player (No Playlist): [html5mp3small:ID]
Full Player (With Playlist): [html5mp3full:ID]
Here ID is identifier of playlist you created
We have addon to read folder of mp3 files to create XML based playlist dynamically
Thanks
Downloadable mp3′s
Paid version of HTML5 MP3 Player with Playlist have download feature in playlist.
You can customize MP3 downloads and can add buy now button near download link
http://html5.svnlabs.com/html5-mp3-player-with-downloadable-playlist-option/
Player in custom colors and custom size
We have another addon to customize color and size of HTML5 MP3 Player with Playlist that is CSS based.
You can customize player to fit on your website using custome size and colors.
Sample Player
music will get intrupted if the page change in the same website
Question:
I need a quote for your players and I need to know the following:
The music will get intrupted if the page change in the same
website?
If yes, is it possible to stick it to all the pages and just keep
musics to play during the page change?
Is it able to add new songs from different pages by a click on
musics?
would you be interested to develop a player with more functionality?
Answer:
You need to use “Frames Website Template” for your page / website
http://blog.svnlabs.com/frames-website-template/
You can use any frame for HTML5 MP3 Player Plugin …
1 player on the page that can access multiple playlists
Question:
What I want to do is have 1 player on the page that can access multiple playlists that the end user can select from and play the applicable content. Is that possible?
Answer:
http://html5.svnlabs.com/faq/multiple-players-on-same-page-using-shortcode-addon/
Yes, We can create a new addon “Tabbed playlists in single player” for that
Could you tell me where are my xml from the free version?
The XML Playlist files for free version are hosted on http://html5.svnlabs.com/ in xml folder
Like http://html5.svnlabs.com/xml/1347391361.xml ..
You will lose all XML files when you upgrade plugin from Free to Paid (Self Hosted) Version.
So, Please take backup for your old XML Playlist files from Free version.
You can download your old XML files hosted on server http://html5.svnlabs.com/ (If you know the name of XML files)
Using : http://html5.svnlabs.com/xml/XML-File-Name
Example: http://html5.svnlabs.com/xml/1347391361.xml
You can request us for lost XML Playlist Files if you know your playlist ID for Free Plugin
Playlist ID : [html5mp3full:5259] or [html5mp3full:ID]
How to change background color of player?
Hello,
You can find style files here… We are using images for backgrounds
http://www.domain.com/wp-content/plugins/html5-mp3-player-with-playlist/html5/css/player.css in this CSS you can find image “../images/player-bg.jpg” .. that is black .. you can replace with new image
http://www.domain.com/wp-content/plugins/html5-mp3-player-with-playlist/html5/images/player-bg.jpg
And same for big player
http://www.domain.com/wp-content/plugins/html5-mp3-player-with-playlist/html5/css/player_big.css .. image background
http://www.domain.com/wp-content/plugins/html5-mp3-player-with-playlist/html5/images/player-big-bg.jpg
http://www.domain.com/wp-content/plugins/html5-mp3-player-with-playlist/html5/images/player-bg-small.jpg
You can change color of these image to your requirements in paid version of HTML5 MP3 Player
Thanks
Which Player is best?
Hello,
- Small HTML5 MP3 Player
- Horizontal / Vertical HTML5 MP3 Player
- Footer Stick Player
- Karaoke Player
- Pay Per Video Player
Please select your choice … we can provide plugin for – Joomla / WordPress
Thanks
Addons for reading mp3 folder and manage text using ID3 Tag
Now plugin users can create dynamic playlist using new plugin addon…
Addon need MP3 Folder link to read all mp3 files in any folder publicly accessed
Example: http://www.svnlabs.com/mp3/ http://www.svnlabs.com/songs/
HTML5 MP3 Player with Playlist addon can read private folders using PHP on same server
Customization is not possible for free version
Customization is not possible for free version
You need to purchase code for HTML5 MP3 Player
You can add us on skype: svnlabs for more help
Tabbed playlists in single player
We are developers of HTML5 MP3 Player
We will be happy to assist you
Tabbed playlists in single player is possible
Is it possible to use a larger cover album i.e square (300×300) instead of rectangles (300×60)
We have 3 options in HTML5 MP3 Player with rectangle cover image
You can easily customize rectangle cover image to square cover image
You need to edit cover image size in PHP files
- html5full.php
- html5small.php
- html5big.php
Connection refused (111) while reading icecast stream
fsockopen() [function.fsockopen]: unable to connect to icecast-ip-address:port (Connection refused)
IceCast Stream
http://icecast-ip-address:port/stream
http://icecast-ip-address:port/live
You must contact to your icecast hosting support for IP, Port, Domain blocking
Make sure you have icecast port opened on HTML5 MP3 Plugin server
Read MP3 files from folder for HTML5 MP3 Player with Playlist
Now plugin users can create dynamic playlist using new plugin addon…
Addon need MP3 Folder link to read all mp3 files in any folder publicly accessed
Example: http://www.svnlabs.com/mp3/ http://www.svnlabs.com/songs/
HTML5 MP3 Player with Playlist addon can read private folders using PHP on same server
Other plugin
Single HTML5 Video without Playlist
HTML5 Video Player with Playlist have HTML5 video the element enable native video playback within the browser. It supports all browsers i.e. iOS, Android, Firefox, Chrome, Safari, IE and Opera.
You can enable single html5 video without playlist using below code..
You need to remove 2 options in JavaScript
playlist: ‘<?php echo plugin_dir_url(__FILE__); ?>../xml/<?php echo $xml; ?>’,
vertical: <?php echo $playlistmod; ?>,
For single video JavaScript look like →
<script type=”text/javascript”>
jQuery(function() {
jQuery(“#html5player<?php echo $rnd; ?>”).html5player({
width: ‘<?php echo $width; ?>px’,
height: ‘<?php echo $height; ?>px’,
autoNext: <?php echo $autonext; ?>,
shuffle: <?php echo $shuffle; ?>,
loop: <?php echo $loop; ?>,
scrollMode: “hover<?php //echo $scrollmode; ?>”, //”auto”
logo: “<?php echo $logo; ?>” // logo.png
});
});
</script>
<video id=”html5player<?php echo $rnd; ?>” src=”VIDEO-LINK” poster=”VIDEO-IMAGE-LINK”></video>
Browser & format support
HTML5 MP3 Player uses native <audio> where available and an invisible flash player to emulate <audio> for other browsers. It provides a consistent html player UI to all browsers which can be styled used standard css.
Browser & format support
With Flash as a fallback, it should work pretty much anywhere.
It has been verified to work across:
- Mobile Safari (iOS 3+)
- Android (2.2+, w/Flash), Android (4.0+)
- Safari (4+)
- Chrome (7+)
- Firefox (3+, w/ Flash)
- Opera (10+, w/ Flash)
- IE (6, 7, 8, w/ Flash)
Sharing to Facebook with OG tags via an iFrame embed
There is a og:url tag in Facebook Open Graph Tags. If you know the parent page URL of the embedded content, you can set og:url parameter with the parent page URL. Then, it behaves like the way you share the parent page.
<meta property=”og:type” content=”article”/>
<meta property=”og:title” content=”TITLE”/>
<meta property=”og:url” content=”URL”/>
<meta property=”og:image” content=”IMAGE”/>
<meta property=”og:description” content=”DESCRIPTION…”/>
<meta property=”og:site_name” content=”WEBSITE”/>
<meta property=”fb:app_id” content=”FB_APP_ID”/>
WordPress Plugin Paid Features
Paid Features…
1. Vertical (Big) playlist
2. Random/Shuffle mode in playlist
3. Download Option
4. Customize Twitter / Facebook links
5. Support iOS / Android
6. Stream MP3 HTTP Stream from Wowza, Cloudfront, CDN etc.
7. More customization available as you get full files hosted on your server
Embed Code option with HTML5 MP3 Player
Embed Code Button in HTML5 MP3 Player

Iframe based Embed code text area to copy code

Demo
How to use HTML5 Radio Player for Shoutcast or Icecast?
Hope you have already purchased “HTML5 MP3 Radio FM Stream” from here http://html5plus.svnlabs.com/shop/html5-mp3-radio-fm-stream/
Check Radio Demo here… http://html5plus.svnlabs.com/shop/html5-mp3-radio-fm-stream/
There is a difference between versions of shoutcast. 1.9.9 doesn’t support HTML5 Audio where 1.9.8 is compatible with HTML5 Audio
Please check our FAQ Section for more help…
Shoutcast Stream is not working?
Amazon S3 Bucket Endpoint
Amazon S3 Bucket Region and there Website Endpoint
US Standard : s3-website-us-east-1.amazonaws.com
US West (Origon) Region : s3-website-us-west-2.amazonaws.com
US West (Northern California) : s3-website-us-west-1.amazonaws.com
EU (Ireland) : s3-website-eu-west-1.amazonaws.com
Singapore ( Asia Pacific ) : s3-website-ap-southeast-1.amazonaws.com
Tokyo ( Asia Pacific ) : s3-website-ap-northeast-1.amazonaws.com
South America (Sao Paulo) Region : s3-website-sa-east-1.amazonaws.com
Query String Limit and Size Limit in GET Data
“Servers should be limit on URI lengths above 255 bytes because some older client or proxy implementations may not properly support these lengths.”
Different browser agents support different URI length acceptance. In addition, servers too play a role in accepting/denying URI’s over certain length which may either truncate the URI or may give lengthy URI message indications.
Call to undefined function parse_ini_string() in html5/icecast.php
WordPress and Standalone HTML5 MP3 Radio FM Stream Plugin compatible with iOS, Android and supports all browsers Firefox, Chrome, Safari, IE and Opera!
HTML5 MP3 Radio FM MP3 Stream Player can grab “Now Playing Song Information” on player as StreamTitle for Shoutcast and Icecast Streams.
HTML5 MP3 Radio Icecast Stream player and have got the stream to play but I get this error…
“Fatal error: Call to undefined function parse_ini_string() in
/public_html/wp-content/plugins/shoutcast-icecast-html5-radio-player/html5/icecast.php on line 51″
Solution:
Comment the if conditions for function parse_ini_string( $string )
///if( !function_exists(‘parse_ini_string’) ){
///}
Copyrighted Music
Copyrighted Music Publicly?
When you buy an audio file, software, or CD, even those specifically marketed for business purposes, the purchase price covers only your private listening use, regardless of how they are labeled. Once you decide to play any copyrighted music publicly, you need permission from the copyright owners……
Can I add copyrighted songs to the player?
Of course you can, unlike a common misconception, you are not “uploading” files to the player, you are letting the in-game player know where your music files are on your computer. No uploading of any music takes place, you can add any songs you want to your music player……
Music Sharing?
We know about legal music sharing and violating copyright by hosting MP3 files on our hosting server. We are providing HTML5 MP3 Music/Audio Player with Flash fallback to listen MP3 music to our customers/users. The customers are purchasing HTML5 MP3 Player with playlist not music.
We are not selling or hosting or uploading copyrighted or unlicensed music on our hosting server…….
http://html5.svnlabs.com/
HTML5Video (7)
Fatal error: Call to undefined function dbDelta() in ** wp-content/plugins/html5-video-player-with-playlist/index.php on line 211
HTML5 Video Player plugin uses Flash & HTML5 on all modern devices and web browsers, On Android, iPhone and iPad the Video Player will go to HTML5 mode.
When you try to activate it.. If you get Fatal error: Call to undefined function dbDelta() in ** wp-content/plugins/html5-video-player-with-playlist/index.php on line 211
Easy Fix:
Find dbDelta($sql); in plugin file “index.php” and replace it with
//dbDelta($sql);
$wpdb->query($sql);
OR
//dbDelta($sql);
mysql_query($sql);
Single HTML5 Video without Playlist
HTML5 Video Player with Playlist have HTML5 video the element enable native video playback within the browser. It supports all browsers i.e. iOS, Android, Firefox, Chrome, Safari, IE and Opera.
You can enable single html5 video without playlist using below code..
You need to remove 2 options in JavaScript
playlist: ‘<?php echo plugin_dir_url(__FILE__); ?>../xml/<?php echo $xml; ?>’,
vertical: <?php echo $playlistmod; ?>,
For single video JavaScript look like →
<script type=”text/javascript”>
jQuery(function() {
jQuery(“#html5player<?php echo $rnd; ?>”).html5player({
width: ‘<?php echo $width; ?>px’,
height: ‘<?php echo $height; ?>px’,
autoNext: <?php echo $autonext; ?>,
shuffle: <?php echo $shuffle; ?>,
loop: <?php echo $loop; ?>,
scrollMode: “hover<?php //echo $scrollmode; ?>”, //”auto”
logo: “<?php echo $logo; ?>” // logo.png
});
});
</script>
<video id=”html5player<?php echo $rnd; ?>” src=”VIDEO-LINK” poster=”VIDEO-IMAGE-LINK”></video>
Browser & format support
HTML5 MP3 Player uses native <audio> where available and an invisible flash player to emulate <audio> for other browsers. It provides a consistent html player UI to all browsers which can be styled used standard css.
Browser & format support
With Flash as a fallback, it should work pretty much anywhere.
It has been verified to work across:
- Mobile Safari (iOS 3+)
- Android (2.2+, w/Flash), Android (4.0+)
- Safari (4+)
- Chrome (7+)
- Firefox (3+, w/ Flash)
- Opera (10+, w/ Flash)
- IE (6, 7, 8, w/ Flash)
Sharing to Facebook with OG tags via an iFrame embed
There is a og:url tag in Facebook Open Graph Tags. If you know the parent page URL of the embedded content, you can set og:url parameter with the parent page URL. Then, it behaves like the way you share the parent page.
<meta property=”og:type” content=”article”/>
<meta property=”og:title” content=”TITLE”/>
<meta property=”og:url” content=”URL”/>
<meta property=”og:image” content=”IMAGE”/>
<meta property=”og:description” content=”DESCRIPTION…”/>
<meta property=”og:site_name” content=”WEBSITE”/>
<meta property=”fb:app_id” content=”FB_APP_ID”/>
Amazon S3 Bucket Endpoint
Amazon S3 Bucket Region and there Website Endpoint
US Standard : s3-website-us-east-1.amazonaws.com
US West (Origon) Region : s3-website-us-west-2.amazonaws.com
US West (Northern California) : s3-website-us-west-1.amazonaws.com
EU (Ireland) : s3-website-eu-west-1.amazonaws.com
Singapore ( Asia Pacific ) : s3-website-ap-southeast-1.amazonaws.com
Tokyo ( Asia Pacific ) : s3-website-ap-northeast-1.amazonaws.com
South America (Sao Paulo) Region : s3-website-sa-east-1.amazonaws.com
Query String Limit and Size Limit in GET Data
“Servers should be limit on URI lengths above 255 bytes because some older client or proxy implementations may not properly support these lengths.”
Different browser agents support different URI length acceptance. In addition, servers too play a role in accepting/denying URI’s over certain length which may either truncate the URI or may give lengthy URI message indications.
Copyrighted Music
Copyrighted Music Publicly?
When you buy an audio file, software, or CD, even those specifically marketed for business purposes, the purchase price covers only your private listening use, regardless of how they are labeled. Once you decide to play any copyrighted music publicly, you need permission from the copyright owners……
Can I add copyrighted songs to the player?
Of course you can, unlike a common misconception, you are not “uploading” files to the player, you are letting the in-game player know where your music files are on your computer. No uploading of any music takes place, you can add any songs you want to your music player……
Music Sharing?
We know about legal music sharing and violating copyright by hosting MP3 files on our hosting server. We are providing HTML5 MP3 Music/Audio Player with Flash fallback to listen MP3 music to our customers/users. The customers are purchasing HTML5 MP3 Player with playlist not music.
We are not selling or hosting or uploading copyrighted or unlicensed music on our hosting server…….
http://html5.svnlabs.com/
Joomla (36)
html5 control support Unicode Song file name or not?
Please try unicode mp3 links in XML file
Like:
http://server.com/mp3/បើសិនអូនជាសង្សារបង.mp3 (MP3 from any server or domain)
or
http://ip-address/audio/បើសិនអូនជាសង្សារបង.mp3 (MP3 from any server using IP Address)
Which PHP function needed to run this plugin on own server?
- Remote file read file_get_contents()
- XML functions simplexml_load_string()
- File functions fopen(), fread(), fclose()
- php mysql function
Problem downloading MP3 files using HMTL5 MP3 Plugin?
Instructions:
To Listen: Click on the Chapel you would like to listen then click the Play button. The audio files are large and depending on your connection may take a moment to load. Press pause then play if this happens.
To Download: Click the Download icon. It will popup a new web browser window. From there, choose File > Save As. Note that not all browsers may have this option.
How to make player code validate on W3C?
W3C will throw error for iframes, so you need to use object tags in place of iframe tags.
<?php
if($matches[1][0]==”full”)
{
$replace = ‘<object data=”http://html5.svnlabs.com/html5full.php?id=’.$matches[2][0].’&bg=f6f6f6″ type=”text/html” width=”606″ height=”230″ style=”border: medium none; background-color:#f6f6f6; overflow:hidden; width: 606px; height: 230px;”></object>’;
}
else if($matches[1][0]==”big”)
{
$replace = ‘<object data=”http://html5.svnlabs.com/html5big.php?id=’.$matches[2][0].’&bg=f6f6f6″ type=”text/html” width=”386″ height=”434″ style=”border: medium none; background-color:#f6f6f6; overflow:hidden; width: 386px; height: 434px;”></object>’;
}
else
{
$replace = ‘<object data=”http://html5.svnlabs.com/html5small.php?id=’.$matches[2][0].’&bg=f6f6f6″ type=”text/html” width=”386″ height=”230″ style=”border: medium none; background-color:#f6f6f6; overflow:hidden; width: 386px; height: 230px;”></object>’;
}
if($matches[1][0]==”full”)
{
$replace = ‘<iframe src=”http://html5.svnlabs.com/html5full.php?id=’.$matches[2][0].’” frameborder=”0″ marginheight=”0″ marginwidth=”0″ scrolling=”no” width=”566″ height=”207″></iframe>’;
}
else if($matches[1][0]==”big”)
{
$replace = ‘<iframe src=”http://html5.svnlabs.com/html5big.php?id=’.$matches[2][0].’” frameborder=”0″ marginheight=”0″ marginwidth=”0″ scrolling=”no” width=”347″ height=”414″></iframe>’;
}
else
{
$replace = ‘<iframe src=”http://html5.svnlabs.com/html5small.php?id=’.$matches[2][0].’” frameborder=”0″ marginheight=”0″ marginwidth=”0″ scrolling=”no” width=”347″ height=”207″></iframe>’;
}
?>
Radio song info is not refreshed automatically?
Song information is Ajax based process that will run every 5 mins
This is only one way to get song’s information in HTML5 based players
We can reduce Ajax request time to get updated information every 1 or 2 mins
You can review other html5 products, I will be here if you need my plugin
Multiple players on same page using shortcode Addon
Using this addon two or more players can be added on the same page or post.
1. Both full players
2. Small and Full Players
3. Both Small Players
4. Big and Small Players
5. Full and Big Players
6. Both Big Players
http://html5.svnlabs.com/multiple-players-on-same-page-using-shortcode/
Any upcoming updates that will make this player compatible with WordPress 3.4?
I have tested on WordPress 3.4.1.
Its working fine for me
http://blog.svnlabs.com/work/wordpress-3-4-1/
If you are checking here http://wordpress.org/extend/plugins/html5-mp3-player-with-playlist/installation/
Free plugin is old .. new one is compatible with WordPress 3.4.1.
http://blog.svnlabs.com/work/wordpress-3-4-1/
How to remove: Twitter, Facebook and other links from the player?
You can find block of code in core files in html5 folder
- html5full.php
- html5small.php
- html5big.php
You need to remove …..
<a href=”https://twitter.com/intent/tweet?status=<?php echo “HTML5 MP3 Player with Playlist “; ?><?php echo urlencode(‘http://html5.svnlabs.com’); ?>&url=<?php echo urlencode(‘http://html5.svnlabs.com’); ?>” target=”_blank” title=”Twitter”><img src=”twitter.png” border=”0″ width=”20″ /></a><a href=”https://www.facebook.com/sharer/sharer.php?u=<?php echo urlencode(‘http://html5.svnlabs.com’); ?>” target=”_blank” title=”Facebook”><img src=”facebook.png” border=”0″ width=”20″ /></a><a href=”http://html5.svnlabs.com” target=”_blank” title=”HTML5 MP3 Player with Playlist”><img src=”link-icon.png” border=”0″ width=”20″ /></a>
OR
<a href=”http://html5.svnlabs.com” target=”_blank” title=”HTML5 MP3 Player with Playlist”><img src=”link-icon.png” border=”0″ width=”20″ /></a>
How to install Joomla Plugin?
Thanks for purchase HTML5 Audio Player with Playlist
http://html5.svnlabs.com/
This a complete package for HTML5 MP3 XML based playlist player
1. Copy / Upload “html5″ folder to joomla root where “configuration.php” located.
2. Make sure folder “html5/xml” is writeable.
3. Upload / Install “html5mp3playlist.zip”.
4. Replace “http://html5.svnlabs.com” with your “http://www.domain.com” where joomla installed.
“plugins/content/html5mp3playlist/html5mp3playlist.xml” => Approx Line # 21
“plugins/content/html5mp3playlist/html5mp3playlist.php” => Approx Line # 68, 72, 76, 80
5. Activate Plugin “Content – HTML5 MP3 Player with Playlist”.
6. Create XML based playlist from joomla Extensions > Plug-in Manager > Content – HTML5 MP3 Player with Playlist.
7. Copy & Paste shortcode to joomla article editor.
{html5mp3playlist id=1 type=full}{/html5mp3playlist} OR {html5mp3playlist id=1 type=small}{/html5mp3playlist}
Support Email: info@svnlabs.com
HTML5 MP3 player play the song list automatically?
Please check below javascript file link to auto play playlist
http://html5.svnlabs.com/audiojs/audio.js
settings: {
autoplay: true,
You need to update audio.js file in “wp-content/plugins/html5-mp3-player-with-playlist/html5/audiojs/”
OR
Add below statement in player file html5small.php, html5full.php or html5big.php on body load function
$(‘.playing’).click(); //for autoplay
How do I create a download link for my mp3?
Please review … if you know HTML / CSS / PHP
http://html5.svnlabs.com/html5-mp3-player-with-downloadable-playlist-option/
For download option you need to edit files here…
wp-content/plugins/html5-mp3-player-with-playlist/html5/html5full.php
wp-content/plugins/html5-mp3-player-with-playlist/html5/html5big.php
Find:
<li>
<a href=”#” data-src=”<?php echo $mp3s; ?>” title=”<?php echo $mp3t; ?>” class=”track-name” name=”<?php echo $mp3p; ?>”><?php echo $mp3t; ?></a>
<p class=”Title01″><?php echo $mp3a; ?></p>
</li>
Add above it:
<span style=”right:27px; position:absolute;”> <a href=”<?php echo $mp3s; ?>” download=”MyDown” style=”z-index:1000; position:absolute;” target=”_blank” title=”Download”><img src=”download.jpg” border=”0″ width=”17″ /></a></span>
Shoutcast Stream is not working?
Is it possible to play shoutcast internet radio streams with html5?
Add semicolon after shoutcast link ![]()
http://yourdomain:port/;
How could I play a shoutcast/icecast stream using HTML5?
<!DOCTYPE html>
<audio controls src=”http://domain.com:8010/;”></audio>
Does the paid version offer more features?
Paid Version:
1. Vertical playlist http://html5.svnlabs.com/vertical-playlist/
2. You can take backup your xml files becoz file will be hosted on your server
3. We will assist on skype for paid support
4. Paid version have fully customize link, text, images etc. using HTML5 and CSS
5. Paid plugin also support WordPress 3.5
6. Random/Shuffle mode in playlist
Addon: http://html5.svnlabs.com/multiple-players-on-same-page-using-shortcode/
How to replace spaces with %20 in playlist for MP3 link?
<?php
$s = ‘http://www.domain.com/songs/4 THE SICK – 13 – Because Of U featuring Evan Eleazer.mp3′;
$s = str_replace(” “, “%20″, $s);
// OR
$s = preg_replace(‘/ /i’, ‘%20′, $s);
echo $s;
?>
Output: http://www.domain.com/songs/4%20THE%20SICK%20-%2013%20-%20Because%20Of%20U%20featuring%20Evan%20Eleazer.mp3
Different playlist for different pages?
HTML5 MP3 Player with Playlist can be used on different page and post using shortcodes: http://html5.svnlabs.com/shortcodes/
You need to create XML/RSS based playlist first
Small Player (No Playlist): [html5mp3small:ID]
Full Player (With Playlist): [html5mp3full:ID]
Here ID is identifier of playlist you created
We have addon to read folder of mp3 files to create XML based playlist dynamically
Thanks
Downloadable mp3′s
Paid version of HTML5 MP3 Player with Playlist have download feature in playlist.
You can customize MP3 downloads and can add buy now button near download link
http://html5.svnlabs.com/html5-mp3-player-with-downloadable-playlist-option/
Player in custom colors and custom size
We have another addon to customize color and size of HTML5 MP3 Player with Playlist that is CSS based.
You can customize player to fit on your website using custome size and colors.
Sample Player
music will get intrupted if the page change in the same website
Question:
I need a quote for your players and I need to know the following:
The music will get intrupted if the page change in the same
website?
If yes, is it possible to stick it to all the pages and just keep
musics to play during the page change?
Is it able to add new songs from different pages by a click on
musics?
would you be interested to develop a player with more functionality?
Answer:
You need to use “Frames Website Template” for your page / website
http://blog.svnlabs.com/frames-website-template/
You can use any frame for HTML5 MP3 Player Plugin …
1 player on the page that can access multiple playlists
Question:
What I want to do is have 1 player on the page that can access multiple playlists that the end user can select from and play the applicable content. Is that possible?
Answer:
http://html5.svnlabs.com/faq/multiple-players-on-same-page-using-shortcode-addon/
Yes, We can create a new addon “Tabbed playlists in single player” for that
Could you tell me where are my xml from the free version?
The XML Playlist files for free version are hosted on http://html5.svnlabs.com/ in xml folder
Like http://html5.svnlabs.com/xml/1347391361.xml ..
You will lose all XML files when you upgrade plugin from Free to Paid (Self Hosted) Version.
So, Please take backup for your old XML Playlist files from Free version.
You can download your old XML files hosted on server http://html5.svnlabs.com/ (If you know the name of XML files)
Using : http://html5.svnlabs.com/xml/XML-File-Name
Example: http://html5.svnlabs.com/xml/1347391361.xml
You can request us for lost XML Playlist Files if you know your playlist ID for Free Plugin
Playlist ID : [html5mp3full:5259] or [html5mp3full:ID]
How to change background color of player?
Hello,
You can find style files here… We are using images for backgrounds
http://www.domain.com/wp-content/plugins/html5-mp3-player-with-playlist/html5/css/player.css in this CSS you can find image “../images/player-bg.jpg” .. that is black .. you can replace with new image
http://www.domain.com/wp-content/plugins/html5-mp3-player-with-playlist/html5/images/player-bg.jpg
And same for big player
http://www.domain.com/wp-content/plugins/html5-mp3-player-with-playlist/html5/css/player_big.css .. image background
http://www.domain.com/wp-content/plugins/html5-mp3-player-with-playlist/html5/images/player-big-bg.jpg
http://www.domain.com/wp-content/plugins/html5-mp3-player-with-playlist/html5/images/player-bg-small.jpg
You can change color of these image to your requirements in paid version of HTML5 MP3 Player
Thanks
Which Player is best?
Hello,
- Small HTML5 MP3 Player
- Horizontal / Vertical HTML5 MP3 Player
- Footer Stick Player
- Karaoke Player
- Pay Per Video Player
Please select your choice … we can provide plugin for – Joomla / WordPress
Thanks
Addons for reading mp3 folder and manage text using ID3 Tag
Now plugin users can create dynamic playlist using new plugin addon…
Addon need MP3 Folder link to read all mp3 files in any folder publicly accessed
Example: http://www.svnlabs.com/mp3/ http://www.svnlabs.com/songs/
HTML5 MP3 Player with Playlist addon can read private folders using PHP on same server
Customization is not possible for free version
Customization is not possible for free version
You need to purchase code for HTML5 MP3 Player
You can add us on skype: svnlabs for more help
Tabbed playlists in single player
We are developers of HTML5 MP3 Player
We will be happy to assist you
Tabbed playlists in single player is possible
Is it possible to use a larger cover album i.e square (300×300) instead of rectangles (300×60)
We have 3 options in HTML5 MP3 Player with rectangle cover image
You can easily customize rectangle cover image to square cover image
You need to edit cover image size in PHP files
- html5full.php
- html5small.php
- html5big.php
Connection refused (111) while reading icecast stream
fsockopen() [function.fsockopen]: unable to connect to icecast-ip-address:port (Connection refused)
IceCast Stream
http://icecast-ip-address:port/stream
http://icecast-ip-address:port/live
You must contact to your icecast hosting support for IP, Port, Domain blocking
Make sure you have icecast port opened on HTML5 MP3 Plugin server
Read MP3 files from folder for HTML5 MP3 Player with Playlist
Now plugin users can create dynamic playlist using new plugin addon…
Addon need MP3 Folder link to read all mp3 files in any folder publicly accessed
Example: http://www.svnlabs.com/mp3/ http://www.svnlabs.com/songs/
HTML5 MP3 Player with Playlist addon can read private folders using PHP on same server
Other plugin
Browser & format support
HTML5 MP3 Player uses native <audio> where available and an invisible flash player to emulate <audio> for other browsers. It provides a consistent html player UI to all browsers which can be styled used standard css.
Browser & format support
With Flash as a fallback, it should work pretty much anywhere.
It has been verified to work across:
- Mobile Safari (iOS 3+)
- Android (2.2+, w/Flash), Android (4.0+)
- Safari (4+)
- Chrome (7+)
- Firefox (3+, w/ Flash)
- Opera (10+, w/ Flash)
- IE (6, 7, 8, w/ Flash)
Sharing to Facebook with OG tags via an iFrame embed
There is a og:url tag in Facebook Open Graph Tags. If you know the parent page URL of the embedded content, you can set og:url parameter with the parent page URL. Then, it behaves like the way you share the parent page.
<meta property=”og:type” content=”article”/>
<meta property=”og:title” content=”TITLE”/>
<meta property=”og:url” content=”URL”/>
<meta property=”og:image” content=”IMAGE”/>
<meta property=”og:description” content=”DESCRIPTION…”/>
<meta property=”og:site_name” content=”WEBSITE”/>
<meta property=”fb:app_id” content=”FB_APP_ID”/>
Embed Code option with HTML5 MP3 Player
Embed Code Button in HTML5 MP3 Player

Iframe based Embed code text area to copy code

Demo
Amazon S3 Bucket Endpoint
Amazon S3 Bucket Region and there Website Endpoint
US Standard : s3-website-us-east-1.amazonaws.com
US West (Origon) Region : s3-website-us-west-2.amazonaws.com
US West (Northern California) : s3-website-us-west-1.amazonaws.com
EU (Ireland) : s3-website-eu-west-1.amazonaws.com
Singapore ( Asia Pacific ) : s3-website-ap-southeast-1.amazonaws.com
Tokyo ( Asia Pacific ) : s3-website-ap-northeast-1.amazonaws.com
South America (Sao Paulo) Region : s3-website-sa-east-1.amazonaws.com
Query String Limit and Size Limit in GET Data
“Servers should be limit on URI lengths above 255 bytes because some older client or proxy implementations may not properly support these lengths.”
Different browser agents support different URI length acceptance. In addition, servers too play a role in accepting/denying URI’s over certain length which may either truncate the URI or may give lengthy URI message indications.
Copyrighted Music
Copyrighted Music Publicly?
When you buy an audio file, software, or CD, even those specifically marketed for business purposes, the purchase price covers only your private listening use, regardless of how they are labeled. Once you decide to play any copyrighted music publicly, you need permission from the copyright owners……
Can I add copyrighted songs to the player?
Of course you can, unlike a common misconception, you are not “uploading” files to the player, you are letting the in-game player know where your music files are on your computer. No uploading of any music takes place, you can add any songs you want to your music player……
Music Sharing?
We know about legal music sharing and violating copyright by hosting MP3 files on our hosting server. We are providing HTML5 MP3 Music/Audio Player with Flash fallback to listen MP3 music to our customers/users. The customers are purchasing HTML5 MP3 Player with playlist not music.
We are not selling or hosting or uploading copyrighted or unlicensed music on our hosting server…….
http://html5.svnlabs.com/
Wordpress (42)
Multiple players on same page using shortcode Addon
Using this addon two or more players can be added on the same page or post.
1. Both full players
2. Small and Full Players
3. Both Small Players
4. Big and Small Players
5. Full and Big Players
6. Both Big Players
http://html5.svnlabs.com/multiple-players-on-same-page-using-shortcode/
html5 control support Unicode Song file name or not?
Please try unicode mp3 links in XML file
Like:
http://server.com/mp3/បើសិនអូនជាសង្សារបង.mp3 (MP3 from any server or domain)
or
http://ip-address/audio/បើសិនអូនជាសង្សារបង.mp3 (MP3 from any server using IP Address)
How to remove: Twitter, Facebook and other links from the player?
You can find block of code in core files in html5 folder
- html5full.php
- html5small.php
- html5big.php
You need to remove …..
<a href=”https://twitter.com/intent/tweet?status=<?php echo “HTML5 MP3 Player with Playlist “; ?><?php echo urlencode(‘http://html5.svnlabs.com’); ?>&url=<?php echo urlencode(‘http://html5.svnlabs.com’); ?>” target=”_blank” title=”Twitter”><img src=”twitter.png” border=”0″ width=”20″ /></a><a href=”https://www.facebook.com/sharer/sharer.php?u=<?php echo urlencode(‘http://html5.svnlabs.com’); ?>” target=”_blank” title=”Facebook”><img src=”facebook.png” border=”0″ width=”20″ /></a><a href=”http://html5.svnlabs.com” target=”_blank” title=”HTML5 MP3 Player with Playlist”><img src=”link-icon.png” border=”0″ width=”20″ /></a>
OR
<a href=”http://html5.svnlabs.com” target=”_blank” title=”HTML5 MP3 Player with Playlist”><img src=”link-icon.png” border=”0″ width=”20″ /></a>
Which PHP function needed to run this plugin on own server?
- Remote file read file_get_contents()
- XML functions simplexml_load_string()
- File functions fopen(), fread(), fclose()
- php mysql function
How to make player code validate on W3C?
W3C will throw error for iframes, so you need to use object tags in place of iframe tags.
<?php
if($matches[1][0]==”full”)
{
$replace = ‘<object data=”http://html5.svnlabs.com/html5full.php?id=’.$matches[2][0].’&bg=f6f6f6″ type=”text/html” width=”606″ height=”230″ style=”border: medium none; background-color:#f6f6f6; overflow:hidden; width: 606px; height: 230px;”></object>’;
}
else if($matches[1][0]==”big”)
{
$replace = ‘<object data=”http://html5.svnlabs.com/html5big.php?id=’.$matches[2][0].’&bg=f6f6f6″ type=”text/html” width=”386″ height=”434″ style=”border: medium none; background-color:#f6f6f6; overflow:hidden; width: 386px; height: 434px;”></object>’;
}
else
{
$replace = ‘<object data=”http://html5.svnlabs.com/html5small.php?id=’.$matches[2][0].’&bg=f6f6f6″ type=”text/html” width=”386″ height=”230″ style=”border: medium none; background-color:#f6f6f6; overflow:hidden; width: 386px; height: 230px;”></object>’;
}
if($matches[1][0]==”full”)
{
$replace = ‘<iframe src=”http://html5.svnlabs.com/html5full.php?id=’.$matches[2][0].’” frameborder=”0″ marginheight=”0″ marginwidth=”0″ scrolling=”no” width=”566″ height=”207″></iframe>’;
}
else if($matches[1][0]==”big”)
{
$replace = ‘<iframe src=”http://html5.svnlabs.com/html5big.php?id=’.$matches[2][0].’” frameborder=”0″ marginheight=”0″ marginwidth=”0″ scrolling=”no” width=”347″ height=”414″></iframe>’;
}
else
{
$replace = ‘<iframe src=”http://html5.svnlabs.com/html5small.php?id=’.$matches[2][0].’” frameborder=”0″ marginheight=”0″ marginwidth=”0″ scrolling=”no” width=”347″ height=”207″></iframe>’;
}
?>
Radio song info is not refreshed automatically?
Song information is Ajax based process that will run every 5 mins
This is only one way to get song’s information in HTML5 based players
We can reduce Ajax request time to get updated information every 1 or 2 mins
You can review other html5 products, I will be here if you need my plugin
Any upcoming updates that will make this player compatible with WordPress 3.4?
I have tested on WordPress 3.4.1.
Its working fine for me
http://blog.svnlabs.com/work/wordpress-3-4-1/
If you are checking here http://wordpress.org/extend/plugins/html5-mp3-player-with-playlist/installation/
Free plugin is old .. new one is compatible with WordPress 3.4.1.
http://blog.svnlabs.com/work/wordpress-3-4-1/
Problem downloading MP3 files using HMTL5 MP3 Plugin?
Instructions:
To Listen: Click on the Chapel you would like to listen then click the Play button. The audio files are large and depending on your connection may take a moment to load. Press pause then play if this happens.
To Download: Click the Download icon. It will popup a new web browser window. From there, choose File > Save As. Note that not all browsers may have this option.
How to install wordpress plugin?
Thanks for purchase HTML5 Audio Player with Playlist
http://html5.svnlabs.com/
This a complete package for HTML5 MP3 XML based playlist player
1. Upload and Unzip html5-mp3-player-with-playlist.zip on your web server wordpress installation folder “wp-content/plugins”
2. Activate Plugin from Plugins http://domain.com/wp-admin/plugins.php
3. Create XML based playlist
http://domain.com/wp-admin/options-general.php?page=html5mp3playlist
4. Copy & Paste shortcode to wordpress post or page editor
[html5mp3full:1] OR [html5mp3small:1]
Support Email: info@svnlabs.com
HTML5 MP3 player play the song list automatically?
Please check below javascript file link to auto play playlist
http://html5.svnlabs.com/audiojs/audio.js
settings: {
autoplay: true,
You need to update audio.js file in “wp-content/plugins/html5-mp3-player-with-playlist/html5/audiojs/”
OR
Add below statement in player file html5small.php, html5full.php or html5big.php on body load function
$(‘.playing’).click(); //for autoplay
How do I create a download link for my mp3?
Please review … if you know HTML / CSS / PHP
http://html5.svnlabs.com/html5-mp3-player-with-downloadable-playlist-option/
For download option you need to edit files here…
wp-content/plugins/html5-mp3-player-with-playlist/html5/html5full.php
wp-content/plugins/html5-mp3-player-with-playlist/html5/html5big.php
Find:
<li>
<a href=”#” data-src=”<?php echo $mp3s; ?>” title=”<?php echo $mp3t; ?>” class=”track-name” name=”<?php echo $mp3p; ?>”><?php echo $mp3t; ?></a>
<p class=”Title01″><?php echo $mp3a; ?></p>
</li>
Add above it:
<span style=”right:27px; position:absolute;”> <a href=”<?php echo $mp3s; ?>” download=”MyDown” style=”z-index:1000; position:absolute;” target=”_blank” title=”Download”><img src=”download.jpg” border=”0″ width=”17″ /></a></span>
Shoutcast Stream is not working?
Is it possible to play shoutcast internet radio streams with html5?
Add semicolon after shoutcast link ![]()
http://yourdomain:port/;
How could I play a shoutcast/icecast stream using HTML5?
<!DOCTYPE html>
<audio controls src=”http://domain.com:8010/;”></audio>
Does the paid version offer more features?
Paid Version:
1. Vertical playlist http://html5.svnlabs.com/vertical-playlist/
2. You can take backup your xml files becoz file will be hosted on your server
3. We will assist on skype for paid support
4. Paid version have fully customize link, text, images etc. using HTML5 and CSS
5. Paid plugin also support WordPress 3.5
6. Random/Shuffle mode in playlist
Addon: http://html5.svnlabs.com/multiple-players-on-same-page-using-shortcode/
How to replace spaces with %20 in playlist for MP3 link?
<?php
$s = ‘http://www.domain.com/songs/4 THE SICK – 13 – Because Of U featuring Evan Eleazer.mp3′;
$s = str_replace(” “, “%20″, $s);
// OR
$s = preg_replace(‘/ /i’, ‘%20′, $s);
echo $s;
?>
Output: http://www.domain.com/songs/4%20THE%20SICK%20-%2013%20-%20Because%20Of%20U%20featuring%20Evan%20Eleazer.mp3
Different playlist for different pages?
HTML5 MP3 Player with Playlist can be used on different page and post using shortcodes: http://html5.svnlabs.com/shortcodes/
You need to create XML/RSS based playlist first
Small Player (No Playlist): [html5mp3small:ID]
Full Player (With Playlist): [html5mp3full:ID]
Here ID is identifier of playlist you created
We have addon to read folder of mp3 files to create XML based playlist dynamically
Thanks
Downloadable mp3′s
Paid version of HTML5 MP3 Player with Playlist have download feature in playlist.
You can customize MP3 downloads and can add buy now button near download link
http://html5.svnlabs.com/html5-mp3-player-with-downloadable-playlist-option/
Player in custom colors and custom size
We have another addon to customize color and size of HTML5 MP3 Player with Playlist that is CSS based.
You can customize player to fit on your website using custome size and colors.
Sample Player
music will get intrupted if the page change in the same website
Question:
I need a quote for your players and I need to know the following:
The music will get intrupted if the page change in the same
website?
If yes, is it possible to stick it to all the pages and just keep
musics to play during the page change?
Is it able to add new songs from different pages by a click on
musics?
would you be interested to develop a player with more functionality?
Answer:
You need to use “Frames Website Template” for your page / website
http://blog.svnlabs.com/frames-website-template/
You can use any frame for HTML5 MP3 Player Plugin …
1 player on the page that can access multiple playlists
Question:
What I want to do is have 1 player on the page that can access multiple playlists that the end user can select from and play the applicable content. Is that possible?
Answer:
http://html5.svnlabs.com/faq/multiple-players-on-same-page-using-shortcode-addon/
Yes, We can create a new addon “Tabbed playlists in single player” for that
Could you tell me where are my xml from the free version?
The XML Playlist files for free version are hosted on http://html5.svnlabs.com/ in xml folder
Like http://html5.svnlabs.com/xml/1347391361.xml ..
You will lose all XML files when you upgrade plugin from Free to Paid (Self Hosted) Version.
So, Please take backup for your old XML Playlist files from Free version.
You can download your old XML files hosted on server http://html5.svnlabs.com/ (If you know the name of XML files)
Using : http://html5.svnlabs.com/xml/XML-File-Name
Example: http://html5.svnlabs.com/xml/1347391361.xml
You can request us for lost XML Playlist Files if you know your playlist ID for Free Plugin
Playlist ID : [html5mp3full:5259] or [html5mp3full:ID]
How to change background color of player?
Hello,
You can find style files here… We are using images for backgrounds
http://www.domain.com/wp-content/plugins/html5-mp3-player-with-playlist/html5/css/player.css in this CSS you can find image “../images/player-bg.jpg” .. that is black .. you can replace with new image
http://www.domain.com/wp-content/plugins/html5-mp3-player-with-playlist/html5/images/player-bg.jpg
And same for big player
http://www.domain.com/wp-content/plugins/html5-mp3-player-with-playlist/html5/css/player_big.css .. image background
http://www.domain.com/wp-content/plugins/html5-mp3-player-with-playlist/html5/images/player-big-bg.jpg
http://www.domain.com/wp-content/plugins/html5-mp3-player-with-playlist/html5/images/player-bg-small.jpg
You can change color of these image to your requirements in paid version of HTML5 MP3 Player
Thanks
Which Player is best?
Hello,
- Small HTML5 MP3 Player
- Horizontal / Vertical HTML5 MP3 Player
- Footer Stick Player
- Karaoke Player
- Pay Per Video Player
Please select your choice … we can provide plugin for – Joomla / WordPress
Thanks
Addons for reading mp3 folder and manage text using ID3 Tag
Now plugin users can create dynamic playlist using new plugin addon…
Addon need MP3 Folder link to read all mp3 files in any folder publicly accessed
Example: http://www.svnlabs.com/mp3/ http://www.svnlabs.com/songs/
HTML5 MP3 Player with Playlist addon can read private folders using PHP on same server
Customization is not possible for free version
Customization is not possible for free version
You need to purchase code for HTML5 MP3 Player
You can add us on skype: svnlabs for more help
Tabbed playlists in single player
We are developers of HTML5 MP3 Player
We will be happy to assist you
Tabbed playlists in single player is possible
Is it possible to use a larger cover album i.e square (300×300) instead of rectangles (300×60)
We have 3 options in HTML5 MP3 Player with rectangle cover image
You can easily customize rectangle cover image to square cover image
You need to edit cover image size in PHP files
- html5full.php
- html5small.php
- html5big.php
Widget in WordPress sidebar
You can add iFrame code from HTML5 MP3 Player plugin in wordpress sidebar…
Please check short-code here
http://html5.svnlabs.com/shortcodes/
If you have self hosted plugin then you need to replace domain name
html5.svnlabs.com => www.domain.com
iFrame Codes
Small Player (No Playlist): <iframe src="http://html5.svnlabs.com/html5small.php?id=1" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" width="347" height="207"></iframe>
Full Player (With Playlist): <iframe src="http://html5.svnlabs.com/html5full.php?id=276" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" width="566" height="207"></iframe>
Connection refused (111) while reading icecast stream
fsockopen() [function.fsockopen]: unable to connect to icecast-ip-address:port (Connection refused)
IceCast Stream
http://icecast-ip-address:port/stream
http://icecast-ip-address:port/live
You must contact to your icecast hosting support for IP, Port, Domain blocking
Make sure you have icecast port opened on HTML5 MP3 Plugin server
Read MP3 files from folder for HTML5 MP3 Player with Playlist
Now plugin users can create dynamic playlist using new plugin addon…
Addon need MP3 Folder link to read all mp3 files in any folder publicly accessed
Example: http://www.svnlabs.com/mp3/ http://www.svnlabs.com/songs/
HTML5 MP3 Player with Playlist addon can read private folders using PHP on same server
Other plugin
Fatal error: Call to undefined function dbDelta() in ** wp-content/plugins/html5-video-player-with-playlist/index.php on line 211
HTML5 Video Player plugin uses Flash & HTML5 on all modern devices and web browsers, On Android, iPhone and iPad the Video Player will go to HTML5 mode.
When you try to activate it.. If you get Fatal error: Call to undefined function dbDelta() in ** wp-content/plugins/html5-video-player-with-playlist/index.php on line 211
Easy Fix:
Find dbDelta($sql); in plugin file “index.php” and replace it with
//dbDelta($sql);
$wpdb->query($sql);
OR
//dbDelta($sql);
mysql_query($sql);
Single HTML5 Video without Playlist
HTML5 Video Player with Playlist have HTML5 video the element enable native video playback within the browser. It supports all browsers i.e. iOS, Android, Firefox, Chrome, Safari, IE and Opera.
You can enable single html5 video without playlist using below code..
You need to remove 2 options in JavaScript
playlist: ‘<?php echo plugin_dir_url(__FILE__); ?>../xml/<?php echo $xml; ?>’,
vertical: <?php echo $playlistmod; ?>,
For single video JavaScript look like →
<script type=”text/javascript”>
jQuery(function() {
jQuery(“#html5player<?php echo $rnd; ?>”).html5player({
width: ‘<?php echo $width; ?>px’,
height: ‘<?php echo $height; ?>px’,
autoNext: <?php echo $autonext; ?>,
shuffle: <?php echo $shuffle; ?>,
loop: <?php echo $loop; ?>,
scrollMode: “hover<?php //echo $scrollmode; ?>”, //”auto”
logo: “<?php echo $logo; ?>” // logo.png
});
});
</script>
<video id=”html5player<?php echo $rnd; ?>” src=”VIDEO-LINK” poster=”VIDEO-IMAGE-LINK”></video>
Browser & format support
HTML5 MP3 Player uses native <audio> where available and an invisible flash player to emulate <audio> for other browsers. It provides a consistent html player UI to all browsers which can be styled used standard css.
Browser & format support
With Flash as a fallback, it should work pretty much anywhere.
It has been verified to work across:
- Mobile Safari (iOS 3+)
- Android (2.2+, w/Flash), Android (4.0+)
- Safari (4+)
- Chrome (7+)
- Firefox (3+, w/ Flash)
- Opera (10+, w/ Flash)
- IE (6, 7, 8, w/ Flash)
Sharing to Facebook with OG tags via an iFrame embed
There is a og:url tag in Facebook Open Graph Tags. If you know the parent page URL of the embedded content, you can set og:url parameter with the parent page URL. Then, it behaves like the way you share the parent page.
<meta property=”og:type” content=”article”/>
<meta property=”og:title” content=”TITLE”/>
<meta property=”og:url” content=”URL”/>
<meta property=”og:image” content=”IMAGE”/>
<meta property=”og:description” content=”DESCRIPTION…”/>
<meta property=”og:site_name” content=”WEBSITE”/>
<meta property=”fb:app_id” content=”FB_APP_ID”/>
WordPress Plugin Paid Features
Paid Features…
1. Vertical (Big) playlist
2. Random/Shuffle mode in playlist
3. Download Option
4. Customize Twitter / Facebook links
5. Support iOS / Android
6. Stream MP3 HTTP Stream from Wowza, Cloudfront, CDN etc.
7. More customization available as you get full files hosted on your server
Embed Code option with HTML5 MP3 Player
Embed Code Button in HTML5 MP3 Player

Iframe based Embed code text area to copy code

Demo
How to use HTML5 Radio Player for Shoutcast or Icecast?
Hope you have already purchased “HTML5 MP3 Radio FM Stream” from here http://html5plus.svnlabs.com/shop/html5-mp3-radio-fm-stream/
Check Radio Demo here… http://html5plus.svnlabs.com/shop/html5-mp3-radio-fm-stream/
There is a difference between versions of shoutcast. 1.9.9 doesn’t support HTML5 Audio where 1.9.8 is compatible with HTML5 Audio
Please check our FAQ Section for more help…
Shoutcast Stream is not working?
Amazon S3 Bucket Endpoint
Amazon S3 Bucket Region and there Website Endpoint
US Standard : s3-website-us-east-1.amazonaws.com
US West (Origon) Region : s3-website-us-west-2.amazonaws.com
US West (Northern California) : s3-website-us-west-1.amazonaws.com
EU (Ireland) : s3-website-eu-west-1.amazonaws.com
Singapore ( Asia Pacific ) : s3-website-ap-southeast-1.amazonaws.com
Tokyo ( Asia Pacific ) : s3-website-ap-northeast-1.amazonaws.com
South America (Sao Paulo) Region : s3-website-sa-east-1.amazonaws.com
Query String Limit and Size Limit in GET Data
“Servers should be limit on URI lengths above 255 bytes because some older client or proxy implementations may not properly support these lengths.”
Different browser agents support different URI length acceptance. In addition, servers too play a role in accepting/denying URI’s over certain length which may either truncate the URI or may give lengthy URI message indications.
Call to undefined function parse_ini_string() in html5/icecast.php
WordPress and Standalone HTML5 MP3 Radio FM Stream Plugin compatible with iOS, Android and supports all browsers Firefox, Chrome, Safari, IE and Opera!
HTML5 MP3 Radio FM MP3 Stream Player can grab “Now Playing Song Information” on player as StreamTitle for Shoutcast and Icecast Streams.
HTML5 MP3 Radio Icecast Stream player and have got the stream to play but I get this error…
“Fatal error: Call to undefined function parse_ini_string() in
/public_html/wp-content/plugins/shoutcast-icecast-html5-radio-player/html5/icecast.php on line 51″
Solution:
Comment the if conditions for function parse_ini_string( $string )
///if( !function_exists(‘parse_ini_string’) ){
///}
Copyrighted Music
Copyrighted Music Publicly?
When you buy an audio file, software, or CD, even those specifically marketed for business purposes, the purchase price covers only your private listening use, regardless of how they are labeled. Once you decide to play any copyrighted music publicly, you need permission from the copyright owners……
Can I add copyrighted songs to the player?
Of course you can, unlike a common misconception, you are not “uploading” files to the player, you are letting the in-game player know where your music files are on your computer. No uploading of any music takes place, you can add any songs you want to your music player……
Music Sharing?
We know about legal music sharing and violating copyright by hosting MP3 files on our hosting server. We are providing HTML5 MP3 Music/Audio Player with Flash fallback to listen MP3 music to our customers/users. The customers are purchasing HTML5 MP3 Player with playlist not music.
We are not selling or hosting or uploading copyrighted or unlicensed music on our hosting server…….
http://html5.svnlabs.com/

















