Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

FireFox Microsoft media plugin

Status
Not open for further replies.

stormbind

Technical User
Mar 6, 2003
1,165
GB
Hi,

I am generating asx content on the fly from an aspx page that is served by IIS, and the video must display in FireFox without controls.

Using FireFox/WMP Plug-in

FireFox/WMP ignores the EMBED tag attributes and plays the videos - but how can I hide the controls?

For example, the attributes of the embed tag have an effect in MSIE and Safari but the following example results in FireFox/WMP displaying the controls.

Code:
<embed
ShowStatusbar="0"
ShowControls="0"
controller="false"
showtracker="false"
showdisplay="false" 
showstatusbar="false"
type="application/x-mplayer2"></embed>

Using FireFox/VLC Plug-in

VLC hides the controls, but does not display the video! FireFox's VLC about:plugins reports..
video/x-ms-asf | Windows Media video | asf,asx | Enabled
I have tried specifying several MIME types in the aspx, and its currently..
Code:
Response.Clear();
Response.ClearHeaders();
Response.ContentType = "video/x-ms-asf";

If I rename the .aspx to either .asx or .asf in Visual Studio, the file does not work in any plug-in. The asx content is as..
Code:
<asx version="3.0">
 <entry>
  <starttime value="01"/>
  <ref href="[URL unfurl="true"]http://localhost/000.wmv"/>[/URL]
 </entry>
</asx>

VLC is troublesome.

--Glen :)

Memoria mihi benigna erit qui eam perscribam
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top