All Seeing Eyes Administrator
     member is offline
![[homepage] [homepage]](http://s2.images.proboards.com/buttons/www_sm.gif) Joined: Mar 2005 Gender: Male  Posts: 1,000,056 Location: Oxfordshire, UK
|  | Remote Embedded Player and Jukebox « Thread Started on May 7, 2005, 6:38pm » | |
New and simple player for audio or Video, when using either, be sure you have permissions sorted out before using media.
1. Upload your media to www.ripway.com, 2. copy this code to notepad
<script> self.resizeTo(550,600) </script> <center> <embed src="URL OF MUSIC OR VIDEO" width="500" height="400" autoplay="false" loop="X" /> </center>
3. edit the URL and sizes (as described below) 4. save notepad page as something like 'player.html' (you have to type .html after the filename) 5. upload player.html to ripway 6 . place this link in your header or footer <center> <a href="URL OF HTML FILE">NAME OF LINK</a> </center>
you can also link from a post [url=URL OF PLAYER.HTML] PLAY MUSIC [/url]
the self resize should be adjusted to give 150 more than the height of player, and 50 more than the width.
player size depends on wether you want to play a video, or just music (set to play vid, change to 500x45 for music)
autoplay false is to start media yourself, true is to self start. loop is for amount of times to play, can be a number, true, or false.
| |
|
All Seeing Eyes Administrator
     member is offline
![[homepage] [homepage]](http://s2.images.proboards.com/buttons/www_sm.gif) Joined: Mar 2005 Gender: Male  Posts: 1,000,056 Location: Oxfordshire, UK
|  | Re: Remote Embedded Jukebox « Reply #1 on Jun 19, 2005, 3:17am » | |
Want a remote jukebox ? Try this
same as the remote embedded above, but 4 players in this example, more can be added, i've also added a background color css, which can also be added to the single player.
<STYLE> <!-- BODY {background-color: 0000FF;} --> </STYLE>
<script> self.resizeTo(550,500) </script> <center>
<embed src="URL OF MEDIA 1" width="500" height="40" autoplay="false" loop="X" /><br /> <font color="FFFFFF" size="3">TITLE 1</font> <br /><br />
<embed src="URL OF MEDIA2" width="500" height="40" autoplay="false" loop="X" /><br /> <font color="FFFFFF" size="3">TITLE 2</font> <br /><br />
<embed src="URL OF MEDIA 3" width="500" height="40" autoplay="false" loop="X" /><br /> <font color="FFFFFF" size="3">TITLE 3</font> <br /><br />
<embed src="URL OF MEDIA 4" width="500" height="40" autoplay="false" loop="X" /><br /> <font color="FFFFFF" size="3">TITLE 4</font> <br />
</center>
| |
|
All Seeing Eyes Administrator
     member is offline
![[homepage] [homepage]](http://s2.images.proboards.com/buttons/www_sm.gif) Joined: Mar 2005 Gender: Male  Posts: 1,000,056 Location: Oxfordshire, UK
|  | Re: Remote Embedded Player and Jukebox « Reply #2 on Oct 26, 2005, 12:18pm » | |
'Javajuke' dropdown jukebox player.
Again same as above, but get this code
Dropdown Music selector
edit the urls of music, songNum[1] = "URL OF MUSIC";
and the titles <option value="1">TITLE</option>
if you want more titles/music, then add more lines like those above, but increment the numbers
songNum[5] = "URL OF MUSIC"; and <option value="5">TITLE</option>
to resize the page and give it colour as in the demo, add these codes to the top of the page
<STYLE> <!-- BODY {background-color: 0000FF;} --> </STYLE>
<script> self.resizeTo(250,300) </script>
then follow instructions in first post on how to save and upload.
| |
|
All Seeing Eyes Administrator
     member is offline
![[homepage] [homepage]](http://s2.images.proboards.com/buttons/www_sm.gif) Joined: Mar 2005 Gender: Male  Posts: 1,000,056 Location: Oxfordshire, UK
|  | Re: Remote Embedded Player and Jukebox « Reply #3 on Mar 9, 2008, 10:54am » | |
Basic remote page
example is for playlist
1. copy this code to notepad
<html> <head> <title>ASE's Remote Playlist</title> </head> <body text="FFFFFF" bgcolor="555555" link="FFFFFF" vlink="FFFFFF" alink="FFFFFF"> <script> self.resizeTo(550,500) </script> <center>
PLAYLIST CODE HERE
</center> </body> </html>
2. edit the sizes (as described below) 3. save notepad page as something like 'player.html' (you have to type .html after the filename) 4. upload player.html to ripway 5 . place this link in your header or footer <center> <a href="URL OF HTML FILE">NAME OF LINK</a> </center>
you can also link from a post [url=URL OF PLAYER.HTML] PLAY MUSIC [/url]
the self resize should be adjusted to give 150 more than the height of player, and 50 more than the width.
| |
|