nikel
nikel

Reputation: 653

Some browsers can't load embedded flash videos

I have some videos at mypace.com. and I added them to an html page. One of my friend warned me (and he had been warned by others) that he couldn't see the videos.

This problem occures with these systems as far as I know:

I guess a trojan may cause this but many people have this problem. These people are using their browser without any other problem.

I want to share some of my code:

                            <param name="allowFullScreen" value="true"/>

                            <param name="wmode" value="transparent"/>

                            <param name="movie" value="http://mediaservices.myspace.com/services/media/embed.aspx/m=0,mr=110475301,t=1,mt=video"/>

                            <param name="QUALITY" value="high" />

                    </object>

                    <br />

                    <br />

                    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="425px" height="360px">

                            <param name="allowFullScreen" value="true"/>

                            <param name="wmode" value="transparent"/>

                            <param name="movie" value="http://mediaservices.myspace.com/services/media/embed.aspx/m=0,mr=110475417,t=1,mt=video"/>

                            <param name="QUALITY" value="high" />

                    </object>

                    <br />

                    <br />

Upvotes: 1

Views: 158

Answers (1)

cbroughton
cbroughton

Reputation: 1856

Please try using SWFObject to embed your flash material, as this is the accepted 'cross-compliant" means of doing so. Even the HTML5 Boilerplate examples and initializr HTML5 demos come with SWFObject pre-installed.

Upvotes: 1

Related Questions