-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
Description
Description
For example:
- sound files are available in multiple languages - which one does the user want to hear? also, captions in different languages (as specified by Internationalization #10)
- there are multiple recordings of the same music score
- different versions of audio - an original version and a cleaned up version
Variation(s)
(do you know of, or can you imagine, similar use cases?)
Proposed Solutions
two audio files, one in jp, one in nl
intent is: user will pick the appropriate one
Choice version (language property)
{
"type": "Choice",
"items": [
{
"id": "",
"type": "Audio",
"format": "audio/mp3",
"language": "jp",
"label": {"jp": "日本語", "en": "Spoken"},
"metadata": [{"label": "Voice Actor", "value": "..."}]
},
{
"id": "",
"type": "Audio",
"label": {"nl": "Gesproken", "en": "Spoken"},
"language": "nl"
}
]
}
Additional Background
(more about your perspective, existing work, etc. goes here.)