-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmusic_test.php
38 lines (28 loc) · 1.22 KB
/
music_test.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?
//require_once("xsf_player/");
// http://musicplayer.sourceforge.net/
?>
<?
// web path
$webroot = 'http://lukin.kicks-ass.net';
$playlistURL = $webroot.'/sample.xspf';
$repeatPlaylist = 'true';
$slimPlayer = $webroot.'/xsf_player/xspf_player_slim.swf';
$fullPlayer = $webroot.'/xsf_player/xspf_player.swf';
$buttonPlayer = $webroot.'/xsf_player/musicplayer.swf';
/* <a href="<?=$musicplayerPath;?>?playlist_url=<?=$playlistURL;?>&repeat_playlist=<?=$repeatPlaylist;?>">play!</a> */
?>
<h2>Slim Player</h2>
<object type="application/x-shockwave-flash" width="400" height="170" data="<?=$slimPlayer; ?>?playlist_url=<?=$playlistURL; ?>">
<param name="movie" value="<?=$slimPlayer; ?>?playlist_url=<?=$playlistURL;?>" />
</object>
<br>
<h2>Full Player</h2>
<object type="application/x-shockwave-flash" width="400" height="170" data="<?=$fullPlayer; ?>?playlist_url=<?=$playlistURL; ?>">
<param name="movie" value="<?=$fullPlayer; ?>?playlist_url=<?=$playlistURL;?>" />
</object>
<br>
<h2>Button</h2>
<object type="application/x-shockwave-flash" width="400" height="170" data="<?=$buttonPlayer; ?>?playlist_url=<?=$playlistURL; ?>">
<param name="movie" value="<?=$buttonPlayer; ?>?playlist_url=<?=$playlistURL;?>" />
</object>