[Plugin: Audio Player] Using as a standalone player
-
I am trying to use this player as a standalone player with the object tag to embed it in a page. I prefer to not use javascript for such a thing and the embed tag breaks page validation for XHTML Strict.
I am trying to play multiple tracks with the player in a comma delimited list as suggested in the documentation.
The tracks play but the display says “File not found” also the titles and artist are never shown nor ID3 info from the SoundFile if excluding
artists and titles options.The display time never increments and likewise if setting remaining=yes it does not decrement.
Pressing the pause button also does not always stop playback.
Below is the code I am using. If anyone has any ideas how to fix any of this it would be greatly appreciated.
<object type="application/x-shockwave-flash" data="https://domain.tld/mp3-player/swf/player.swf" id="audioplayer1" height="20" width="290"> <param name="movie" value="https://domain.tld/mp3-player/swf/player.swf"> <param name="FlashVars" value="playerID=1&autostart=yes&soundFile=https://domain.tld/play/song1.mp3,https://domain.tld/play/song2.mp3&titles=Song One,Song Two&artists=Artist A,Artist B"> <param name="quality" value="high"> <param name="menu" value="false"> <param name="wmode" value="transparent"> </object>
- The topic ‘[Plugin: Audio Player] Using as a standalone player’ is closed to new replies.