Closed
Bug 358434
Opened 19 years ago
Closed 19 years ago
.WAV, .mp3 Require Quicktime install; should default to Windows Media Player
Categories
(Plugins Graveyard :: Windows Media Player (Microsoft), defect)
Tracking
(Not tracked)
RESOLVED
INVALID
People
(Reporter: jbwalker, Unassigned)
Details
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1) Gecko/20061010 Firefox/2.0
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1) Gecko/20061010 Firefox/2.0
This bug has only impacted the following, but I'm afraid it might have wider ramifications. I've just (last 2 days) downloaded and installed Firefox 2.0.
I'm testing a webpage (thanks to Codebrain) with the following code:
<embed NAME="PurpleSphereSound" SRC="Since I met you.mp3" MASTERSOUND LOOP="false" AUTOSTART="false" AUTOREWIND="true" HIDDEN="true" WIDTH="0" HEIGHT="0">
When I try to load the page, I'm told I need a plug-in (Apple Quicktime). Same happens with a .WAV file. These file types are registered to Windows Media Player on my Windows system, and yet the types are not registered in Firefox 'file types'.
I do not want to install Quicktime when Windows already has the ability to play these files.
Here's the complete code for the page...without the .gif. It should work with any mouseover so...
<html>
<head>
<title>CodeBrain.com JavaScript</title>
<script language="JavaScript">
<!--
// Script Source: www.CodeBrain.com
var audioOn = false;
function audioDo(doWhat,toWhat){
if(audioOn){
var A = eval('document.'+toWhat);
if (A != null){
if (doWhat=='stop') A.stop();
else{
if (navigator.appName == 'Netscape') A.play();
else{
if (document.M == null){
document.M = false; var m;
for(m in A) if (m == "ActiveMovie"){
document.M = true; break;
}
}
if (document.M) A.SelectionStart = 0;
if (document.M) A.play();
}
}
}
}
}
//-->
</script>
</head>
<body bgcolor="#000000" onLoad="audioOn=true">
<p>
<a href="http://www.codebrain.com" onMouseOver="audioDo('play','PurpleSphereSound')" onMouseOut="audioDo('stop','PurpleSphereSound')">
<img src="PurpleSphere.gif" border="0" WIDTH="100" HEIGHT="100"></a>
</p>
<p>
<embed NAME="PurpleSphereSound" SRC="Since I met you.mp3" MASTERSOUND LOOP="false" AUTOSTART="false" AUTOREWIND="true" HIDDEN="true" WIDTH="0" HEIGHT="0">
</p>
</body>
</html>
Reproducible: Always
Steps to Reproduce:
1. Load a page with an <EMBED pointing to a .WAV or .mp3 (? others)
Actual Results:
Error message: 'Plugin (Quicktime) required
Expected Results:
Didn't
Used Media Player already defined for these file types on Windows.
Comment 1•19 years ago
|
||
This has to do with what is set up to handle these files via plugins. This is a seperate file association from what you might have in explorer. Though I'm not entirely sure what firefox's role is in this.
Most likely this would be fixed by reinstalling wmp, and then editing it's associations for web content. Why it defaults to Quicktime is beyond me.
Most likely Invalid, moving to core -> plugins.
Component: File Handling → Plug-ins
Product: Firefox → Core
Version: unspecified → 1.0 Branch
Comment 2•19 years ago
|
||
The activeX version of the Windows media player plugin for IE may support Wav and Mp3 but I think the Netscape plugin version of Windows media player doesn't support those file formats. They are not listed for the plugin in about:plugins.
Updated•19 years ago
|
QA Contact: file.handling → plugins
Comment 3•19 years ago
|
||
Indeed, the NSCP WMP plugin does not support this==>invalid.
Status: UNCONFIRMED → RESOLVED
Closed: 19 years ago
Resolution: --- → INVALID
Component: Plug-ins → Windows Media Player (Microsoft)
Product: Core → Plugins
QA Contact: plugins → microsoft-wmp
Version: 1.0 Branch → unspecified
| Assignee | ||
Updated•10 years ago
|
Product: Plugins → Plugins Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•