Mini Flash Music Player
Frequently Asked Questionsthen contact our support service
Questions
Is the MINIPlayer extension MAC compatible ?
Are any programming skills needed to use this player?
What browsers does it support?
The speed at which it plays is way too fast. What is wrong ?
Are the .FLA sources included with the purchase ?
Do I need to know about XML in order to use the player ?
Is there a way to change the player's colors ?
Is this music player secure in order to prevent the audio file being downloaded ?
I'm looking for a more advanced Flash Music Player.
I'm looking for a bigger player with a playlist area. Where can I find one ?
Can I insert the Flash Music Player into another Flash movie (ex: in my movie timeline)?
The title of the track currently playing says 'unknown'or the file name. How can I fix it?
Is it possible to database drive the playlist ?
Can I put more than one music player on the same page?
Can I database drive the playlist using ASP?
I can't get my playlist to play more that one song. What happens?
Is your webbased player completely independent of audio players on the pc, like media player etc..?
The player does not work. What is happening?
Can I play a single dynamically selected song with MINIPlayer?
Answers
Is the MINIPlayer extension MAC compatible ?
Are any programming skills needed to use this player?
What browsers does it support?
- Safari
- Firefox
- Opera
- Internet Explorer for Windows
- Netscape
- Mozilla
The extension is MAC compatible. Our extensions are tested, approved and published by the Adobe Exchange Team at http://www.adobe.com/cfusion/exchange/index.cfm
The speed at which it plays is way too fast. What is wrong ?
Are the .FLA sources included with the purchase ?
Do I need to know about XML in order to use the player ?
However, even if you need further edition to the configuration or playlist files, you can do it using Dreamweaver or any other text editor like Notepad. If you need additional info, you can contact our support service.
Is there a way to change the player's colors ?
Is this music player secure in order to prevent the audio file being downloaded ?
If you are looking for a Secure Flash Music Player for selling music or other audio files, then please check out our SecureTSPlayer, published in www.tsplayer.com.
I'm looking for a more advanced Flash Music Player.
I'm looking for a bigger player with a playlist area. Where can I find one ?
There is also available a more advanced flash music player: SecureTSPlayer.
Can I insert the Flash Music Player into another Flash movie (ex: in my movie timeline)?
The title of the track currently playing says 'unknown'or the file name. How can I fix it?
Is it possible to database drive the playlist ?
The playlist is an text/xml format file, and the name of the playlist file is passed as parameter to the Flash (player), so it can be "playlist.php", "playlist.asp", .... see the following example:
Code on your page:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/
shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="355" height="316">
<param name="movie" value="MINIPlayer.swf">
<param name="quality" value="high"><param name="wmode" value="transparent">
<param name="FlashVars" value="playlistfile=playlist.php&
configurationfile=configuration.xml">
<embed src="MINIPlayer.swf" quality="high" wmode="transparent" flashvars="playlistfile=playlist.php&configurationfile=configuration.xml" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="355" height="316"></embed>
</object>
Playlist file (PHP sample):
<?php echo "<"; ?>?xml version="1.0" encoding="iso-8859-1"?>
<playlist>
<?php while (.... [some buckle condition] ....) {?>
<element url="<?php echo [the file name form the database row]; ?>" />
<?php } ?>
</playlist>
You can pass a GET parameter to the playlist file, or just use a session cookie to identify the user profile.
Can I put more than one music player on the same page?
Can I database drive the playlist using ASP?
Code on page ("id" is passed as GET parameter):
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/
shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="355" height="316"><br />
<param name="movie" value="MINIPlayer.swf"><br />
<param name="quality" value="high"><param name="wmode" value="transparent"> <param name="FlashVars" value="playlistfile=playlist.asp%3Fid%3d<%=Request("id")%>&
configurationfile=configuration.xml"><br />
<embed src="MINIPlayer.swf" quality="high" wmode="transparent" flashvars="playlistfile=playlist.asp%3Fid%3d<%=Request("id")%>&
configurationfile=configuration.xml" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="355" height="316"></embed><br />
</object>
The playlist file:
<%
' here load the recordset form database into RS var
' note: "id" was passed as GET parameter
%>
<?xml version="1.0" encoding="iso-8859-1"?>
<playlist>
<% While (Not RS.EOF) %>
<element url="<% Response.Write RS.Fields.Item("SongFileName") %>" />
<% RS.MoveNext %>
<% WEnd %>
</playlist>
Note: You can create a similar code using ASP or any other server side script.
I can't get my playlist to play more that one song. What happens?
<?xml version="1.0" encoding="iso-8859-1"?>
<playlist>
<element url="all-you-need-is-love.mp3" />
<element url="yellow-submarine.mp3" />
</playlist>
Note: the missing character is marked in red, add it to your playlist.
Is your webbased player completely independent of audio players on the pc, like media player etc..?
The player does not work. What is happening?
1- Please, be sure to upload all required files, including the MINIPlayer folder, the SWF files and your songs.If you are using Dreamweaver, this files and paths are generated automatically.
2- Please, be sure that you are using the right paths in your page source (into the object tag parameters) and into the files "configuration.xml" and "playlist.xml".
If the problem persists, contact our support service offering information about the error, example, your test page URL. Our support service will check your page and tell you how fix it.
Can I play a single dynamically selected song with MINIPlayer?
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/
shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="355" height="316">
<param name="movie" value="MINIPlayer.swf">
<param name="quality" value="high"><param name="wmode" value="transparent">
<param name="FlashVars" value="playlistfile=playlist.php%3Fmp3file%3D/myurl/mysong.mp3&
configurationfile=configuration.xml">
<embed src="MINIPlayer.swf" quality="high" wmode="transparent" flashvars="playlistfile=playlist.php%3Fmp3file%3D/myurl/mysong.mp3&
configurationfile=configuration.xml" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="355" height="316"></embed>
</object>
Note the change (encoding) of "?" per "%3F" the change of "=" per "%3D".
The "playlist.php" file will be:
<?php echo "<"; ?>?xml version="1.0" encoding="iso-8859-1"?>
<playlist>
<element url="<?php echo $_GET["mp3file"]; ?>" />
</playlist>
You can create a similar code with any other server side script.