Skip to content

Commit c0530af

Browse files
committed
Merge branch 'master' into 0045-css
2 parents 1feee57 + e890857 commit c0530af

File tree

2 files changed

+118
-0
lines changed

2 files changed

+118
-0
lines changed
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
---
2+
title: Scholarly Annotation of a Poetry Reading
3+
id: 103
4+
layout: recipe
5+
tags: [audio, presentation, annotation]
6+
summary: "Use annotations to indicate aspects of the performance of a particular poem."
7+
viewers:
8+
- Ramp
9+
- Aviary
10+
topic:
11+
- AV
12+
---
13+
14+
15+
## Use Case
16+
17+
Scholars may wish to use annotations to indicate aspects of the performance of a particular poem.
18+
19+
For a performance of a published text, transcribing the performance is of little use to the researcher annotating the performance. Rather, the annotations serve as commentary on the performance itself.
20+
21+
A researcher might want to annotate the following types of information:
22+
* structural information (introduction, title, stanzas)
23+
* points where the performer takes a breath
24+
* repeated or emphasized phrases
25+
26+
## Implementation notes
27+
28+
This implementation builds off of the [audio example][0002], but adds Web Annotations. We show annotation targeting using a simplified Media Fragment `#t=702.0,705.0` appended to the canvas URL.
29+
30+
If you are targeting a single point, you should use a point selector. The [Begin playback at a specific point - Time-based media][0015] recipe demonstrates that approach.
31+
32+
Because the annotations are pointing out features of the audio, rather than transcriptions, the `motivation` for each annotation is `commenting` not `supplementing`. If the annotations were transcriptions, their motivation would be `supplementing`.
33+
34+
35+
## Example
36+
37+
A manifest for a poetry reading by Canadian poet Daphne Marlatt in 2018 that includes an annotation describing environmental noise. The recording is 707 seconds long.
38+
{% include manifest_links.html manifest="manifest.json" %}
39+
40+
{% include jsonviewer.html src="manifest.json" %}
41+
42+
43+
# Related recipes
44+
45+
* [Simple Manifest - Audio][0002]
46+
* [Transformation - WebVTT or OHMS XML to Annotations][0079]
47+
* [Begin playback at a specific point - Time-based media][0015]
48+
* [Embedded or Referenced Annotations][0269]
49+
50+
{% include acronyms.md %}
51+
{% include links.md %}
52+
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
{
2+
"@context":"http://iiif.io/api/presentation/3/context.json",
3+
"id":"{{ id.url }}",
4+
"type":"Manifest",
5+
"label":{
6+
"en":[
7+
"Mediation and Lived Experience - Daphne Marlatt Performs With Her Younger Self"
8+
]
9+
},
10+
"items":[
11+
{
12+
"id":"{{ id.path }}/canvas/1",
13+
"type":"Canvas",
14+
"duration":707.81,
15+
"items":[
16+
{
17+
"type":"AnnotationPage",
18+
"id":"{{ id.path }}/canvas/1/item_page/1",
19+
"items":[
20+
{
21+
"id":"{{ id.path }}/canvas/1/painting/1",
22+
"type":"Annotation",
23+
"motivation":"painting",
24+
"body":{
25+
"id":"https://fixtures.iiif.io/audio/ubc/Performing-the-Archive-Leaf-leafs-by-Daphne-Marlatt.mp3",
26+
"type":"Sound",
27+
"format":"audio/mpeg",
28+
"duration":707.81
29+
},
30+
"target":"{{ id.path }}/canvas/1"
31+
}
32+
]
33+
}
34+
],
35+
"annotations":[
36+
{
37+
"id":"{{ id.path }}/canvas/1/page1",
38+
"type":"AnnotationPage",
39+
"label":{
40+
"en":[
41+
"Environmental Noise"
42+
]
43+
},
44+
"items":[
45+
{
46+
"type":"Annotation",
47+
"motivation":[
48+
"commenting"
49+
],
50+
"id":"{{ id.path }}/canvas/1/page1/anno2",
51+
"body":[
52+
{
53+
"type":"TextualBody",
54+
"value":"Soft laughter, rustling",
55+
"format":"text/plain",
56+
"motivation":"commenting"
57+
}
58+
],
59+
"target":"{{ id.path }}/canvas/1#t=702.0,705.0"
60+
}
61+
]
62+
}
63+
]
64+
}
65+
]
66+
}

0 commit comments

Comments
 (0)