0

Suppose I wanted to have Apple VoiceOver read out the contents of a webpage running in a browser, including responses to interactions, and ultimately output the result as audio.

For example, for a web page with HTML such as the following:

<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title></title> </head> <body> <label for="name">Name</label> <input id="name" type="text" /> <button type="submit">Submit</button> </body> </html>

I want to write an audio stream, say, in a Wave file, in which VoiceOver says something like:

Name, edit text. You are currently on a text field inside of web content... etc...

Would this be possible programmatically? E.g. by calling some API method?

Jonathan
  • 32,202
  • 38
  • 137
  • 208
  • Possible duplicate of [MAC's "say" command to MP3](https://stackoverflow.com/questions/16501663/macs-say-command-to-mp3) – l'L'l Feb 12 '18 at 20:24
  • I wouldn't say so because that question is just about converting a webpage to spoken word, whereas I want to fully simulate the voice-over experience, including calling out input controls, etc. I've updated the question text to reflect this. – Jonathan Apr 13 '18 at 21:38

0 Answers0