Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > HTML > aural browsers or screen reader rendering algorithm

Reply
Thread Tools

aural browsers or screen reader rendering algorithm

 
 
William Gill
Guest
Posts: n/a
 
      11-21-2007
Does anyone know what algorithm aural browsers use to render pages? I
would think it more sophisticated than FIFO. I've seen some things that
indicate everyone does their own thing, but there must be some general
rule of thumb or it would be utter chaos.

Better still, is there a utility to convert the html to a simple text
transcript.
 
Reply With Quote
 
 
 
 
André Gillibert
Guest
Posts: n/a
 
      12-03-2007
William Gill wrote:

> Does anyone know what algorithm aural browsers use to render pages? I
> would think it more sophisticated than FIFO. I've seen some things that
> indicate everyone does their own thing, but there must be some general
> rule of thumb or it would be utter chaos.
>


I tested one screen reader (JAWS) combined with Internet Explorer.
The document is read interactively. There's a key to read the next or
previous paragraph, keys to jump to a section defined by a header
level.
There's a heading navigation dialog box to see the structure of the
document and jump to a specific place.

> Better still, is there a utility to convert the html to a simple text
> transcript.


This wouldn't be equivalent to a screen reader such as JAWS.
However, it may be possible to extract the data of a HTML document,
deleting navigation bars and decorative things. I don't have a
specific algorithm to recognize these things.
Moreover tables and divisions will be difficult to interpret.

--
Sincerely.
André Gillibert.
 
Reply With Quote
 
 
 
 
William Gill
Guest
Posts: n/a
 
      12-04-2007


André Gillibert wrote:
>
> I tested one screen reader (JAWS) combined with Internet Explorer.
> The document is read interactively. There's a key to read the next or
> previous paragraph, keys to jump to a section defined by a header
> level.
> There's a heading navigation dialog box to see the structure of the
> document and jump to a specific place.
>


OK, This makes some sense, the browser uses headers to delimit each
logical section of the "copy", and lets the user decide the delivery
sequence. What happens in logical blocks without headings, like
navigation? Are they automatically delivered in logical units in the
order they are encountered (FIFO)?

>> Better still, is there a utility to convert the html to a simple text
>> transcript.

>
> This wouldn't be equivalent to a screen reader such as JAWS.
> However, it may be possible to extract the data of a HTML document,
> deleting navigation bars and decorative things. I don't have a
> specific algorithm to recognize these things.
> Moreover tables and divisions will be difficult to interpret.


I could use a text only browser like Lynx to get a rough extraction, but
I was hoping to be able to review my html and get an estimation of how
it is "seen" by users relying on this technology. A transcript would be
a text copy of what the user would hear, in the order the user hears it.

Guess I'll have to assume that if my code is fairly logical and
reasonably semantic, whatever algorithm they use, it should be rendered
in an understandable manner.

Thanks.




 
Reply With Quote
 
Adrienne Boswell
Guest
Posts: n/a
 
      12-04-2007
Gazing into my crystal ball I observed William Gill
<> writing in news:%735j.22688$4V6.9386
@newssvr14.news.prodigy.net:

> I could use a text only browser like Lynx to get a rough extraction, but
> I was hoping to be able to review my html and get an estimation of how
> it is "seen" by users relying on this technology. A transcript would be
> a text copy of what the user would hear, in the order the user hears it.
>


Opera has a text only mode, and the small screen mode might be of help as
well.

--
Adrienne Boswell at Home
Arbpen Web Site Design Services
http://www.cavalcade-of-coding.info
Please respond to the group so others can share

 
Reply With Quote
 
Chaddy2222
Guest
Posts: n/a
 
      12-04-2007
On Dec 4, 5:01 pm, Adrienne Boswell <arb...@yahoo.com> wrote:
> Gazing into my crystal ball I observed William Gill
> <nore...@example.invalid> writing in news:%735j.22688$4V6.9386
> @newssvr14.news.prodigy.net:
>
> > I could use a text only browser like Lynx to get a rough extraction, but
> > I was hoping to be able to review my html and get an estimation of how
> > it is "seen" by users relying on this technology. A transcript would be
> > a text copy of what the user would hear, in the order the user hears it.

>
> Opera has a text only mode, and the small screen mode might be of help as
> well.
>

Well you could do that:
Or you could just download the proper screen reading software.
http://www.freedomscientific.com/fs_downloads/jaws.asp
Note that their are other screen readers besides Jaws, it's just that
I use it and think it works the best for web based stuff.
--
Regards Chad. http://freewebdesignonline.org
 
Reply With Quote
 
William Gill
Guest
Posts: n/a
 
      12-04-2007


Chaddy2222 wrote:

> Well you could do that:
> Or you could just download the proper screen reading software.
> http://www.freedomscientific.com/fs_downloads/jaws.asp
> Note that their are other screen readers besides Jaws, it's just that
> I use it and think it works the best for web based stuff.


Thanks Chad. I have found several such readers. Of course I have no
way of knowing which are better than which, or what algorithms they
follow.

I was hoping if I could understand the generic algorithms and "outline"
the page. Then I could incorporate that flow in the early design/layout
phase of development, instead of waiting to test the result. I guess if
I just use the readers regularly, it will eventually sink into my
initial planning phase instead on the final correction phase.


 
Reply With Quote
 
Bergamot
Guest
Posts: n/a
 
      12-04-2007
William Gill wrote:
>
> What happens in logical blocks without headings, like
> navigation? Are they automatically delivered in logical units in the
> order they are encountered (FIFO)?


Generally speaking, yes. CSS positioning doesn't really have much effect
on that, though visibility:hidden and display:none most definitely can
cause the reader to ignore those elements.

This site has a lot of good info on the subject of what screen readers
do, among other things:
http://www.access-matters.com/

--
Berg
 
Reply With Quote
 
Andy Dingley
Guest
Posts: n/a
 
      12-04-2007
On 21 Nov, 20:40, William Gill <nore...@example.invalid> wrote:

> Better still, is there a utility to convert the html to a simple text
> transcript.


I'd suggest the very useful Fangs extension for Firefox - it tries to
emulate Jaws' behaviour closely, only with visual display rather than
speech and with free licensing for web developers.

Unfortunately it seems to have fallen off the development wagon for
Firefox. It's in the extensions sandbox, so you might find it if you
hunt.
 
Reply With Quote
 
William Gill
Guest
Posts: n/a
 
      12-05-2007


Andy Dingley wrote:
> I'd suggest the very useful Fangs extension for Firefox - it tries to
> emulate Jaws' behaviour closely, only with visual display rather than
> speech and with free licensing for web developers.

I installed it and don't like how my pages display. I need to test them
against an actual reader for comparison. I also need to see the Fangs
output from a well done page, to better familiarize myself with fangs.
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Re: Aural Picturae No-est Digital Photography 2 10-31-2009 05:32 AM
Browsers, browsers! Quo vadis? El Kabong HTML 23 05-13-2007 08:55 PM
Two Browsers work! Two browsers won't load. Internet game service won't load jimmie Computer Support 1 02-26-2006 08:36 AM
Different rendering of cell borders between browsers weight watcher HTML 4 06-24-2005 08:11 PM
recommend aural browser? Leslie HTML 9 11-28-2003 03:28 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57