[WSG] RE: Video Accessibility Help
Hi Mike, I'd recommend the JW player for delivering Flash video: http://www.longtailvideo.com/ An example of an accessible result can be found on my own site: http://websemantics.co.uk/resources/embedding_flash_video/ I'm unaware of any service that'll create srt captions. If you find one please let me know. A text transcript should be considered essential. I hope that helps. mike foskett http://websemantics.co.uk/ -Original Message- From: li...@webstandardsgroup.org [mailto:li...@webstandardsgroup.org] On Behalf Of Spellacy, Michael Sent: 15 June 2010 15:29 To: wsg@webstandardsgroup.org Subject: [WSG] Video Accessibility Help 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 captioned file for you (.srt, etc.) to feed into your player? 3) If you do succeed in creating captioned video do you also have to create a transcript of the video for those users who may not have Flash installed (or may not be able to access Flash using JAWS)? 4) Would providing just a transcript of the video, be all that is needed to meet basic accessibility requirements? Thanks in advance! I love this list! Regards, Michael Spell Spellacy http://www.spellacy.net @spellacy *** List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm Help: memberh...@webstandardsgroup.org *** This is a confidential email. Tesco may monitor and record all emails. The views expressed in this email are those of the sender and not Tesco. Tesco Stores Limited Company Number: 519500 Registered in England Registered Office: Tesco House, Delamare Road, Cheshunt, Hertfordshire EN8 9SL VAT Registration Number: GB 220 4302 31 *** List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm Help: memberh...@webstandardsgroup.org ***
[WSG] Mobile Validator Error Messages
Hi All, I've been looking at some of my sites with a view to making them more mobile-friendly, and as a first step, decided to run them through the W3C validator. (http://validator.w3.org/mobile) I'm confused, because it keeps throwing up the critical failure of The image does not match its supposed format. Please can anyone explain why this message occurs, and how to fix it? Most, but not all, of the affected images are jpegs taken on my digital camera. However, other images taken with the same camera pass without problem. They all have the same .jpg extension, so I'm at a loss as to what could be causing the problem. Any help will be most gratefully received! Lesley *** List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm Help: memberh...@webstandardsgroup.org ***
RE: [WSG] Mobile Page Passes but MIME Type Fails
Thanks much!! I will try this. -Original Message- From: li...@webstandardsgroup.org [mailto:li...@webstandardsgroup.org] On Behalf Of Phil Archer Sent: Wednesday, June 16, 2010 1:51 AM To: wsg@webstandardsgroup.org Subject: Re: [WSG] Mobile Page Passes but MIME Type Fails 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 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 http-equiv=content-Type content=text/html; charset=utf-8 /, to, meta http-equiv=content-Type content=application/xhtml+xml; charset=utf-8 /, ?? I have not been able to find the answers on the web. Thanks. Kevin -Original Message- From: li...@webstandardsgroup.org [mailto:li...@webstandardsgroup.org] On Behalf Of Phil Archer Sent: Tuesday, June 15, 2010 6:15 PM To: wsg@webstandardsgroup.org Subject: Re: [WSG] Mobile Page Passes but MIME Type Fails 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 now XHTML Basic 1.1 for which the appropriate MIME type is application/xhtml+xml but if you're sending to a device that doesn't support that (essentially just IE) then you'll need to do as you are doing and use text/html. However... this is a warning, not a failure, so you may decide just to leave things as they are ;-) Presumably you got this warning from the mobi Ready tool? This uses the same core code as the W3C mobileOK checker http://validator.w3.org/mobile/ (although we've added a lot of extra UI stuff over the last year or so). HTH Phil. Kevin Erickson wrote: 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; head titleVirginia.gov Mobile - Home/title meta http-equiv=content-Type content=text/html; charset=utf-8 / meta http-equiv=Cache-Control content=max-age=200 / meta http-equiv=content-Language content=en-us / meta name=HandheldFriendly content=True / meta name=viewport content=user-scalable=no, width=device-width / meta name=description content=Virginia.gov Mobile Portal allows you to access key services from Virginia state government on your mobile device, such as news, alerts, weather, and contact information. / meta name=keywords content=mobile, Virginia.gov, Virginia government, PDA, phone, wireless, state / style type=text/css @import url(../../css/m_index.css); /style link rel=stylesheet type=text/css href=/css/iphone.css media=only screen and (max-device-width: 480px) / /head body !-- Start of Mobile -- div id=m-header h1img src=../../images/virginia_dot_gov_logo.jpg width=151 height=40 alt=Virginia.gov Mobile Web Services //h1 pa accesskey=Z href=../mobile_expanded/index.htmlSwitch to Expanded Mobile Pages/a/p /div div class=m-breadcrumbsHome/div div class=m-body h2Mobile Virginia.gov Services:/h2 ul liHome/li lia accesskey=1 href=search.htmlSearch Virginia.gov/a/li /ul h2People:/h2 ul lia accesskey=2 href=people_citizens.htmlCitizens/a/li lia accesskey=3 href=people_families.htmlFamilies/a/li lia accesskey=4 href=people_state_employees.htmlState Employees/a/li lia accesskey=5 href=people_students.htmlStudents/a/li /ul h2Information:/h2 ul lia accesskey=6 href=info_government.htmlGovernment/a/li lia accesskey=7 href=info_online_services.htmlOnline Services/a/li lia accesskey=8 href=info_business.htmlBusiness/a/li lia accesskey=9 href=info_employment.htmlEmployment/a/li lia accesskey=A href=info_education.htmlEducation/a/li lia accesskey=B href=info_tourism_travel.htmlTourism and Travel/a/li /ul h2About Virginia:/h2 ul lia accesskey=C href=about_va_facts_history.htmlFacts and History/a/li lia accesskey=D href=about_va_mapping_virginia.htmlMapping Virginia/a/li /ul /div div id=m-footer ul lia href=index.htmlmobile.virginia.gov/a/li lia
RE: [WSG] Mobile Page Passes but MIME Type Fails
Arrrgh! Thanks for the attempt but it still warns on the MIME type after the change suggested. I guess I can move on but can anyone tell me what the issue is??? Latest code: ?xml version=1.0 encoding=utf-8? !DOCTYPE html PUBLIC -//W3C//DTD XHTML Basic 1.1//EN http://www.w3.org/TR/xhtml-basic/xhtml-basic11.dtd; html xmlns=http://www.w3.org/1999/xhtml; head titleVirginia.gov Mobile - Home/title meta http-equiv=content-Type content=text/html; charset=utf-8 / meta http-equiv=Cache-Control content=max-age=200 / meta http-equiv=content-Language content=en-us / meta name=HandheldFriendly content=True / meta name=viewport content=user-scalable=no, width=device-width / meta http-equiv=Cache-Control content=no-transform / meta name=description content=Virginia.gov Mobile Portal allows you to access key services from Virginia state government on your mobile device, such as news, alerts, weather, and contact information. / meta name=keywords content=mobile, Virginia.gov, Virginia government, PDA, phone, wireless, state / style type=text/css @import url(../../css/m_index.css); /style link rel=stylesheet type=text/css href=/css/iphone.css media=only screen and (max-device-width: 480px) / /head body !-- Start of Mobile -- div id=m-header h1img src=../../images/virginia_dot_gov_logo.jpg width=151 height=40 alt=Virginia.gov Mobile Web Services //h1 !--pa accesskey=Z href=../mobile_expanded/index.htmlSwitch to Expanded Mobile Pages/a/p-- /div div class=m-breadcrumbsHome/div div class=m-body h2Mobile Virginia.gov Services:/h2 ul liHome/li lia accesskey=1 href=search.htmlSearch Virginia.gov/a/li /ul h2People:/h2 ul lia accesskey=2 href=people_citizens.htmlCitizens/a/li lia accesskey=3 href=people_families.htmlFamilies/a/li lia accesskey=4 href=people_state_employees.htmlState Employees/a/li lia accesskey=5 href=people_students.htmlStudents/a/li /ul h2Information:/h2 ul lia accesskey=6 href=info_government.htmlGovernment/a/li lia accesskey=7 href=info_online_services.htmlOnline Services/a/li lia accesskey=8 href=info_business.htmlBusiness/a/li lia accesskey=9 href=info_employment.htmlEmployment/a/li lia accesskey=A href=info_education.htmlEducation/a/li lia accesskey=B href=info_tourism_travel.htmlTourism and Travel/a/li /ul h2About Virginia:/h2 ul lia accesskey=C href=about_va_facts_history.htmlFacts and History/a/li lia accesskey=D href=about_va_mapping_virginia.htmlMapping Virginia/a/li /ul /div div id=m-footer ul lia href=index.htmlmobile.virginia.gov/a/li lia href=http://www.virginia.gov;Virginia.gov Home/a/li lia href=http://www.virginia.gov/cmsportal3/about_virginia.gov_4096/web_policy. htmlSite Policies/a/li lia href=http://www.virginia.gov/cmsportal3/about_virginia.gov_4096/contact_us. htmlContact Virginia.gov/a/li /ul /div /body /html Thanks! Kevin -Original Message- From: li...@webstandardsgroup.org [mailto:li...@webstandardsgroup.org] On Behalf Of Phil Archer Sent: Wednesday, June 16, 2010 1:51 AM To: wsg@webstandardsgroup.org Subject: Re: [WSG] Mobile Page Passes but MIME Type Fails 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 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 http-equiv=content-Type content=text/html; charset=utf-8 /, to, meta http-equiv=content-Type content=application/xhtml+xml; charset=utf-8 /, ?? I have not been able to find the answers on the web. Thanks. Kevin -Original Message- From: li...@webstandardsgroup.org [mailto:li...@webstandardsgroup.org] On Behalf Of Phil Archer Sent: Tuesday, June 15, 2010 6:15 PM To: wsg@webstandardsgroup.org Subject: Re: [WSG] Mobile Page Passes but MIME Type Fails 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 now XHTML Basic 1.1 for which the appropriate MIME type is application/xhtml+xml but if you're sending to a device that doesn't support that (essentially just IE) then you'll need to do as you are doing and use text/html. However... this is a warning, not a failure, so you may decide just to leave things as they are ;-) Presumably you got
RE: [WSG] Mobile Page Passes but MIME Type Fails
As I mentioned earlier, try checking to see what MIME type the server is returning the page as. That may be the issue. Regards, Michael Spell Spellacy http://www.spellacy.net @spellacy -Original Message- From: li...@webstandardsgroup.org [mailto:li...@webstandardsgroup.org] On Behalf Of Kevin Erickson Sent: Wednesday, June 16, 2010 12:35 PM To: wsg@webstandardsgroup.org Subject: RE: [WSG] Mobile Page Passes but MIME Type Fails Arrrgh! Thanks for the attempt but it still warns on the MIME type after the change suggested. I guess I can move on but can anyone tell me what the issue is??? Latest code: ?xml version=1.0 encoding=utf-8? !DOCTYPE html PUBLIC -//W3C//DTD XHTML Basic 1.1//EN http://www.w3.org/TR/xhtml-basic/xhtml-basic11.dtd; html xmlns=http://www.w3.org/1999/xhtml; head titleVirginia.gov Mobile - Home/title meta http-equiv=content-Type content=text/html; charset=utf-8 / meta http-equiv=Cache-Control content=max-age=200 / meta http-equiv=content-Language content=en-us / meta name=HandheldFriendly content=True / meta name=viewport content=user-scalable=no, width=device-width / meta http-equiv=Cache-Control content=no-transform / meta name=description content=Virginia.gov Mobile Portal allows you to access key services from Virginia state government on your mobile device, such as news, alerts, weather, and contact information. / meta name=keywords content=mobile, Virginia.gov, Virginia government, PDA, phone, wireless, state / style type=text/css @import url(../../css/m_index.css); /style link rel=stylesheet type=text/css href=/css/iphone.css media=only screen and (max-device-width: 480px) / /head body !-- Start of Mobile -- div id=m-header h1img src=../../images/virginia_dot_gov_logo.jpg width=151 height=40 alt=Virginia.gov Mobile Web Services //h1 !--pa accesskey=Z href=../mobile_expanded/index.htmlSwitch to Expanded Mobile Pages/a/p-- /div div class=m-breadcrumbsHome/div div class=m-body h2Mobile Virginia.gov Services:/h2 ul liHome/li lia accesskey=1 href=search.htmlSearch Virginia.gov/a/li /ul h2People:/h2 ul lia accesskey=2 href=people_citizens.htmlCitizens/a/li lia accesskey=3 href=people_families.htmlFamilies/a/li lia accesskey=4 href=people_state_employees.htmlState Employees/a/li lia accesskey=5 href=people_students.htmlStudents/a/li /ul h2Information:/h2 ul lia accesskey=6 href=info_government.htmlGovernment/a/li lia accesskey=7 href=info_online_services.htmlOnline Services/a/li lia accesskey=8 href=info_business.htmlBusiness/a/li lia accesskey=9 href=info_employment.htmlEmployment/a/li lia accesskey=A href=info_education.htmlEducation/a/li lia accesskey=B href=info_tourism_travel.htmlTourism and Travel/a/li /ul h2About Virginia:/h2 ul lia accesskey=C href=about_va_facts_history.htmlFacts and History/a/li lia accesskey=D href=about_va_mapping_virginia.htmlMapping Virginia/a/li /ul /div div id=m-footer ul lia href=index.htmlmobile.virginia.gov/a/li lia href=http://www.virginia.gov;Virginia.gov Home/a/li lia href=http://www.virginia.gov/cmsportal3/about_virginia.gov_4096/web_pol icy. htmlSite Policies/a/li lia href=http://www.virginia.gov/cmsportal3/about_virginia.gov_4096/contact _us. htmlContact Virginia.gov/a/li /ul /div /body /html Thanks! Kevin -Original Message- From: li...@webstandardsgroup.org [mailto:li...@webstandardsgroup.org] On Behalf Of Phil Archer Sent: Wednesday, June 16, 2010 1:51 AM To: wsg@webstandardsgroup.org Subject: Re: [WSG] Mobile Page Passes but MIME Type Fails 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 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 http-equiv=content-Type content=text/html; charset=utf-8 /, to, meta http-equiv=content-Type content=application/xhtml+xml; charset=utf-8 /, ?? I have not been able to find the answers on the web. Thanks. Kevin -Original Message- From: li...@webstandardsgroup.org [mailto:li...@webstandardsgroup.org] On Behalf Of Phil Archer Sent: Tuesday, June 15, 2010 6:15 PM To: wsg@webstandardsgroup.org Subject: Re: [WSG] Mobile Page Passes but MIME Type Fails 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