[Bug 13421] Safari 3.1 video element fails to play ogg without XiphQT components installed

2011-05-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=13421

Derk-Jan Hartman hart...@videolan.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #7 from Derk-Jan Hartman hart...@videolan.org 2011-05-14 09:56:30 
UTC ---
I'm closing this as it was more about video detection, which is now fixed due
to the canPlayType extension to the standard.

I'll open a separate ticket about expanding the 'nag' options.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 13421] Safari 3.1 video element fails to play ogg without XiphQT components installed

2011-05-03 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=13421

--- Comment #6 from Derk-Jan Hartman hart...@videolan.org 2011-05-03 09:18:47 
UTC ---
I tested TimedMediaHandler prototype with perian QT plugin and it seems that
the webM media of the TMH plugin is properly detected and played.

Maxwell, what about having 1 single page with open video advice, giving you
all the advice you need, for the platform you are accessing it from ?

Then at go nag the user to install stuff we just point him to that link, so
that we have all 'smart' detection in that page ? 'upgrade FF, switch to
firefox, install xiphQT, install perian' etc. ?

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 13421] Safari 3.1 video element fails to play ogg without XiphQT components installed

2011-04-28 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=13421

Derk-Jan Hartman hart...@videolan.org changed:

   What|Removed |Added

 CC||hart...@videolan.org

--- Comment #5 from Derk-Jan Hartman hart...@videolan.org 2011-04-28 11:26:23 
UTC ---
If I have some time, then I'll check where we are on this.

It will also be interesting to see if the webM support of perian can be
detected now.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 13421] Safari 3.1 video element fails to play ogg without XiphQT components installed

2011-04-28 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=13421

Derk-Jan Hartman hart...@videolan.org changed:

   What|Removed |Added

 AssignedTo|wikibugs-l@lists.wikimedia. |hart...@videolan.org
   |org |

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 13421] Safari 3.1 video element fails to play ogg without XiphQT components installed

2011-04-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=13421

Rob Lanphier ro...@wikimedia.org changed:

   What|Removed |Added

 AssignedTo|tstarl...@wikimedia.org |wikibugs-l@lists.wikimedia.
   ||org

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 13421] Safari 3.1 video element fails to play ogg without XiphQT components installed

2009-05-31 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=13421





--- Comment #4 from Gregory Maxwell gmaxw...@gmail.com  2009-06-01 05:16:09 
UTC ---
Just an update— Firefox 3.5 has the canplaytype support too. It works fine. 

OggHandler has Safari detection now, but the the nag section is stubbed out.

This is an example instruction page:
http://air.mozilla.com/open-video-for-safari/

I'm thinking of something like falling back to java (if available, it usually
is on Mac) and displaying a small system message below or above the video
playback that directs you to a site customizable recent-safari specific
instruction page which can be initially populated with text like the above
Mozilla page.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 13421] Safari 3.1 video element fails to play ogg without XiphQT components installed

2009-03-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=13421





--- Comment #3 from Gregory Maxwell gmaxw...@gmail.com  2009-03-06 01:52:45 
UTC ---
The HTML5 stuff got some additions to allow for JS codec detection. 

To use it, you do something like this:
dummyvid = document.createElement(video);
if (dummyvid.canPlayType(video/ogg;codecs=\theora,vorbis\) == probably)
{
/* it should work */
} else {
/* go nag the user to install stuff */
}

But: I've not actually tested it (Firefox 3.1 beta didn't support it; the
nightlies supposedly do but I haven't gotten around to testing it), and I have
no clue if safari supports it or not and if it works correctly with XiphQT.

Googling canPlayType brings up useful information. (I'd offer to hack on this,
but I don't have access to safari, and getting test subjects is a pain)


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l