Embed HTML error missing how it can solve.
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?
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?
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.
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.