How I must publish a video subtitled in two languages (or n)?
- All in one publication (one url) All text coming with this publication is in English.
<video src="a.mp4">
<track srclang='en' src="a.en.vtt" default>
<track srclang='es' src="a.es.vtt">
</video>
- Make two publications (two different url)
a) All text coming with this publication is in English.
<video src="a.mp4">
<track srclang='en' src="a.en.vtt">
</video>
b) All text coming with this publication is in Spanish.
<video src="a.mp4">
<track srclang='es' src="a.es.vtt">
</video>
"Publication in English but video subtitles available in more languages" or "A publication per language and video subtitled in that language"?
To be more specific, the video is a user content publication. Users publish the video in his language (maybe could be suggested to publish in other languages...) and has the option to upload subtitles in different languages. How I have to manage this? Which case is better?
User can add some subtitles in different languages to his video (case 1)
or
User can only publish subtitles in his language. And for other languages must change language, and make another publication with another subtitles (case 2)