[Webkit-unassigned] [Bug 37390] [GTK] Shouldn't take over QuickTime plugin

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed May 12 08:50:35 PDT 2010


https://bugs.webkit.org/show_bug.cgi?id=37390





--- Comment #4 from Philippe Normand <pnormand at igalia.com>  2010-05-12 08:50:36 PST ---
See http://trailers.apple.com/trailers/global/scripts/lib/ac_media.js

// added a check for Google Chrome; until they fix their .mov wrapper bug we can't serve the <video> element
135            if (shouldBuildMediaSpecVideo && Media._isHTML5VideoAvailable() &&
136                !Media.Detection.Firefox() && !Media.Detection.Mobile() &&
137                !Media.Detection.Chrome()) {
138                // Create <video> player
139                return build(Media.Spec.Video);
140            }
141            
142            if (shouldBuildMediaSpecQuickTime &&
143                Media._isQuickTimeAvailable(Media.MIN_QUICKTIME_VERSION) ||
144                Media.Detection.Mobile()) {
145                // Create QuickTime player
146                return build(Media.Spec.QuickTime);
147            }

So the logic is to check if the browser supports HTML5 video and video/mp4. If so a video element is created instead of an <object>... So, not sure what I can actually do. I won't blacklist video/mp4 from our player. Have you tried the patch?

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list