Registered: April 24, 2010 | Posts: 2 |
| Posted: | | | | Kinda stuck hope you can help me out.
I am trying to embed a mp4 file into the windows html portion of dvd profile. I can embed both quick time and windows player. They both work I know this because I can view them working with the mp4 file in a web page. although both players can be embeded into the html is does not play the mp4 files within dvd profiler. Both the html file and the mp4 files are in the same location on the hard drive. Any help on this would be greatly apreciated been stuck on this for a while here is a copy of the code I used
I still have to teweak it a bit to get it to do what I want it to do. but I have to get it to play the file first. and if the location on the hard drive has to be specific I would have to know that as well <HTML> <head> <title>Animated Studios</title> </head> <body> <object classid="clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,0,02,902" width="320" height="180" type="application/x-oleobject"> <param name="filename" value="hds(4).mp4" /> <param name="autostart" value="true" /> <param name="showcontrols" value="false" /> <!--[if !IE]> <--> <object data="hds(4).mp4" width="320" height="180" type="application/x-mplayer2"> <param name="pluginurl" value="http://www.microsoft.com/Windows/MediaPlayer/" /> <param name="controller" value="false" /> </object> <!--> <![endif]--> </object> <DP NAME="STUDIOS" MaxList="1"> <DP NAME="CAST" MaxList="1"> </BODY> </HTML> |
|
Registered: April 14, 2007 | Posts: 433 |
| Posted: | | | | Try this. Mp4 files usually play with the Quicktime plugin in my experience.
<HTML> <head> <title>Animated Studios</title> </head> <body> <OBJECT CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab" WIDTH="320" HEIGHT="180" > <PARAM NAME="src" VALUE="hds(4).mp4"> <PARAM NAME="autoplay" VALUE="true"> <PARAM NAME="controller" value="false"> <EMBED SRC="QTMimeType.pntg" TYPE="image/x-macpaint" PLUGINSPAGE="http://www.apple.com/quicktime/download" QTSRC="hds(4).mp4" WIDTH="320" HEIGHT="180" AUTOPLAY="true" CONTROLLER="false"> </EMBED> </OBJECT> <DP NAME="STUDIOS" MaxList="1"> <DP NAME="CAST" MaxList="1"> </BODY> </HTML> | | | Chris |
|
Registered: April 24, 2010 | Posts: 2 |
| Posted: | | | | Hey Buddy Thanks for replying Still having the same problem. I have tried quick time plugin but I get the same problem. It wil play in a web page just as it does with windows media player but it will not play in DVD Profiler. The window (HTML) Studios Section: ST will show the plugin but will not play the file. But it does play the file on all of the browsers I have tested it with. This is why I am confused Maybe it would help if you knew what I was trying to do.
When I do a search queary for studios I.E. Universal studios I want a window to pop up and play the Universal studios Logos (IE The mp4 file) and if my queary is paramont pictures I want the parmont logo to play and so on. It sounds simple but it is giving me a headache I have been able to do this with other dvd datbase. It seems as though it is a file location problem I can't really put my finger on it. I know it seems a little crazy but the harder it is the more I want it to get it to work.
Any more help will keep me from banging my head agaisnt the wall Thanx Ric |
|