Transcripts
Capture transcripts of audio/video resources in a section of back matter to the article/chapter it appears in.
//back/sec[@sec-type = "transcript"]
Give this section a sec-type attribute with value transcript
and
a title corresponding to the title/label/caption of the corresponding resource.
Give the transcript an identifier using the id attribute: this must be used in the capture of the corresponding resource to link it to its transcript.
Use one or more p element for each narrative part of a audio/video resource.
If a resource contains a conversation between two or more entities, use a speech element for each uniterrupted spoken segment by one speaker; within this element, distinguish the name or, if not provided, role of the speaker within a child speaker element, and the spoken part in a p element.
If the video component contains visual details that must be transcribed to ensure the resource can be understood, capture this information as a sibling p element.
Transcript of a dialogue between two people
<sec id="workid-USAC0042402-book-part-3-TR1" sec-type="transcript">
<title>Interview with a Vampire</title>
<speech>
<speaker>Lestat</speaker><p>Thank you for joining me</p>
</speech>
<speech>
<speaker>Louis</speaker><p>Great to be here!</p>
</speech>
<!-- More dialogue -->
</sec>
Transcript including visual information
<sec id="ojaf154-video1-TR" sec-type="transcript">
<title>Ambivalences of Belonging</title>
<speech>
<speaker>Interviewer</speaker><p>Thank you for joining me</p>
</speech>
<!-- More dialogue -->
<p>The view changes from the presenter to a slide displaying a chart</p>
<speech>
<speaker>Interviewee</speaker><p><!-- More dialogue --></p>
</speech>
<!-- More dialogue -->
</sec>