Go Back   Video Editing Forums: Digital Director > Video Editing: Software Problems and buying advice > Adobe Premiere, Premiere Elements, and After Effects

Adobe Premiere, Premiere Elements, and After Effects For users of Adobe Premiere 6.0, 6.5 and Premiere Pro. Post problems, tips and queries!

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 05-31-2004, 09:06 AM
Member
Video Editing Junkie
 
Join Date: Dec 2003
Posts: 54
0 Videos nominated
Video Of the Month(s): 0
sheenie
Default [dreamweaver] insert movie

Hi, I asked several forum but I can't find a proper answer.
This is my question, sorry if you don't think it's related to this forum..

So I made my movie with premiere pro, compressed it into a .wmv and now I want to insert it into my site.

Before, I let them just download the movie in a .rar and play it from their HD. but know I want to insert the movie via dreamweaver..?
I tried with insert ActiveX , but the movie wont start...:/ any help?

And I also want to make it in a pop up window with the right size, if there is anybody here who can help me with this please do.

thanks..!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 05-31-2004, 09:32 AM
Marc Peters's Avatar
Administrator
 
Join Date: Nov 2003
Location: Kent
Posts: 8,797
0 Videos nominated
Video Of the Month(s): 0
Marc Peters has disabled reputation
Default

Insert the following html code:

Code:
<object classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" codeBase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,0,02,902" height="200" id="MediaPlayer1" type="application/x-oleobject" width="304" standby="Loading Microsoft Windows Media Player components..." border="1">
            <param NAME="FileName" value="golf2.wmv">
            <param NAME="ShowControls" value="-1">
            <param NAME="ShowPositionControls" value="-1">
            <param NAME="ShowAudioControls" value="-1">
            <param NAME="ShowTracker" value="0">
            <param NAME="ShowDisplay" value="0">
            <param NAME="ShowStatusBar" value="0">
            <param NAME="AutoSize" value="0">
            <param NAME="ShowGotoBar" value="0">
            <param NAME="ShowCaptioning" value="0">
            <param NAME="AutoStart" value="0">
            <param NAME="AnimationAtStart" value="-1">
            <param NAME="TransparentAtStart" value="0">
            <param NAME="AllowScan" value="0">
            <param NAME="EnableContextMenu" value="0">
            <param NAME="ClickToPlay" value="0">
            <param NAME="InvokeURLs" value="0">
            <param NAME="DefaultFrame" value="datawindow">
            <param name="AudioStream" value="-1">
            <param name="AllowChangeDisplaySize" value="-1">
            <param name="AutoRewind" value="0">
            <param name="Balance" value="0">
            <param name="BaseURL" value>
            <param name="BufferingTime" value="5">
            <param name="CaptioningID" value>
            <param name="CursorType" value="0">
            <param name="CurrentPosition" value="-1">
            <param name="CurrentMarker" value="0">
            <param name="DisplayBackColor" value="0">
            <param name="DisplayForeColor" value="16777215">
            <param name="DisplayMode" value="0">
            <param name="DisplaySize" value="4">
            <param name="Enabled" value="-1">
            <param name="EnablePositionControls" value="-1">
            <param name="EnableFullScreenControls" value="0">
            <param name="EnableTracker" value="-1">
            <param name="Language" value="-1">
            <param name="Mute" value="0">
            <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="SelectionStart" value="-1">
            <param name="SelectionEnd" value="-1">
            <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="VideoBorderWidth" value="0">
            <param name="VideoBorderColor" value="0">
            <param name="VideoBorder3D" value="0">
            <param name="Volume" value="-600">
            <param name="WindowlessVideo" value="0">
<EMBED type="application/x-mplayer2" 
pluginspage="http://www.microsoft.com/Windows/MediaPlayer/"
name="MediaPlayer1" width="240" height="210" 
AutoStart="true" showcontrols="1" 
showpositioncontrols="0" 
showaudiocontrols="1" 
showtracker="0" 
showdisplay="0" 
showstatusbar="0" 
autosize="0" 
showgotobar="0" 
showcaptioning="0" 
autorewind="0" 
animationatstart="1" 
transparentatstart="0" 
allowscan="0"
enablecontextmenu="0" 
clicktoplay="0" 
invokeurls="0"
defaultframe="datawindow">
</EMBED>
</object>
Replace golf.wmv in <param NAME="FileName" value="golf2.wmv"> with the name of your video
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 05-31-2004, 09:45 AM
Marc Peters's Avatar
Administrator
 
Join Date: Nov 2003
Location: Kent
Posts: 8,797
0 Videos nominated
Video Of the Month(s): 0
Marc Peters has disabled reputation
Default

To make a window pop up a cerrtain size, first insert the following code between the <HEAD> tags:

Code:
<SCRIPT LANGUAGE="JavaScript">
function popup(page) {
window.open(page,'popup','width=500,height=300,toolbar=false,scrollbars=false');
}
</SCRIPT>
then use the following to create the link between the <BODY> tags:

Code:
link 
adjust to your needs.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 05-31-2004, 09:48 AM
Member
Video Editing Junkie
 
Join Date: Dec 2003
Posts: 54
0 Videos nominated
Video Of the Month(s): 0
sheenie
Default

Tnx, I'll try it this evening,
now, got to work for school
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 05-31-2004, 11:05 AM
Member
Video Editing Junkie
 
Join Date: Dec 2003
Posts: 54
0 Videos nominated
Video Of the Month(s): 0
sheenie
Default

The link is on the page that redirects it?
cause It's a flash site, how do I have to insert the java plugin then?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 05-31-2004, 12:03 PM
Member
Video Editing Junkie
 
Join Date: Dec 2003
Posts: 54
0 Videos nominated
Video Of the Month(s): 0
sheenie
Default

Ah, I found it how to do it in flash
tnx!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 05-31-2004, 11:53 PM
Senior Member
Video Editing Junkie
 
Join Date: Feb 2004
Location: Indiana
Posts: 336
0 Videos nominated
Video Of the Month(s): 0
Gwenny The Vegie
Send a message via AIM to Gwenny The Vegie
Default

(mark typed that whole code with one hand behind his back and a blindbold over his eyes) :lol:
__________________
Frank Sinatra - \"Thats Life, Biatch\"
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 05-31-2004, 11:56 PM
Marc Peters's Avatar
Administrator
 
Join Date: Nov 2003
Location: Kent
Posts: 8,797
0 Videos nominated
Video Of the Month(s): 0
Marc Peters has disabled reputation
Default

This is so true. :lol: Not only that, it was also "typed" using speech recognition software...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
DVD Architect - can you insert web links? Bansaw Sony Vegas and Media Studio 6 11-10-2006 01:58 PM
can I insert chapters? thewoolly General Software Problems 0 05-14-2006 03:09 AM
*Need program to insert logo* kruzweb General Software Problems 11 04-16-2006 01:18 PM
Insert video here paragliding User Videos 3 02-19-2006 07:40 PM
How to insert a face onto a moving person Chulio General Software Problems 8 09-24-2005 09:06 AM


All times are GMT. The time now is 12:43 AM.