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!

Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Mulongo oyo etiyamaki na archive. Tuna motuna mosusu soki osengeli na lisalisi

Developing firefox plugin. Knowing when to use.

  • 4 biyano
  • 3 eza na bankokoso oyo
  • 2 views
  • Eyano yasuka ya macb6497

more options

I always ask this question when switching to a new platform/interface.

I'm in the process of developing a simple firefox plugin that allows users to view .mkv video on the browser.

Just how someone would develop a plugin for .mp4 video support.

My question is this: How will firefox know to use my plugin when it is trying to stream .mkv video?

As far as I'm concerned all plugins need to be running and firefox needs to cycle thorough them, testing each one to see if it can play the video.

This is slightly confusing. I already know how to get plugins to install, and the programming part where I incorporate support for a given file type is fairly easy.

But, how will firefox know when to use my plugin?

Thanks,

I always ask this question when switching to a new platform/interface. I'm in the process of developing a simple firefox plugin that allows users to view .mkv video on the browser. Just how someone would develop a plugin for .mp4 video support. My question is this: How will firefox know to use my plugin when it is trying to stream .mkv video? As far as I'm concerned all plugins need to be running and firefox needs to cycle thorough them, testing each one to see if it can play the video. This is slightly confusing. I already know how to get plugins to install, and the programming part where I incorporate support for a given file type is fairly easy. But, how will firefox know when to use my plugin? Thanks,

Solution eye eponami

Yes, that should work with the object and embed tag.

It won't work if files are send with an audio or video tag, because those tags only support specific MIME types in Firefox.

Tanga eyano oyo ndenge esengeli 👍 0

All Replies (4)

more options

If servers sends such a .mkv file with a specific MIME type then you need to make sure that your plugin supports that MIME type.
You can see on the about:plugins page which MIME types are supported by a plugin.

more options

I see. So if I associate my plugin with say: .mkv, mkv, or video/x-matroska, etc, firefox will pull my plugin down for use when it meets such a stream?

Ezalaki modifié na macb6497

more options

Solution eye oponami

Yes, that should work with the object and embed tag.

It won't work if files are send with an audio or video tag, because those tags only support specific MIME types in Firefox.

more options

That's ok. I don't plan on using HTML5 or the object tag because I use a specific web player (flowplayer).

Thanks, though.