Thanks Corey for the quick response, by that I mean, I am not sure if the wmv will show a photo attached to it. Can I show a photo associated to it? That is all.
Mike
Main Topics
Browse All TopicsI know this is a simple question and I am just missing something but here it goes. I am developing a website in Frontapage 2002. There will be a page on this site called "videos" for its members. How can I attach wmv and other multi-media files for that fact to this page? Can I attach a photo to that file to show the wmv's contents?
I have searched this website as well as Front Page's help and not found any comments on this. I am not talking about running a wmv when they open the page.
Thanks for the help
Mike
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Use this code:
<object id="MediaPlayer" width=320 height=286
classid="CLSID:22D6F312-B0
standby="Loading Microsoft® Windows® Media Player components..."
type="application/x-oleobj
codebase="http://activex.m
<param name="filename" VALUE="interview_fox_video
<param namee="autoStart" VALUE="true"> <PARAM NAME="showControls" VALUE="true">
<param name="ShowStatusBar" value="true"> <PARAM NAME="Autorewind" VALUE="true">
<param name="ShowDisplay" VALUE="false">
<embed src="interview_fox_video.a
</embed></object>
Replace interview_fox_video.asx in BOTH places to the path of your multi-media file
-Corey
Corey, as you suggested I performed the following setps with the following results on a page on a test website:
1). moved the cursure to a point on the page. selected insert, picture, then video. Selected a wmv file that I moved to a folder on the website.
2). Did the same thing with a file in a different area of the page for a file that ends in avi.
3). In another area of the page inserted a file with an extension of mp2.
Saved the page in Front Page and moved it to the web. The files are in the folder on the website but when I click on the folder nothing happens. What am I doing wrong? Any ideas?
Thanks again.
Mike
I have been playing around a little bit with Front Page trying to figure out what is going on. Even though I select the file I see that FP is not moving the the modules to the website. What I did was delete the modules from the site, delete them from the FP page and readd them, republish the site and I see that they are not there. Cannot figure out what is going on.
Mike
hey - heres how you do it
you have to create some "pointer" files in order for this to work
first create a folder on your web to test this
called vidtest
in vidtest folder - put in your video file
then open notepad and enter this:
<ASX VERSION="3.0">
<ENTRY>
<REF HREF="1.wmv" />
</ENTRY>
</ASX>
replace 1.wmv with the file name of your video file
close and save that file - i usually name it the same as the video file, but it ends with .wvx (ex. 1.wvx)
so you end up with
1.wmv - the actual movie file
1.wvx - the pointer file to the video
then create a new page and name it testvideo.htm and save in same directory
then open that page and paste this in your html view under the <body> tag
this is the movie object - you cna look thru
you may see some duplication
the object bit is for windows media on IE, and the embed section is to make Netscape works
change the height and width in each section
change VALUE="1wmv.wvx" to the location/name of your wvx file
change it here too - SRC="1.wvx"
<OBJECT
ID=MediaPlayer1
Name="MediaPlayer1"
CLASSID="CLSID:22D6F312-B0
codebase="http://activex.m
HEIGHT=800
WIDTH=600
>
<PARAM NAME="FILENAME"
VALUE="1wmv.wvx">
<PARAM NAME="AutoStart" VALUE="-1">
<PARAM NAME="ShowControls" VALUE="-1">
<PARAM NAME="ShowTracker" VALUE="-1">
<PARAM NAME="Autosize" VALUE="-1">
<PARAM NAME="ShowStatusBar" VALUE="-1">
<PARAM NAME="ShowDisplay" VALUE="-1">
<EMBED TYPE="application/x=mplaye
pluginspage="http://www.mi
id=MediaPlayer1
Name="MediaPlayer1"
DisplaySize="4" //Fit To Size
AutoSize="-1"
BgColor="darkblue"
ShowControls="-1"
ShowTracker="-1"
ShowDisplay="-1"
ShowStatusBar="-1"
VideoBorder3D="-1"
WIDTH=320
Height=313
SRC="content/1.wvx"
autostart="-1"
DESIGNTIMESP="5311"
>
</EMBED></OBJECT>
save that page and browse it and you will see you video streaming to ya in media player embeded in web page
you cnatry changing the variables 1 at a time to see the changes
yes - heres an excellent example of both linking to streaming audio
and streaming video
the video shows how to use the embedded video technique as well
the audio links on that page dont embed windows media plarer, only link to the streaming media "pointer" file, like the video exmple I posted above
slightly different than above
to create a "pointer" file and stream WMA files (audio encoded with the windows media encoder)
open notepad and enter the lines below, replaceing audio1.wma with the name of you wma file
save it as audio1.wax
<ASX VERSION="3.0">
<ENTRY>
<REF HREF="audio1.wma" />
</ENTRY>
</ASX>
the audio1 part of audio1.wax you can name whatever you like - i like to name it the same as media file
just to make it easy when I create the hyperlink in frontpage
in frontpage, you create the hyperlink to the .wax file (not the actual media file) - when that link is clicked, it will start streaming the file to windows media player
the same is true if you want to just display video in windows media player and not embed it in the web page (as I did above)
just create a wvx file like described in previous post, and create a hyperlink to the wvx file and when clicked it will start streaming the file to windows media player
IN SUMMATION:
In order to stream windows media files, so they start playing right away rather than having to be fully downloaded, you have to:
1 - create wmv versions of your video files, using Windows MovieMaker or some other video editing program
2 - create wma version of you audio files, using Windows MEdia Encoder or some other audio editing program
3 - upload those media files to a folder on you website
4 - create a .wvx file to point to the video file you want to stream - easier to place it in same folder as video file
5 - create a .wax file to point to audio file you want to stream - easier to place it in same folder as video file
6 - create hyperlinks to either the .wvx or .wax files rather than the actual media files themselves
7 - the .wvx and .wax files serve as "pointers" to tell WMP to "stream that file"
8 - use code above to embed the WMP into a webpage so you can keep other content on the screen at the same time as the video
lemme know if there is anything else!!
Appreciate all the suggestions. I have been doing allot of reading and testing. I have come to the point where I am now getting video files to work but in a strange way. If I have three video files on a page, call them A, B, and C. If I click on file B video C will play. If I click on video A, videos A and B will play. Here is the code:
<table border="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber1">
<tr>
<td width="33%">
<p align="center"><img border="0" dynsrc="blowup.mpeg" start="fileopen"></p>
<p align="center"><b>Girl blowing a beach ball</b></td>
<td width="33%">
<p align="center">
<img border="0" dynsrc="Divaball1.mpeg" start="fileopen" src="diva.jpg" width="110" height="132"></p>
<p align="center"><b>Diva and beach ball part 1</b></td>
<td width="34%">
<p align="center">
<img border="0" dynsrc="Divaball2.mpeg" start="fileopen" src="diva.jpg" width="110" height="132"></p>
<p align="center"><b>Diva and beach ball part 2</b></td>
</tr>
</table>
Can anyone help.
Thanks
Business Accounts
Answer for Membership
by: coreybryantPosted on 2005-08-05 at 05:57:57ID: 14606915
Not exactly sure what you mean when you say you would like to attach a photo to that file? What file, the WMV? Are you wanting to take a screen shot?
-Corey