Flash Music Player
Frequently Asked Questionsthen contact our support service
Questions
Are the .FLA sources included with the purchase ?
Is the extension MAC compatible ?
What is the cost of a custom skin design ?
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 TSPlayer version 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 thin or smaller Flash music player. Where can I find it ?
Can I insert the Flash Music Player into another Flash movie (ex: in my movie timeline)?
Are any programming skills needed for using TSPlayer?
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 TSPlayer 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?
Can I use the player with my own site background?
Is your webbased player completely independable of audio players on the pc, like media player etc..?
Player does not work. What happens?
Can I play a single dynamically selected song with TSPlayer?
Answers
Avoid any sample rate that isn't a multiple of 11,025Hz. Many hardware and software MP3 players including those ones using Adobe/Macromedia Flash won't play anything that isn't a multiple of 11,025. The recommended ratio are 11, 22 or 44 KHz. Any other can give you speed conflicts when using Flash Music Players.
The bitrate you use when exporting your .swf files depends on your needs, here are some of the common bitrates and their quality levels:
- 16 kbit/s - Minimum (Ideal for voice)
- 32 kbit/s - Intermediate
- 64-96 kbit/s - Recommended
- 128 - 256 kbit/s - Best (CD Quality)
Are the .FLA sources included with the purchase ?
Is the extension MAC compatible ?
What is the cost of a custom skin design ?
First step: you send us your request details (design guidelines, url of your web,...).
Second step: Pay the amount of US$149.00 (cost of the development service). In case you are not satisfied with the final product, we will refund the 85% of the payment. Payment via Paypal (credit cards accepted) or MoneyBookers.
Third step: Within 2 days we will send you two design proposals. You select one for revisions and development.
Fourth step: The selected design will go through as many as three revisions before the elaboration of the final product (the player skin).
Fifth step: You get your custom player skin (1 more day for the final development).
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 ?
As alternative you can request a quote for custom changes or a custom skin.
Is this TSPlayer version 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.
SecureTSPlayer is a more advanced Flash Music Player designed to work as a secure Flash Music Player, and has many other amazing new features.
However, we continue selling TSPlayer on this site as a single and cheaper version.
I'm looking for a more advanced Flash Music Player.
However we continue offering this old version as a single and cheaper solution.
I'm looking for a thin or smaller Flash music player. Where can I find it ?
However, if you are looking for a really thin music player, then take a look to our Mini Flash Music Player.
Another solution is to put the player on a top or bottom frame on your page.
Can I insert the Flash Music Player into another Flash movie (ex: in my movie timeline)?
Are any programming skills needed for using TSPlayer?
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 (TSPlayer), 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="TSPlayerV2.1.swf">
<param name="quality" value="high"><param name="wmode" value="transparent">
<param name="FlashVars" value="playlistfile=playlist.php&configurationfile=configuration.xml">
<embed src="TSPlayerV2.1.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 TSPlayer 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="TSPlayerV2.1.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="TSPlayerV2.1.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.
Can I use the player with my own site background?
<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="TSPlayerV2.1.swf"><br />
<param name="quality" value="high"><param name="wmode" value="transparent"> <param name="FlashVars" value="playlistfile=playlist.xml&configurationfile=configuration.xml">
<br /> <embed src="TSPlayerV2.1.swf" quality="high" wmode="transparent" flashvars="playlistfile=playlist.xml&configurationfile=configuration.xml" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="355" height="316"></embed><br />
</object>
Is your webbased player completely independable of audio players on the pc, like media player etc..?
Player does not work. What happens?
1- Please, be sure to upload all required files, including the TSPlayer 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 to fix it.
Can I play a single dynamically selected song with TSPlayer?
<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="TSPlayerV2.1.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="TSPlayerV2.1.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.
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