[WSG] Video Accessibility Help

2010-06-15 Thread Spellacy, Michael
Hi List, I was just wondering what some of the best practices were these days for creating accessible video on the web. A few questions: 1) I know some Flash players can pull in captions, but which ones to use? 2) Are there any services out there that will scan your audio track and create a

[WSG] Mobile Page Passes but MIME Type Fails

2010-06-15 Thread Kevin Erickson
Hello All, If anyone can help me understand why my mobile page passes all accept the MIME type. Page code: ?xml version=1.0 encoding=utf-8? !DOCTYPE html PUBLIC -//WAPFORUM//DTD XHTML Mobile 1.0//EN http://www.wapforum.org/DTD/xhtml-mobile10.dtd; html xmlns=http://www.w3.org/1999/xhtml;

RE: [WSG] Mobile Page Passes but MIME Type Fails

2010-06-15 Thread Spellacy, Michael
Hi Kevin, Regardless of what you are declaring in your meta tags, the server will trump you here and serve out the page as it is configured to do so (as text/html), in which case you'll have to configure the server to serve the page out with correct mime type. I don't know what you are using

Re: [WSG] Mobile Page Passes but MIME Type Fails

2010-06-15 Thread Phil Archer
Hi Kevin, The answer is in your e-mail. You have created a page using a version of XHTML for which the correct MIME type is application/vnd.wap.xhtml+xml or application/xhtml+xml but you're sending text/html so there is a mismatch, hence the warning. The recommended markup for mobile is

Re: [WSG] Mobile Page Passes but MIME Type Fails

2010-06-15 Thread Kevin Erickson
I will take the advice from your emails and try again. I could leave it but it is something I just want to fix. Many Thanks!!! Sent from my BlackBerry® -Original Message- From: Phil Archer ph...@w3.org Date: Tue, 15 Jun 2010 23:15:09 To: wsg@webstandardsgroup.org Subject: Re: [WSG]

Re: [WSG] Video Accessibility Help

2010-06-15 Thread John Unsworth
Hi Michael, Your first port of call might be the WCAG2 guidelines, found here; http://www.w3.org/WAI/GL/WCAG20/#media-equiv I also did a quick search for accessible online video best practice and this link to a PDF from the US Department of Health and Human Services exactly on the topic of

RE: [WSG] Mobile Page Passes but MIME Type Fails

2010-06-15 Thread Kevin Erickson
Question: For the line, !DOCTYPE html PUBLIC -//WAPFORUM//DTD XHTML Mobile 1.0//EN http://www.wapforum.org/DTD/xhtml-mobile10.dtd;, would I change this to, !DOCTYPE html PUBLIC -//WAPFORUM//DTD Basic 1.1//EN http://www.wapforum.org/DTD/xhtml-mobile10.dtd;, ?? And change, meta

Re: [WSG] Mobile Page Passes but MIME Type Fails

2010-06-15 Thread Phil Archer
The Doctype for XHTML Basic 1.1 is: !DOCTYPE html PUBLIC -//W3C//DTD XHTML Basic 1.1//EN http://www.w3.org/TR/xhtml-basic/xhtml-basic11.dtd; HTH Phil. Kevin Erickson wrote: Question: For the line, !DOCTYPE html PUBLIC -//WAPFORUM//DTD XHTML Mobile 1.0//EN