TechTalkz.com Logo

Go Back   TechTalkz.com Technology & Computer Troubleshooting Forums > Tech Support Archives > Microsoft > Microsoft Expression > Microsoft Expression Web Designer

Reply
 
Thread Tools Display Modes
Old 09-05-2008, 01:58 AM   #1
Javier
Guest
 
Posts: n/a
I can see the video in Firefox but not in IE 7.0

Hi, I followed the article of http://alistapart.com/articles/byebyeembed and
the code:

<object type="video/x-ms-wmv"
data="http://www.sarahsnotecards.com/catalunyalive/ ยป
fishstore.wmv"
width="320" height="260">
<param name="autostart" value="true" />
<param name="controller" value="true" />
</object>

to see the video, but in Firefox I can see the video fine, later that I
install a Plugin, but in Internet Explorer 7.0 I can't see the video, any
ideas of wath is wrong.

This is the link: http://www.solinme.com/videos/video.html

Best regards,

Javier Valverde
  Reply With Quote
Old 09-05-2008, 03:06 AM   #2
Steve Griffin
Guest
 
Posts: n/a
RE: I can see the video in Firefox but not in IE 7.0

Check out the blog I wrote on inserting a video.

http://blogs.msdn.com/xwebsupport/ar...sert-a-video.a
spx


-Steve G
  Reply With Quote
Old 09-05-2008, 04:04 AM   #3
Mike Mueller
Guest
 
Posts: n/a
Re: I can see the video in Firefox but not in IE 7.0

That code sample is invalid html due to the <embed>

The OP is on the right track, it is the data attribute that is causing the
issue- try this out:

<object type="video/x-ms-wmv" width="320" height="260">
<param name="filename"
value="http://www.sarahsnotecards.com/catalunyalive/fishstore.wmv" />
<param name="autostart" value="true" />
<param name="controller" value="true" />
</object>

"Steve Griffin" <stevengr@online.microsoft.com> wrote in message
news:O5RJv$UsIHA.1788@TK2MSFTNGHUB02.phx.gbl...
> Check out the blog I wrote on inserting a video.
>
> http://blogs.msdn.com/xwebsupport/ar...sert-a-video.a
> spx
>
>
> -Steve G


  Reply With Quote
Old 09-05-2008, 04:04 AM   #4
Javier
Guest
 
Posts: n/a
Re: I can see the video in Firefox but not in IE 7.0

Thanks Mike, your code fix the error.

Regards,

Javier Valverde



"Mike Mueller" wrote:

> That code sample is invalid html due to the <embed>
>
> The OP is on the right track, it is the data attribute that is causing the
> issue- try this out:
>
> <object type="video/x-ms-wmv" width="320" height="260">
> <param name="filename"
> value="http://www.sarahsnotecards.com/catalunyalive/fishstore.wmv" />
> <param name="autostart" value="true" />
> <param name="controller" value="true" />
> </object>
>
> "Steve Griffin" <stevengr@online.microsoft.com> wrote in message
> news:O5RJv$UsIHA.1788@TK2MSFTNGHUB02.phx.gbl...
> > Check out the blog I wrote on inserting a video.
> >
> > http://blogs.msdn.com/xwebsupport/ar...sert-a-video.a
> > spx
> >
> >
> > -Steve G

>

  Reply With Quote
Old 09-05-2008, 04:57 AM   #5
Javier
Guest
 
Posts: n/a
Re: I can see the video in Firefox but not in IE 7.0

Hi Mike:

Only a new question:

If I change the in the code "video/x-ms-wmv" the extension for other like
"mpeg", or "avi", it works too?.

Or I have to change in the:

value="http://www.sarahsnotecards.com/catalunyalive/fishstore." HERE?

Thanks a lot,

Javier

"Mike Mueller" wrote:

> That code sample is invalid html due to the <embed>
>
> The OP is on the right track, it is the data attribute that is causing the
> issue- try this out:
>
> <object type="video/x-ms-wmv" width="320" height="260">
> <param name="filename"
> value="http://www.sarahsnotecards.com/catalunyalive/fishstore.wmv" />
> <param name="autostart" value="true" />
> <param name="controller" value="true" />
> </object>
>
> "Steve Griffin" <stevengr@online.microsoft.com> wrote in message
> news:O5RJv$UsIHA.1788@TK2MSFTNGHUB02.phx.gbl...
> > Check out the blog I wrote on inserting a video.
> >
> > http://blogs.msdn.com/xwebsupport/ar...sert-a-video.a
> > spx
> >
> >
> > -Steve G

>

  Reply With Quote
Old 09-05-2008, 07:01 PM   #6
Mike Mueller
Guest
 
Posts: n/a
Re: I can see the video in Firefox but not in IE 7.0

Yes, changing the mime type to match the file should work.
What I generally do is to actually create a wvx playlist file, and then put
the actual filenames in there. It will still pull up WMP, and you can use
multiple files of different types inside of that.



"Javier" <Javier@discussions.microsoft.com> wrote in message
news:E5D38823-05E3-4453-ACF8-78B3BC5B93DB@microsoft.com...
> Hi Mike:
>
> Only a new question:
>
> If I change the in the code "video/x-ms-wmv" the extension for other like
> "mpeg", or "avi", it works too?.
>
> Or I have to change in the:
>
> value="http://www.sarahsnotecards.com/catalunyalive/fishstore." HERE?
>
> Thanks a lot,
>
> Javier
>
> "Mike Mueller" wrote:
>
>> That code sample is invalid html due to the <embed>
>>
>> The OP is on the right track, it is the data attribute that is causing
>> the
>> issue- try this out:
>>
>> <object type="video/x-ms-wmv" width="320" height="260">
>> <param name="filename"
>> value="http://www.sarahsnotecards.com/catalunyalive/fishstore.wmv" />
>> <param name="autostart" value="true" />
>> <param name="controller" value="true" />
>> </object>
>>
>> "Steve Griffin" <stevengr@online.microsoft.com> wrote in message
>> news:O5RJv$UsIHA.1788@TK2MSFTNGHUB02.phx.gbl...
>> > Check out the blog I wrote on inserting a video.
>> >
>> > http://blogs.msdn.com/xwebsupport/ar...sert-a-video.a
>> > spx
>> >
>> >
>> > -Steve G

>>


  Reply With Quote
Old 09-05-2008, 07:59 PM   #7
Javier
Guest
 
Posts: n/a
Re: I can see the video in Firefox but not in IE 7.0

Thanks Mike for your answer.

Do you have some example of a wvx playlist file?. I'm new in this and I want
to know how do you do that.

Regards,

Javier

"Mike Mueller" wrote:

> Yes, changing the mime type to match the file should work.
> What I generally do is to actually create a wvx playlist file, and then put
> the actual filenames in there. It will still pull up WMP, and you can use
> multiple files of different types inside of that.
>
>
>
> "Javier" <Javier@discussions.microsoft.com> wrote in message
> news:E5D38823-05E3-4453-ACF8-78B3BC5B93DB@microsoft.com...
> > Hi Mike:
> >
> > Only a new question:
> >
> > If I change the in the code "video/x-ms-wmv" the extension for other like
> > "mpeg", or "avi", it works too?.
> >
> > Or I have to change in the:
> >
> > value="http://www.sarahsnotecards.com/catalunyalive/fishstore." HERE?
> >
> > Thanks a lot,
> >
> > Javier
> >
> > "Mike Mueller" wrote:
> >
> >> That code sample is invalid html due to the <embed>
> >>
> >> The OP is on the right track, it is the data attribute that is causing
> >> the
> >> issue- try this out:
> >>
> >> <object type="video/x-ms-wmv" width="320" height="260">
> >> <param name="filename"
> >> value="http://www.sarahsnotecards.com/catalunyalive/fishstore.wmv" />
> >> <param name="autostart" value="true" />
> >> <param name="controller" value="true" />
> >> </object>
> >>
> >> "Steve Griffin" <stevengr@online.microsoft.com> wrote in message
> >> news:O5RJv$UsIHA.1788@TK2MSFTNGHUB02.phx.gbl...
> >> > Check out the blog I wrote on inserting a video.
> >> >
> >> > http://blogs.msdn.com/xwebsupport/ar...sert-a-video.a
> >> > spx
> >> >
> >> >
> >> > -Steve G
> >>

>

  Reply With Quote
Old 09-05-2008, 11:05 PM   #8
Mike Mueller
Guest
 
Posts: n/a
Re: I can see the video in Firefox but not in IE 7.0

For some reason I knew that was coming, right after I posted about it...

Here are 3 sample WVX files. They are in an XML format. They are basically
newer constructs of the ASX format. There are many attributes in here that
are empty, and are not needed.

Sample 1:


<asx version = "3.0">
<entry>
<ref href = "mms://LFD.lannonfire.com/BoG"/>
<Title>Sounds of the BoG</Title>
<Author>Mike Mueller</Author>
<Copyright>2005</Copyright>
<Banner></Banner>
</entry>
<Title>Sounds of the BoG</Title>
<Author>Mike Mueller</Author>
<Copyright>2005</Copyright>
<Banner></Banner>
<LogURL href = ""/>
</asx>







"Javier" <Javier@discussions.microsoft.com> wrote in message
news:F4BF2E88-7481-41AD-A399-0C4657B63DF7@microsoft.com...
> Thanks Mike for your answer.
>
> Do you have some example of a wvx playlist file?. I'm new in this and I
> want
> to know how do you do that.
>
> Regards,
>
> Javier
>
> "Mike Mueller" wrote:
>
>> Yes, changing the mime type to match the file should work.
>> What I generally do is to actually create a wvx playlist file, and then
>> put
>> the actual filenames in there. It will still pull up WMP, and you can use
>> multiple files of different types inside of that.
>>
>>
>>
>> "Javier" <Javier@discussions.microsoft.com> wrote in message
>> news:E5D38823-05E3-4453-ACF8-78B3BC5B93DB@microsoft.com...
>> > Hi Mike:
>> >
>> > Only a new question:
>> >
>> > If I change the in the code "video/x-ms-wmv" the extension for other
>> > like
>> > "mpeg", or "avi", it works too?.
>> >
>> > Or I have to change in the:
>> >
>> > value="http://www.sarahsnotecards.com/catalunyalive/fishstore." HERE?
>> >
>> > Thanks a lot,
>> >
>> > Javier
>> >
>> > "Mike Mueller" wrote:
>> >
>> >> That code sample is invalid html due to the <embed>
>> >>
>> >> The OP is on the right track, it is the data attribute that is causing
>> >> the
>> >> issue- try this out:
>> >>
>> >> <object type="video/x-ms-wmv" width="320" height="260">
>> >> <param name="filename"
>> >> value="http://www.sarahsnotecards.com/catalunyalive/fishstore.wmv" />
>> >> <param name="autostart" value="true" />
>> >> <param name="controller" value="true" />
>> >> </object>
>> >>
>> >> "Steve Griffin" <stevengr@online.microsoft.com> wrote in message
>> >> news:O5RJv$UsIHA.1788@TK2MSFTNGHUB02.phx.gbl...
>> >> > Check out the blog I wrote on inserting a video.
>> >> >
>> >> > http://blogs.msdn.com/xwebsupport/ar...sert-a-video.a
>> >> > spx
>> >> >
>> >> >
>> >> > -Steve G
>> >>

>>


  Reply With Quote
Old 10-05-2008, 12:01 AM   #9
Mike Mueller
Guest
 
Posts: n/a
Re: I can see the video in Firefox but not in IE 7.0

Here is a simple one. The first entry is a movie, and in this example an
audio track only will play afterwards. It is necessary to give protocal (in
this case the http://) and a fully qualified URL
(www.domain.com/media/video.wmv).

<asx version="3.0">
<entry>
<ref href="http://domain.com/media/video.wmv" />
<ref href="http://domain.com/media/audio.wma" />
</entry>
</asx>



"Javier" <Javier@discussions.microsoft.com> wrote in message
news:F4BF2E88-7481-41AD-A399-0C4657B63DF7@microsoft.com...
> Thanks Mike for your answer.
>
> Do you have some example of a wvx playlist file?. I'm new in this and I
> want
> to know how do you do that.
>
> Regards,
>
> Javier
>
> "Mike Mueller" wrote:
>
>> Yes, changing the mime type to match the file should work.
>> What I generally do is to actually create a wvx playlist file, and then
>> put
>> the actual filenames in there. It will still pull up WMP, and you can use
>> multiple files of different types inside of that.
>>
>>
>>
>> "Javier" <Javier@discussions.microsoft.com> wrote in message
>> news:E5D38823-05E3-4453-ACF8-78B3BC5B93DB@microsoft.com...
>> > Hi Mike:
>> >
>> > Only a new question:
>> >
>> > If I change the in the code "video/x-ms-wmv" the extension for other
>> > like
>> > "mpeg", or "avi", it works too?.
>> >
>> > Or I have to change in the:
>> >
>> > value="http://www.sarahsnotecards.com/catalunyalive/fishstore." HERE?
>> >
>> > Thanks a lot,
>> >
>> > Javier
>> >
>> > "Mike Mueller" wrote:
>> >
>> >> That code sample is invalid html due to the <embed>
>> >>
>> >> The OP is on the right track, it is the data attribute that is causing
>> >> the
>> >> issue- try this out:
>> >>
>> >> <object type="video/x-ms-wmv" width="320" height="260">
>> >> <param name="filename"
>> >> value="http://www.sarahsnotecards.com/catalunyalive/fishstore.wmv" />
>> >> <param name="autostart" value="true" />
>> >> <param name="controller" value="true" />
>> >> </object>
>> >>
>> >> "Steve Griffin" <stevengr@online.microsoft.com> wrote in message
>> >> news:O5RJv$UsIHA.1788@TK2MSFTNGHUB02.phx.gbl...
>> >> > Check out the blog I wrote on inserting a video.
>> >> >
>> >> > http://blogs.msdn.com/xwebsupport/ar...sert-a-video.a
>> >> > spx
>> >> >
>> >> >
>> >> > -Steve G
>> >>

>>


  Reply With Quote
Old 10-05-2008, 02:02 AM   #10
Javier
Guest
 
Posts: n/a
Re: I can see the video in Firefox but not in IE 7.0

When the answer is very good like yours, is imposible to asking newly....

Thanks Mike for your detailed answers, it help me so much to understand a
litle more the video embed in web pages.

Thanks a lot,

Javier Valverde S.

"Mike Mueller" wrote:

> For some reason I knew that was coming, right after I posted about it...
>
> Here are 3 sample WVX files. They are in an XML format. They are basically
> newer constructs of the ASX format. There are many attributes in here that
> are empty, and are not needed.
>
> Sample 1:
>
>
> <asx version = "3.0">
> <entry>
> <ref href = "mms://LFD.lannonfire.com/BoG"/>
> <Title>Sounds of the BoG</Title>
> <Author>Mike Mueller</Author>
> <Copyright>2005</Copyright>
> <Banner></Banner>
> </entry>
> <Title>Sounds of the BoG</Title>
> <Author>Mike Mueller</Author>
> <Copyright>2005</Copyright>
> <Banner></Banner>
> <LogURL href = ""/>
> </asx>
>
>
>
>
>
>
>
> "Javier" <Javier@discussions.microsoft.com> wrote in message
> news:F4BF2E88-7481-41AD-A399-0C4657B63DF7@microsoft.com...
> > Thanks Mike for your answer.
> >
> > Do you have some example of a wvx playlist file?. I'm new in this and I
> > want
> > to know how do you do that.
> >
> > Regards,
> >
> > Javier
> >
> > "Mike Mueller" wrote:
> >
> >> Yes, changing the mime type to match the file should work.
> >> What I generally do is to actually create a wvx playlist file, and then
> >> put
> >> the actual filenames in there. It will still pull up WMP, and you can use
> >> multiple files of different types inside of that.
> >>
> >>
> >>
> >> "Javier" <Javier@discussions.microsoft.com> wrote in message
> >> news:E5D38823-05E3-4453-ACF8-78B3BC5B93DB@microsoft.com...
> >> > Hi Mike:
> >> >
> >> > Only a new question:
> >> >
> >> > If I change the in the code "video/x-ms-wmv" the extension for other
> >> > like
> >> > "mpeg", or "avi", it works too?.
> >> >
> >> > Or I have to change in the:
> >> >
> >> > value="http://www.sarahsnotecards.com/catalunyalive/fishstore." HERE?
> >> >
> >> > Thanks a lot,
> >> >
> >> > Javier
> >> >
> >> > "Mike Mueller" wrote:
> >> >
> >> >> That code sample is invalid html due to the <embed>
> >> >>
> >> >> The OP is on the right track, it is the data attribute that is causing
> >> >> the
> >> >> issue- try this out:
> >> >>
> >> >> <object type="video/x-ms-wmv" width="320" height="260">
> >> >> <param name="filename"
> >> >> value="http://www.sarahsnotecards.com/catalunyalive/fishstore.wmv" />
> >> >> <param name="autostart" value="true" />
> >> >> <param name="controller" value="true" />
> >> >> </object>
> >> >>
> >> >> "Steve Griffin" <stevengr@online.microsoft.com> wrote in message
> >> >> news:O5RJv$UsIHA.1788@TK2MSFTNGHUB02.phx.gbl...
> >> >> > Check out the blog I wrote on inserting a video.
> >> >> >
> >> >> > http://blogs.msdn.com/xwebsupport/ar...sert-a-video.a
> >> >> > spx
> >> >> >
> >> >> >
> >> >> > -Steve G
> >> >>
> >>

>

  Reply With Quote
Reply
Tags:


Thread Tools
Display Modes


Google
 


All times are GMT +5.5. The time now is 12:23 AM.


vBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO
Copyright © 2005-2008, TechTalkz.com. All Rights Reserved - Privacy Policy
Valid XHTML 1.0 Transitional