Re: Audiobooks TF

Thanks Hadrien for the audiobook example


Just thought that we might need to consider the case that multiple mp4 read by different narrators.

Maybe in case there are multiple narrators we add id to readBy and map id to audio reading order?


```
{

...

"readBy": [{"id": "narrator_1", name: "Narrator A"}, {"id": "narrator_2", name: "Narrator B"}]

...
"readingOrder": {

    {"url": "http://www.notexisted.org/download/audio1.mp3", "fileFormat": "audio/mpeg", "name": "Part 1, Sections 1 - 3", "readBy": "narrator_1"},
    {"url": "http://www.notexisted.org/download/audio2.mp3", "fileFormat": "audio/mpeg", "name": "Part 1, Sections 1 - 3", "readBy": "narrator_2"},
    {"url": "http://www.notexisted.org/download/audio3.mp3", "fileFormat": "audio/mpeg", "name": "Part 1, Sections 1 - 3", "readBy": ["narrator_1", "narrator_2"]}


  }
}
```


The other thing is how about also support streaming format such as m3u (https://en.wikipedia.org/wiki/M3U) in readingOrder? In that case reading system vendor does not need to implement streaming.


"readingOrder": {

  {"url": "http://www.notexisted.org/streaming/sample.m3u", "fileFormat": "audio/mpegurl"}

}


Thanks,

Zheng

________________________________
From: Hadrien Gardeur <hadrien.gardeur@feedbooks.com>
Sent: Friday, June 15, 2018 9:21:55 AM
To: Avneesh Singh
Cc: AUDRAIN LUC; Reid, Wendy; W3C Publishing Working Group
Subject: Re: Audiobooks TF

Based on our latest discussions about the WP manifest, here's a first audiobook experiment: https://github.com/w3c/wpub/blob/6cde4eb0ae8b6247a9826bcf3569173cbf08024a/experiments/audiobook/flatland.json

Received on Friday, 15 June 2018 14:19:22 UTC