![]() |
![]() |
![]() |
|||||
![]() |
![]() |
![]() |
![]() |
![]() |
|||
| Welcome
to Tech Support Forum home to more then 136,000 problems solved. Issues
have included: Spyware, Malware, Virus Issues, Windows, Microsoft,
Linux, Networking, Security, Hardware, and Gaming Getting your
problem solved is as easy as: 1. Registering for a free account 2. Asking your question 3. Receiving an answer Registered members: * See fewer ads. * And much more..
|
| Want to know how to post a question? click here | Having problems with spyware and pop-ups? First Steps |
|
|||||||
| Graphic Design, Digital Imaging, and Multimedia Working in two, three, and four dimensions |
![]() |
|
|
LinkBack | Thread Tools |
|
|
#1 (permalink) |
|
Registered User
Join Date: Jun 2006
Posts: 4
OS: XP Pro
|
Embedded Quicktime Randomized Playlist.
Alright Here's My Embedded Player:
Code:
<object codebase="http://www.apple.com/qtactivex/qtplugin.cab" width="395" scale="16:9"classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" height="225" ><param name="src" value="DIRECT PATH TO MEDIA" align="right"/><param name="controller" value="True" /><param name="autoplay" value="True" /><param name="cache" value="False" /><param name="kioskmode" value="False" /><param name="scale" value="tofit" /><embed src="DIRECT PATH TO MEDIA" pluginspage="http://www.apple.com/quicktime/download/" scale="tofit" kioskmode="False" qtsrc="DIERECT PATH TO MEDIA" cache="False" height="225" width="395" scale="aspect" controller="True" type="video/quicktime" autoplay="True" QTNEXT1="<DIRECT PATH TO MEDIA> T<myself>" QTNEXT2="GOTO0"></embed></object> QTNEXT#="<PATH> T<myself>" and turn that into: QTNEXT#="<RANDOM PATH FROM LIST OF URLS> T<myself>" Any help is appreciated! |
|
|
|
| Important Information |
|
Join the #1 Tech Support Forum Today - It's Totally Free!
TechSupportForum.com is a leading support website for your computer needs. We offer free, friendly and personalized computer support. Why pay to have your computer fixed when you can do it for free. Join TechSupportforum.com Today - Click Here |
|
|
#2 (permalink) |
|
Registered User
Join Date: Jun 2006
Posts: 4
OS: XP Pro
|
got it myself...
I figured out what you meant by the php thing. I got it to work awesome for both media player and quicktime. I just made a random url php file: Code:
<?php
// Go to a random URL
// http://www.bloodys.com/
// email: info@bloodys.com
// If you use this script, please put a link back to http://www.bloodys.com/
$url[0] = "http://PATH TO MEDIA";
$url[1] = "http://PATH TO MEDIA";
$url[2] = "http://PATH TO MEDIA";
$url[3] = "http://PATH TO MEDIA";
$url[4] = "http://PATH TO MEDIA";
$url[5] = "http://PATH TO MEDIA";
srand ((double)microtime()*1000000);
$randomnum = rand(0, count($url)-1);
header ("Location: $url[$randomnum]");
?>
Then in the Embedding code, use the URL to the PHP file in the place where you would normally put the URL of the media. NEXT STEP- MAKING VIDEOS PLAY ONLY ONCE IN SHUFFLE.... AGAIN TIPS WELCOME!<3 |
|
|
|
![]() |
| Thread Tools | |
|
|