Skip to content

Commit 38a5cf1

Browse files
committed
Adding av examples
1 parent b4b5378 commit 38a5cf1

2 files changed

Lines changed: 81 additions & 3 deletions

File tree

nlw-workshop/SUMMARY.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,17 +46,17 @@
4646
- [Publishing your annotated Manifest](day-four/workbench.md)
4747
- [Annotating Store - Do it yourself](day-four/annotations-stores-install.md)
4848
- [Advanced annotation presentation](day-four/advanced-annotations.md)
49-
- [NLW Annotations](nlw-annotations.md) **TODO**
49+
- [NLW Annotations](nlw-annotations.md)
5050

5151
## IIIF & AV
5252
- [An introduction to AV](av-intro.md) **todo**
5353
- [Looking at a BL audio file](day-three/BL-Audio/README.md)
5454
- [Looking at a Internet Archive Video](day-three/BL-Audio/RemixAudio.md) **todo**
55-
- [National Library of Wales examples](av-examples.md)**todo**
55+
- [Examples](av-examples.md)**todo**
5656
- [Create video Manifest](day-three/digirati-editor/Add_video_manifest.md)**todo**
5757

5858
## Tools and implementations
59-
- [Tools](tools.md)
59+
- [Tools](tools.md) **todo**
6060
- [Exhibit](exhibit/exhibit.md)
6161
- [All Maps](use_cases/allmaps.md)
6262
- [FromThePage](use_cases/FromThePage.md)

nlw-workshop/av-examples.md

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
# NLW AV Examples
2+
3+
IIIF works with AV content that is made available in the following ways:
4+
5+
* It must be made available over https
6+
* IIIF needs direct access to the video file (i.e. no youtube)
7+
* For speed of access support for [HTTP range requests](https://developer.mozilla.org/en-US/docs/Web/HTTP/Range_requests) is recommended
8+
* IIIF does support adaptive bitrate streaming via HLS protocol
9+
* Provides [CORS headers](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS)
10+
11+
The examples below are stored on Amazon s3 which supports HTTP range requests, https and the appropriate CORS headers. The width, height and duration in seconds can be worked out by using the following command:
12+
13+
```
14+
ffprobe -v error -select_streams v:0 -show_entries stream=width,height,duration -of json "your-video-file.mp4"
15+
{
16+
"programs": [
17+
18+
],
19+
"stream_groups": [
20+
21+
],
22+
"streams": [
23+
{
24+
"width": 1920,
25+
"height": 1080,
26+
"duration": "449.120000"
27+
}
28+
]
29+
}
30+
```
31+
32+
## Interview with Mike England and Ian Rush
33+
34+
* [video](https://iiif.gdmrdigital.com/nlw/2025/training/aohaa00000132.mp4)
35+
* [Clip Link](https://clip.library.wales/detail/318292?published=published_public&terms=rush&sorting=DESC&results=12&viewmode=grid)
36+
* **Duration:** 449.12
37+
* **Width:** 1920
38+
* **Height:** 1080
39+
40+
## Interview with John Neal (Wrexham) and John Charles (Merthyr Tydfil)
41+
42+
* [video](https://iiif.gdmrdigital.com/nlw/2025/training/aohaa00000133.mp4)
43+
* [Clip Link](https://clip.library.wales/detail/318293?published=published_public&terms=wrexham&sorting=DESC&results=12&viewmode=grid)
44+
* **Duration:** 187.00
45+
* **Width:** 1920
46+
* **Height:** 1080
47+
48+
## Swansea City – Interview with manager John Toshack
49+
50+
* [video](https://iiif.gdmrdigital.com/nlw/2025/training/aohaa00000134.mp4)
51+
* [Clip Link](https://clip.library.wales/detail/318294?published=published_public&terms=football&page=1&sorting=DESC&results=12&viewmode=grid)
52+
* **Duration:** 130.28
53+
* **Width:** 1920
54+
* **Height:** 1080
55+
56+
## Wrecsam yn sicrhau dyrchafiad i'r Ail Adran
57+
58+
* [video](https://iiif.gdmrdigital.com/nlw/2025/training/aohaa00000135.mp4)
59+
* [Clip Link](https://clip.library.wales/detail/318295?published=published_public&terms=wrexham&page=1&sorting=DESC&results=12&viewmode=grid)
60+
* **Duration:** 174.44
61+
* **Width:** 1920
62+
* **Height:** 1080
63+
64+
## Wrexham training on the Racecourse ground
65+
66+
* [video](https://iiif.gdmrdigital.com/nlw/2025/training/aohaa00000136.mp4)
67+
* [Clip Link](https://clip.library.wales/detail/318296?published=published_public&terms=wrexham&sorting=DESC&results=12&viewmode=grid)
68+
* **Duration:** 124.76
69+
* **Width:** 1920
70+
* **Height:** 1080
71+
72+
## Swansea City promoted to the Third Division
73+
74+
* [video](https://iiif.gdmrdigital.com/nlw/2025/training/aohaa00000137.mp4)
75+
* [Clip Link](https://clip.library.wales/detail/318297?published=published_public&terms=swansea&sorting=DESC&results=12&viewmode=grid)
76+
* **Duration:** 255.32
77+
* **Width:** 1920
78+
* **Height:** 1080

0 commit comments

Comments
 (0)