Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

Can't use video in <embed> tag

  • 4 个回答
  • 1 人有此问题
  • 20 次查看
  • 最后回复者为 cor-el

more options

I need to embed video using the <embed> tag rather than the <video> tag. Other browsers support this, but Firefox doesn't.

For example, this code:

    <figure>
        <embed src="myvid.mp4">
        <figcaption>
            myvid
        </figcaption>
    </figure>

works in Chrome. Firefox however ignores the embed source and only prints the content of the <figcaption> tag.

What's going on here? Does Firefox not support video in <embed> tags?

I need to embed video using the &lt;embed&gt; tag rather than the &lt;video&gt; tag. Other browsers support this, but Firefox doesn't. For example, this code: <pre><nowiki> <figure> <embed src="myvid.mp4"> <figcaption> myvid </figcaption> </figure></nowiki></pre> works in Chrome. Firefox however ignores the embed source and only prints the content of the &lt;figcaption&gt; tag. What's going on here? Does Firefox not support video in <embed> tags?

由cor-el于修改

所有回复 (4)

more options

I need to embed video using the <embed> tag rather than the <video> tag. Other browsers support this, but Firefox doesn't.

For example, this code:

  <figure>
      <embed src="myvid.mp4">
      <figcaption>
          myvid
      </figcaption>
  </figure>

works in Chrome. Firefox however ignores the embed source and only prints the content of the <figcaption> tag.

What's going on here? Does Firefox not support video in <embed> tags?

由blackburn于修改

more options

With what content type does the server send this mp4 file ?

Did you check the Web Console?

  • "3-bar" menu button or Tools -> Web Developer

Try to add a type attribute

  • <embed src="myvid.mp4" type="video/mp4" >

Can you post a link to a publicly accessible page (i.e. no authentication or signing on required)?

more options

Thanks for the interest. This page isn't being served by a webserver but is a local file. The HTML is rendered by Pandoc from Markdown. So I won't typically be able to add a 'type' key in the <embed> tag.

However, testing with

 <figure>
   <embed src="myvid.mp4" type="video/mp4">
   <figcaption>My video</figcaption>
 </figure>


show just the text "My video" in a red-lined box.

Works fine in Chrome.

more options

Anything (possibly security) related to this in the Web Console ?

  • "3-bar" menu button or Tools -> Web Developer