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 derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Open video file on click 1

Status
Not open for further replies.

spookie

Programmer
May 30, 2001
655
IN
Hi,

How can i open a video file (.dat) on click ?

Also can someone tell me hoe to embed video file in html document?

TIA


--------------------------------------------------------------------------
I never set a goal because u never know whats going to happen tommorow.
 
Hi spookie,

First, a .dat file is not a standard video file. I've seen media files in the .dat format (mostly from VCDs), but you must use a standard media format that is associated with players on anyone elses PC as well.

Have a look at my reply in this post, to learn how to convert it. thread615-684554

Here's how to embed a video file in HTML:

[tt]<HTML>
<HEAD>
<TITLE>A video clip</TITLE>
</HEAD>
<BODY>
<EMBED SRC=&quot;video.avi&quot; AUTOSTART=&quot;TRUE&quot; LOOP=&quot;TRUE&quot; WIDTH=&quot;320&quot; HEIGHT=&quot;240&quot; ALIGN=&quot;CENTER&quot;>
<NOEMBED>
<A HREF=&quot;video.avi&quot;>
Click here!
</A>
</NOEMBED>
</BODY>
</HTML>
[/tt]

Good luck


Jakob
 
Thanks!!

--------------------------------------------------------------------------
I never set a goal because u never know whats going to happen tommorow.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top