I’m a bit puzzled by your question. Attention, there’s no [tt]&no_repeat[/tt] parameter...
From the snippet parameters list (in xspf_jukebox.snippet.php):
/*
* &no_continue : turn off automatic song changing
* default = false
*/
'no_continue',
/*
* &repeat : repeat track
* default = false
*/
'repeat',
/*
* &repeat_playlist : repeat the playlist
* default = true
*/
From what I gather, you’re trying to play ONE track exactly ONE time, is this correct?
If so, how are you feeding the player? Are you using [tt]&playlist_url[/tt], [tt]&track_url[/tt], [tt]&playlist_url[/tt] or he default, [tt]&folder [/tt]?
Note: If you didn’t set any of these, then you’re using the default behaviour of playing mp3 on assets/media, in which case it’s the same as if you use [tt]&folder=`assets/media`[/tt]
Watch out for precedence between these parameters if you’re setting more than one of these at a time (then again, why would you want to do that?)
Bottom line: if you’re using anything other than &track_url, the correct parameter is [tt]&repeat_playlist[/tt], which is on by default. If this is your case, to prevent a single track from repeating call the snippet with [tt]&repeat_playlist=`0`[/tt]
Hope this helps,
JP