Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

video in html

Status
Not open for further replies.

JamesGMills

Programmer
Aug 15, 2005
157
GB
Hi,

I am developing a system for use on plasma screen for a client to use in their reception.

Its basically run in browser using html.

My question is how do i play an video i have ripped from their company DVD from the hard drive in the browser.

Basically there is one computer that is used to run the plasma from and this is where i would put the 100MB+ video file however i need to find a way to then play this in the web page from the hard drive?

Can anyone please help?

------------------------
 
[QUOTE:James] My question is how do i play an video i have ripped from their company DVD from the hard drive in the browser. [/QUOTE]

I need to play this video from the hard drive, it is not online!

------------------------
 
The same information should apply, but the URL will change to show the local path rather than a web path.

Lee
 
Then you're going to have to show us what you have so far so we can work with that.

Lee
 
odd. taken from the URL I provided, this code works perfectly for me:

Code:
<object classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6" 
  id="player" width="320" height="260">
  <param name="url" 
    value="C:\retaliation.wmv" />
  <param name="src" 
    value="C:\retaliation.wmv" />
  <param name="showcontrols" value="true" />
  <param name="autostart" value="true" />
  <!--[if !IE]>-->
  <object type="video/x-ms-wmv" 
    data="C:\retaliation.wmv" 
    width="320" height="260">
    <param name="src" 
      value="C:\retaliation.wmv" />
    <param name="autostart" value="true" />
    <param name="controller" value="true" />
  </object>
  <!--<![endif]-->
</object>



*cLFlaVA
----------------------------
[tt]"quote goes here"[/tt]
[URL unfurl="true"]http://www.coryarthus.com/[/url]
 
I will try again tomorrow when back at work but it did not work for me on my first attempt.

I may need to rip the DVD into a few different formats and give it another shot. So far i tried with .mov and .avi

Thank you for your time, I will be back on this tomorrow.

------------------------
 
Sorry... I have tried again this morning and I got it working, using the code above. I will have a dig around the site linked to again and have a look around.

Sorry to have posted like a wolly!

------------------------
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top