Embed HTML error missing how it can solve.

Asked By 20 points N/A Posted on -
qa-featured

I am using an embed tag in HTML but when running it on my browser it says, Missing Plugin Error. How can I fix it?

 

SHARE
Best Answer by Williamson Mellisa
Answered By 0 points N/A #174310

Embed HTML error missing how it can solve.

qa-featured
Hi there: this error can be solved in the following manner: For playing FLV in HTML, you should use the tag: 
<objecttype="application/x-shockwave-flash"

width="320"height="240"

wmode="transparent"

data="player.swf?file=video.flv&autoStart=false">

<paramname="movie"

value="player.swf?file=video.flv&autoStart=false"/>

<paramname="wmode"value="transparent"/> 

</object>

Hope this resolves the issue.

 

Best Answer
Best Answer
Answered By 5 points N/A #174308

Embed HTML error missing how it can solve.

qa-featured

Hello Brenda,

This error is common in Google Chrome, missing plug-in message.I suggest you to try add this MIME type for Macromedia Flash to the <embed>:

type="application/x-shockwave-flash".

MIME type has type and subtype. For Macromedia Flash files type is “application” and subtype in this case “x-shockwave-flash”. For playing FLV file you must have MIME type.

example:

<embed
modes: [
{type= 'html'},
{type= 'flash', src: 'plyr.swf'},
]
type="application/x-shockwave-flash"
/>

You should also have installed plugins for Shockwave Flash on your browser. If you don’t have go to www.macromedia.com and find the latest version of Shockwave Flash.

I hope that this will help to solve your problem with missing plugin.

Related Questions