Ok, let me explain so that I can clarify before anyone points me to the "You Tube" and "Google Video" scripts.
I am looking to find a simple video script to allow the admin to upload videos to our site. The directory could be called /videos/ off the root folder. The embedded Windows Media player would sit on the videos.php page, and its playlist would search the /videos/ folder for the title of the videos.
Has anyone else been looking for this? The users or members are not able to upload videos, merely browse them.
The page layout would be as simple as the FAQ.php page included with VB. No real search element at all, merely a drop down list with the names of the videos.
The code I currently use for example is here:
http://www.christianlinks.com/video/
It really is that simple, merely wanting to embed the video player from windows media into the forum look. And the code could merely look in a folder.
Any ideas guys? I just was trying to find the WMV format only, and not other video hosting solutions. This would be amazing for a wide array of users for teaching, presentations, and more.
Does such a thing exist already? I searched, but no luck.
The code on my video page:
http://www.christianlinks.com/video/ is this:
Quote:
<SELECT id=cancion onchange=document.all.music.filename=document.all. cancion.value; size=1 name=Music>
<OPTION selected>Select your video to begin viewing:</OPTION>
<OPTION value=http://www.christianlinks.com/video/storage/Behold.wmv>Behold</OPTION>
<OPTION value=http://www.christianlinks.com/video/storage/AreYouReady.wmv>Are You Ready</OPTION>
<OPTION value=http://www.christianlinks.com/video/storage/WatchAndPray.wmv>Watch And Pray</OPTION>
<OPTION value=http://www.rightstanding.com/video/1-TheAgeOfTheEarth.wmv>CSE Video 1: The Age Of The Earth</OPTION>
<OPTION value=http://www.rightstanding.com/video/2-TheGardenOfEden.wmv>CSE Video 2: The Garden Of Eden</OPTION>
<OPTION value=http://www.rightstanding.com/video/3-DinosaursAndTheBible.wmv>CSE Video 3: Dinosaurs And The Bible</OPTION>
<OPTION value=http://www.rightstanding.com/video/4-LiesInTheTextbooks.wmv>CSE Video 4: Lies In The Textbooks</OPTION>
<OPTION value=http://www.rightstanding.com/video/5-TheDangersOfEvolution.wmv>CSE Video 5: The Dangers Of Evolution</OPTION>
<OPTION value=http://www.rightstanding.com/video/6-TheHovindTheory.wmv>CSE Video 6: The Hovind Theory</OPTION>
</SELECT><BR><BR>
<OBJECT id=music height=480 width=640 classid=clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95>
<PARAM NAME="AutoStart" VALUE="-1">
<PARAM NAME="Balance" VALUE="0">
<PARAM NAME="DisplaySize" VALUE="0">
<PARAM NAME="Filename" VALUE="">
<PARAM NAME="Mute" VALUE="0">
<PARAM NAME="SelectionStart" VALUE="-1">
<PARAM NAME="SelectionEnd" VALUE="-1">
<PARAM NAME="ShowControls" VALUE="-1">
<PARAM NAME="ShowAudioControls" VALUE="-1">
<PARAM NAME="ShowDisplay" VALUE="0">
<PARAM NAME="ShowPositionControls" VALUE="-1">
<PARAM NAME="Volume" VALUE="0">
<PARAM NAME="AudioStream" VALUE="-1">
<PARAM NAME="AutoSize" VALUE="0">
<PARAM NAME="AnimationAtStart" VALUE="-1">
<PARAM NAME="AllowScan" VALUE="-1">
<PARAM NAME="AllowChangeDisplaySize" VALUE="-1">
<PARAM NAME="AutoRewind" VALUE="1">
<PARAM NAME="BaseURL" VALUE="">
<PARAM NAME="BufferingTime" VALUE="5">
<PARAM NAME="CaptioningID" VALUE="">
<PARAM NAME="ClickToPlay" VALUE="-1">
<PARAM NAME="CursorType" VALUE="0">
<PARAM NAME="CurrentPosition" VALUE="-1">
<PARAM NAME="CurrentMarker" VALUE="0">
<PARAM NAME="DefaultFrame" VALUE="">
<PARAM NAME="DisplayBackColor" VALUE="0">
<PARAM NAME="DisplayForeColor" VALUE="16777215">
<PARAM NAME="DisplayMode" VALUE="0">
<PARAM NAME="Enabled" VALUE="-1">
<PARAM NAME="EnableContextMenu" VALUE="-1">
<PARAM NAME="EnablePositionControls" VALUE="-1">
<PARAM NAME="EnableFullScreenControls" VALUE="0">
<PARAM NAME="EnableTracker" VALUE="-1">
<PARAM NAME="InvokeURLs" VALUE="-1">
<PARAM NAME="Language" VALUE="-1">
<PARAM NAME="PlayCount" VALUE="1">
<PARAM NAME="PreviewMode" VALUE="0">
<PARAM NAME="Rate" VALUE="1">
<PARAM NAME="SAMILang" VALUE="">
<PARAM NAME="SAMIStyle" VALUE="">
<PARAM NAME="SAMIFileName" VALUE="">
<PARAM NAME="SendOpenStateChangeEvents" VALUE="-1">
<PARAM NAME="SendWarningEvents" VALUE="-1">
<PARAM NAME="SendErrorEvents" VALUE="-1">
<PARAM NAME="SendKeyboardEvents" VALUE="0">
<PARAM NAME="SendMouseClickEvents" VALUE="0">
<PARAM NAME="SendMouseMoveEvents" VALUE="0">
<PARAM NAME="SendPlayStateChangeEvents" VALUE="-1">
<PARAM NAME="ShowCaptioning" VALUE="0">
<PARAM NAME="ShowGotoBar" VALUE=0">
<PARAM NAME="ShowStatusBar" VALUE="1">
<PARAM NAME="ShowTracker" VALUE="-1">
<PARAM NAME="TransparentAtStart" VALUE="0">
<PARAM NAME="VideoBorderWidth" VALUE="0">
<PARAM NAME="VideoBorderColor" VALUE="0">
<PARAM NAME="VideoBorder3D" VALUE="0">
<PARAM NAME="WindowlessVideo" VALUE="0">
</OBJECT>
|