1. You are viewing our forum as a guest. For full access please Register. WindowsBBS.com is completely free, paid for by advertisers and donations.

How to embed PhotoStory3 WMV Files in Front Page

Discussion in 'Other PC Software' started by efinigan, 2005/06/11.

Thread Status:
Not open for further replies.
  1. 2005/06/11
    efinigan

    efinigan Inactive Thread Starter

    Joined:
    2002/10/27
    Messages:
    7
    Likes Received:
    0
    I've been creating PhotoStory3 slideshows from my vacation photos but I have a problem when inserting more than one WMV video file in a PWP.

    In addition to being very slow to open, they begin to preview their contents and sounds as in http://home.comcast.net/~grins.and.frowns/cavan.htm

    Is there an inexpensive conversion method or a way to embed them without this problem?
     
  2. 2005/06/11
    PeteC

    PeteC SuperGeek Staff

    Joined:
    2002/05/10
    Messages:
    28,896
    Likes Received:
    389
    I looked at a couple and they worked perfectly for me :) Remember that the show has to be streamed down to the buffer before it starts playing in WMP - the speed of that depends on your internet connection. Even on broadband at 576 kps there is a delay before the show starts.

    Great show, BTW :D

    Moved to Other Software forum
     

  3. to hide this advert.

  4. 2005/06/11
    TonyT

    TonyT SuperGeek Staff

    Joined:
    2002/01/18
    Messages:
    9,072
    Likes Received:
    400
    You have an error/ommission in your html code, specifically you have no img src defined:

    Code:
    <td width= "21%" height= "125 "><!--mstheme--><font face= "trebuchet ms,arial,helvetica ">&nbsp;&nbsp;&nbsp;&nbsp; <a href= "http://home.comcast.net/~grins.and.frowns/CAV-1.wmv ">
        <img border= "0" dynsrc= "CAV-1.wmv" start= "fileopen" width= "160" height= "120" loop= "infinite "></a><!--mstheme--></font></td>
    You should be using an image or thumbnail image that can be clicked, not just the dynamic source of the multimedia file. And fileopen will slow the page loading considerable, unwise to have a video file open at page load.

    You'd be better using the <object> or <embed> tag instead of the <img> tag for wmv files. Here's a sample using <embed> which works in IE and other browsers:
    Code:
    <td width= "21%" height= "125 "><!--mstheme--><font face= "trebuchet ms,arial,helvetica ">&nbsp;&nbsp;&nbsp;&nbsp; <embed src= "http://home.comcast.net/~grins.and.frowns/CAV-1.wmv" width= "160" height= "120" loop= "infinite" autoostart= "false "><!--mstheme--></font></td>

    look closely and you'll see that you have "fileopen" for 2 separate wmv files, which means both will try to load and play at the same time. Not good as it will lockup slower computer systems.
    Code:
    <td width= "21%" height= "125 "><!--mstheme--><font face= "trebuchet ms,arial,helvetica ">&nbsp;&nbsp;&nbsp;&nbsp; <a href= "http://home.comcast.net/~grins.and.frowns/CAV-1.wmv ">
        <img border= "0" dynsrc= "CAV-1.wmv" start= "fileopen" width= "160" height= "120" loop= "infinite "></a><!--mstheme--></font></td>
        <td width= "20%" height= "125 "><!--mstheme--><font face= "trebuchet ms,arial,helvetica ">&nbsp;
        <a href= "http://home.comcast.net/~grins.and.frowns/CAV-2.wmv ">
        <img border= "0" dynsrc= "CAV-2.wmv" start= "fileopen" width= "160" height= "120" loop= "infinite "></a><!--mstheme--></font></td>
        <td width= "30%" height= "125 "><!--mstheme--><font face= "trebuchet ms,arial,helvetica ">
        <p align= "center "><b><i><font size= "5" face= "Trebuchet MS" color= "#008000 ">
        <a href= "http://home.comcast.net/~grins.and.frowns/CAV-2.wmv ">
     
    Last edited: 2005/06/11
Thread Status:
Not open for further replies.

Share This Page

  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.