Click to See Complete Forum and Search --> : [RESOLVED] .mpg video in Dreamweaver


Feechi
04-20-2007, 02:05 PM
Is there any way to get a .mpg video into Dreamweaver without converting it to Flash?

ryanbutler
04-20-2007, 02:36 PM
You can import the video using an embed tag I believe.

Feechi
04-20-2007, 02:39 PM
I guess I wasn't clear in the initial post, but if it is possible, I need someone to tell me exactly how to do it.

Thanks

Feechi
04-20-2007, 03:12 PM
Adobe gave some good step by step instructions and this is what I've done. But it still doesn't work. What am I forgetting to do???

<object width="320" height="290"
classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95"
id="mediaplayer1"><param name="Filename" value="V1-FLOW.mpg"><param name="AutoStart" value="True"><param name="ShowControls" value="True"><param name="ShowStatusBar" value="False"><param name="ShowDisplay" value="False"><param name="AutoRewind" value="True"><embed src="1-BRYTNI_PAGE_FILES/V1-FLOW.mpg"
width="320" height="290" autostart="True" type="application/x-mplayer2"
pluginspage="http://www.microsoft.com/Windows/Downloads/Contents/MediaPlayer/"
filename="V1-FLOW.mpg"
showcontrols="True" showstatusbar="False"
showdisplay="False" autorewind="True"></embed>
</object>

ryanbutler
04-20-2007, 04:27 PM
See bolded text below, replace with the path to your video.

<object width="320" height="290"
classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95"
id="mediaplayer1">
<param name="Filename" value="V1-FLOW.mpg"><param name="AutoStart" value="True">
<param name="ShowControls" value="True">
<param name="ShowStatusBar" value="False">
<param name="ShowDisplay" value="False"><param name="AutoRewind" value="True">
<embed src="1-BRYTNI_PAGE_FILES/V1-FLOW.mpg"
width="320" height="290" autostart="True" type="application/x-mplayer2"
pluginspage="http://www.microsoft.com/Windows/Downloads/Contents/MediaPlayer/"
filename="V1-FLOW.mpg"
showcontrols="True" showstatusbar="False"
showdisplay="False" autorewind="True"></embed>
</object>