From 7fbb2a02192e379a556e52bb07dc05e899929802 Mon Sep 17 00:00:00 2001 From: Emily Lynema Date: Mon, 16 Jun 2025 16:49:44 -0400 Subject: [PATCH 01/11] first pass of 0253 recipe based on v4 branch --- recipe/0253-using-transcript-file/index.md | 31 +++++++++ .../v4/manifest.json | 67 +++++++++++++++++++ .../0253-using-transcript-file/v4/recipe.md | 34 ++++++++++ 3 files changed, 132 insertions(+) create mode 100644 recipe/0253-using-transcript-file/index.md create mode 100644 recipe/0253-using-transcript-file/v4/manifest.json create mode 100644 recipe/0253-using-transcript-file/v4/recipe.md diff --git a/recipe/0253-using-transcript-file/index.md b/recipe/0253-using-transcript-file/index.md new file mode 100644 index 000000000..8d2b4c7dc --- /dev/null +++ b/recipe/0253-using-transcript-file/index.md @@ -0,0 +1,31 @@ +--- +title: Using Transcript Files with Audio or Video Content +id: 253 +layout: recipe +tags: [video, audio, transcript, presentation] +summary: "Providing a transcript file to to be rendered alongside an audio or video resource." +v4-viewers: + - Clover + - Ramp + - Aviary + - Theseus +topic: AV +top_tabs: + - label: Version 4 + content: "{% capture my_include %}{%- include_relative v4/recipe.md version='4' -%}{% endcapture %}{{ my_include | markdownify }}" +--- + +{{ theme.block-center-start }} + +{% include blocks/tabs.html tabs=page.top_tabs %} + +{{ theme.block-end }} + + + + diff --git a/recipe/0253-using-transcript-file/v4/manifest.json b/recipe/0253-using-transcript-file/v4/manifest.json new file mode 100644 index 000000000..3a6697df7 --- /dev/null +++ b/recipe/0253-using-transcript-file/v4/manifest.json @@ -0,0 +1,67 @@ +{ + "@context": "http://iiif.io/api/presentation/3/context.json", + "id": "{{ id.url }}", + "type": "Manifest", + "label": { + "en": [ + "Lunchroom Manners" + ] + }, + "items": [ + { + "id": "{{ id.path }}/canvas", + "type": "Canvas", + "height": 360, + "width": 480, + "duration": 572.034, + "items": [ + { + "id": "{{ id.path }}/canvas/page", + "type": "AnnotationPage", + "items": [ + { + "id": "{{ id.path }}/canvas/page/annotation1", + "type": "Annotation", + "motivation": "painting", + "body": { + "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/high/lunchroom_manners_1024kb.mp4", + "type": "Video", + "height": 360, + "width": 480, + "duration": 572.034, + "format": "video/mp4" + }, + "target": "{{ id.path }}/canvas" + } + ] + } + ], + "annotations": [ + { + "id": "{{ id.path }}/canvas/page2", + "type": "AnnotationPage", + "items": [ + { + "id": "{{ id.path }}/canvas/page2/a1", + "type": "Annotation", + "motivation": "supplementing", + "provides": ["transcript"], + "body": { + "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/lunchroom_manners.vtt", + "type": "Text", + "format": "text/vtt", + "label": { + "en": [ + "Transcript in WebVTT format" + ] + }, + "language": "en" + }, + "target": "{{ id.path }}/canvas" + } + ] + } + ] + } + ] +} diff --git a/recipe/0253-using-transcript-file/v4/recipe.md b/recipe/0253-using-transcript-file/v4/recipe.md new file mode 100644 index 000000000..29bf44f2a --- /dev/null +++ b/recipe/0253-using-transcript-file/v4/recipe.md @@ -0,0 +1,34 @@ +## Use Case + +Transcripts may be available for your audio and/or video content and should be enabled for side-by-side display for your IIIF media resources. + +## Implementation notes + +External transcript files may exist in a wide variety of formats, including .vtt, .srt, .docx, .txt, and .pdf. To improve accessibility, it is ideal for a IIIF media viewer to display as many potential formats as possible. +Some markup file formats use time tags that allow for time alignment of the audio or video content with the transcript, primarily [WebVTT](http://en.wikipedia.org/wiki/WebVTT) or [SRT](https://en.wikipedia.org/wiki/SubRip) (SubRip Text). + +Offering the transcript file(s) as an Annotation on the Canvas that contains the media file itself enables us to express the relationship between the two. The `provides` property of the Annotation can be used by the client to identify transcript files that should be rendered side-by-side or adjacent to the media item itself. +The `format` property of the Annotation can be used to determine if the transcript file format can be rendered directly to the user by the media viewer. + +In addition to this implementation, one could also offer transcripts as a series of timed textual annotations, making the text available in multiple ways. See [Using Annotations for Timed Text][0079]. + +While captions, subtitles, and transcripts each present some text interpretation of the A/V content, the ways in which they are consumed by users differ. For a more detailed discussion about these differences see [Transcripts, Captions, and Subtitles - General Considerations][0231]. + +## Example + +In this example we demonstrate a transcript file in the WebVTT format, but other formats are possible (see above). + +{% include manifest_links.html viewers="Clover, Ramp, Aviary, Theseus" manifest="manifest.json" %} + +{% include jsonviewer.html src="manifest.json" config='data-line="43-61"'%} + +# Related recipes + +- [Using Caption Files with Video Content][0219] +- [Using Caption and Subtitle Files in Multiple Languages with Video Content][0074] +- [Using Annotations for Timed Text][0079] +- [Providing Access to Transcripts of A/V Content][0017] +- [Annotating a Poetry Reading][0103] + +{% include acronyms.md %} +{% include links.md %} \ No newline at end of file From 2c4e8f68d154bfa66086b95131f2091107ca7fed Mon Sep 17 00:00:00 2001 From: Emily Lynema Date: Tue, 17 Jun 2025 09:50:45 -0400 Subject: [PATCH 02/11] use a docx transcript file in recipe instead of vtt --- recipe/0253-using-transcript-file/v4/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe/0253-using-transcript-file/v4/manifest.json b/recipe/0253-using-transcript-file/v4/manifest.json index 3a6697df7..9d78fd330 100644 --- a/recipe/0253-using-transcript-file/v4/manifest.json +++ b/recipe/0253-using-transcript-file/v4/manifest.json @@ -47,7 +47,7 @@ "motivation": "supplementing", "provides": ["transcript"], "body": { - "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/lunchroom_manners.vtt", + "id": "https://fixtures.iiif.io/video/indiana/lunchroom_manners/lunchroom_manners.docx", "type": "Text", "format": "text/vtt", "label": { From 61bd74cba6a73b3981e324414d247845482cf814 Mon Sep 17 00:00:00 2001 From: Emily Lynema Date: Tue, 17 Jun 2025 11:56:13 -0400 Subject: [PATCH 03/11] remove v4 viewers from index.md since no viewers yet support this recipe --- recipe/0253-using-transcript-file/index.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/recipe/0253-using-transcript-file/index.md b/recipe/0253-using-transcript-file/index.md index 8d2b4c7dc..660c248b0 100644 --- a/recipe/0253-using-transcript-file/index.md +++ b/recipe/0253-using-transcript-file/index.md @@ -5,10 +5,7 @@ layout: recipe tags: [video, audio, transcript, presentation] summary: "Providing a transcript file to to be rendered alongside an audio or video resource." v4-viewers: - - Clover - - Ramp - - Aviary - - Theseus + topic: AV top_tabs: - label: Version 4 From 471f1a8417353b81a0e4f7cedb65e92779bf5ac0 Mon Sep 17 00:00:00 2001 From: Emily Lynema Date: Wed, 18 Jun 2025 12:00:42 -0400 Subject: [PATCH 04/11] update link to manifest.json in v4 recipe --- recipe/0253-using-transcript-file/v4/recipe.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe/0253-using-transcript-file/v4/recipe.md b/recipe/0253-using-transcript-file/v4/recipe.md index 29bf44f2a..c5644ede0 100644 --- a/recipe/0253-using-transcript-file/v4/recipe.md +++ b/recipe/0253-using-transcript-file/v4/recipe.md @@ -18,7 +18,7 @@ While captions, subtitles, and transcripts each present some text interpretation In this example we demonstrate a transcript file in the WebVTT format, but other formats are possible (see above). -{% include manifest_links.html viewers="Clover, Ramp, Aviary, Theseus" manifest="manifest.json" %} +{% include manifest_links.html viewers="Clover, Ramp, Aviary, Theseus" manifest="v4/manifest.json" %} {% include jsonviewer.html src="manifest.json" config='data-line="43-61"'%} From 275cadb58abd710da38665c6d749ccb39f4b3760 Mon Sep 17 00:00:00 2001 From: Emily Lynema Date: Wed, 18 Jun 2025 14:38:15 -0400 Subject: [PATCH 05/11] language tweaks + remove viewer links on recipe page b/c no viewers support v4 yet --- recipe/0253-using-transcript-file/v4/recipe.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/recipe/0253-using-transcript-file/v4/recipe.md b/recipe/0253-using-transcript-file/v4/recipe.md index c5644ede0..410164017 100644 --- a/recipe/0253-using-transcript-file/v4/recipe.md +++ b/recipe/0253-using-transcript-file/v4/recipe.md @@ -1,6 +1,6 @@ ## Use Case -Transcripts may be available for your audio and/or video content and should be enabled for side-by-side display for your IIIF media resources. +Transcripts may be available for your audio and/or video content and should be enabled for side-by-side display alongside your IIIF media resources. ## Implementation notes @@ -16,9 +16,9 @@ While captions, subtitles, and transcripts each present some text interpretation ## Example -In this example we demonstrate a transcript file in the WebVTT format, but other formats are possible (see above). +In this example we demonstrate a transcript file in the docx format, but other formats are possible (see above). -{% include manifest_links.html viewers="Clover, Ramp, Aviary, Theseus" manifest="v4/manifest.json" %} +{% include manifest_links.html viewers="" manifest="v4/manifest.json" %} {% include jsonviewer.html src="manifest.json" config='data-line="43-61"'%} From bccccb1e63e02cbb203e0fe9641774371381a0dc Mon Sep 17 00:00:00 2001 From: Emily Lynema Date: Wed, 18 Jun 2025 14:54:46 -0400 Subject: [PATCH 06/11] update links to v4 manifests in recipe again --- recipe/0253-using-transcript-file/v4/recipe.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipe/0253-using-transcript-file/v4/recipe.md b/recipe/0253-using-transcript-file/v4/recipe.md index 410164017..4c1764ab6 100644 --- a/recipe/0253-using-transcript-file/v4/recipe.md +++ b/recipe/0253-using-transcript-file/v4/recipe.md @@ -18,9 +18,9 @@ While captions, subtitles, and transcripts each present some text interpretation In this example we demonstrate a transcript file in the docx format, but other formats are possible (see above). -{% include manifest_links.html viewers="" manifest="v4/manifest.json" %} +{% include manifest_links.html viewers="" manifest="v4/manifest.json" version="4"%} -{% include jsonviewer.html src="manifest.json" config='data-line="43-61"'%} +{% include jsonviewer.html src="v4/manifest.json" config='data-line="43-61"'%} # Related recipes From 7ed3fe3a3c1cea26ca228cef5c370f48aaefe8f1 Mon Sep 17 00:00:00 2001 From: Glen Robson Date: Tue, 15 Jul 2025 16:11:09 +0100 Subject: [PATCH 07/11] Update links.md --- _includes/links.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/_includes/links.md b/_includes/links.md index 4005c823f..122bf65e5 100644 --- a/_includes/links.md +++ b/_includes/links.md @@ -37,6 +37,8 @@ [0065]: {{ site.cookbook_url | absolute_url }}/recipe/0065-opera-multiple-canvases/ "Table of Contents for Multiple A/V Files on Multiple Canvases" [0068]: {{ site.cookbook_url | absolute_url }}/recipe/0068-newspaper/ "Basic Newspaper" [0074]: {{ site.cookbook_url | absolute_url}}/recipe/0074-multiple-language-captions/ "Using Caption and Subtitle Files in Multiple Languages with Video Content" +[0074-4]: {{ site.cookbook_url | absolute_url}}/recipe/0074-multiple-language-captions/#version-4 "Using Caption and Subtitle Files in Multiple Languages with Video Content" +[0079-4]: {{ site.cookbook_url | absolute_url }}/recipe/0079-annotations-for-captions/#version-4 "Using Annotations for Timed Text" [0117]: {{ site.cookbook_url | absolute_url }}/recipe/0117-add-image-thumbnail/ "Image Thumbnail for Manifest" [0118]: {{ site.cookbook_url | absolute_url }}/recipe/0118-multivalue/ "Displaying Multiple Values with Language Maps" [0135]: {{ site.cookbook_url | absolute_url }}/recipe/0135-annotating-point-in-canvas/ "Annotating a specific point of an image" @@ -44,12 +46,15 @@ [0154]: {{ site.cookbook_url | absolute_url }}/recipe/0154-geo-extension/ "Locate a Manifest on a Web Map" [0202]: {{ site.cookbook_url | absolute_url }}/recipe/0202-start-canvas/ "Load Manifest Beginning with a Specific Canvas" [0219]: {{ site.cookbook_url | absolute_url }}/recipe/0219-using-caption-file/ "Using Caption and Subtitle Files with Video Content" +[0219-4]: {{ site.cookbook_url | absolute_url }}/recipe/0219-using-caption-file/#version-4 "Using Caption and Subtitle Files with Video Content" [0229]: {{ site.cookbook_url | absolute_url }}/recipe/0229-behavior-ranges/ "Adding Thumbnail Navigation and `no-nav` to a Video Resource" [0230]: {{ site.cookbook_url | absolute_url }}/recipe/0230-navdate/ "Navigation by Chronology" [0231]: {{ site.cookbook_url | absolute_url }}/recipe/0231-transcript-meta-recipe/ "Transcripts, Captions, and Subtitles - General Considerations" +[0231-4]: {{ site.cookbook_url | absolute_url }}/recipe/0231-transcript-meta-recipe/#version-4 "Transcripts, Captions, and Subtitles - General Considerations" [0232]: {{ site.cookbook_url | absolute_url }}/recipe/0232-image-thumbnail-canvas/ "Implementation discussion: Thumbnails on Canvases" [0234]: {{ site.cookbook_url | absolute_url }}/recipe/0234-provider/ "Acknowledge Content Contributors" [0240]: {{ site.cookbook_url | absolute_url }}/recipe/0240-navPlace-on-canvases/ "Locate Multiple Canvases on a Web Map" +[253-4]: {{ site.cookbook_url | absolute_url }}/recipe/0253-using-transcript-file/ "Using Transcript Files with Audio or Video Content" [0258]: {{ site.cookbook_url | absolute_url }}/recipe/0258-tagging-external-resource/ "Tagging with an External Resource" [0261]: {{ site.cookbook_url | absolute_url }}/recipe/0261-non-rectangular-commenting/ "Annotation with a Non-Rectangular Polygon" [0266]: {{ site.cookbook_url | absolute_url }}/recipe/0266-full-canvas-annotation/ "Simplest Annotation" From f701727e94a2ad7d74a9db14e09e43966b744eb5 Mon Sep 17 00:00:00 2001 From: Emily Lynema Date: Wed, 23 Jul 2025 16:26:06 -0400 Subject: [PATCH 08/11] update links.md to correct 2 errors and link to new v4 recipes from the v4 recipe --- _includes/links.md | 4 ++-- recipe/0253-using-transcript-file/v4/recipe.md | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/_includes/links.md b/_includes/links.md index 122bf65e5..ec30487c3 100644 --- a/_includes/links.md +++ b/_includes/links.md @@ -46,7 +46,7 @@ [0154]: {{ site.cookbook_url | absolute_url }}/recipe/0154-geo-extension/ "Locate a Manifest on a Web Map" [0202]: {{ site.cookbook_url | absolute_url }}/recipe/0202-start-canvas/ "Load Manifest Beginning with a Specific Canvas" [0219]: {{ site.cookbook_url | absolute_url }}/recipe/0219-using-caption-file/ "Using Caption and Subtitle Files with Video Content" -[0219-4]: {{ site.cookbook_url | absolute_url }}/recipe/0219-using-caption-file/#version-4 "Using Caption and Subtitle Files with Video Content" +[0219-4]: {{ site.cookbook_url | absolute_url }}/recipe/0219-using-caption-file/#version-4 "Using Caption Files with Video Content" [0229]: {{ site.cookbook_url | absolute_url }}/recipe/0229-behavior-ranges/ "Adding Thumbnail Navigation and `no-nav` to a Video Resource" [0230]: {{ site.cookbook_url | absolute_url }}/recipe/0230-navdate/ "Navigation by Chronology" [0231]: {{ site.cookbook_url | absolute_url }}/recipe/0231-transcript-meta-recipe/ "Transcripts, Captions, and Subtitles - General Considerations" @@ -54,7 +54,7 @@ [0232]: {{ site.cookbook_url | absolute_url }}/recipe/0232-image-thumbnail-canvas/ "Implementation discussion: Thumbnails on Canvases" [0234]: {{ site.cookbook_url | absolute_url }}/recipe/0234-provider/ "Acknowledge Content Contributors" [0240]: {{ site.cookbook_url | absolute_url }}/recipe/0240-navPlace-on-canvases/ "Locate Multiple Canvases on a Web Map" -[253-4]: {{ site.cookbook_url | absolute_url }}/recipe/0253-using-transcript-file/ "Using Transcript Files with Audio or Video Content" +[0253-4]: {{ site.cookbook_url | absolute_url }}/recipe/0253-using-transcript-file/ "Using Transcript Files with Audio or Video Content" [0258]: {{ site.cookbook_url | absolute_url }}/recipe/0258-tagging-external-resource/ "Tagging with an External Resource" [0261]: {{ site.cookbook_url | absolute_url }}/recipe/0261-non-rectangular-commenting/ "Annotation with a Non-Rectangular Polygon" [0266]: {{ site.cookbook_url | absolute_url }}/recipe/0266-full-canvas-annotation/ "Simplest Annotation" diff --git a/recipe/0253-using-transcript-file/v4/recipe.md b/recipe/0253-using-transcript-file/v4/recipe.md index 4c1764ab6..0fc65b950 100644 --- a/recipe/0253-using-transcript-file/v4/recipe.md +++ b/recipe/0253-using-transcript-file/v4/recipe.md @@ -10,9 +10,9 @@ Some markup file formats use time tags that allow for time alignment of the audi Offering the transcript file(s) as an Annotation on the Canvas that contains the media file itself enables us to express the relationship between the two. The `provides` property of the Annotation can be used by the client to identify transcript files that should be rendered side-by-side or adjacent to the media item itself. The `format` property of the Annotation can be used to determine if the transcript file format can be rendered directly to the user by the media viewer. -In addition to this implementation, one could also offer transcripts as a series of timed textual annotations, making the text available in multiple ways. See [Using Annotations for Timed Text][0079]. +In addition to this implementation, one could also offer transcripts as a series of timed textual annotations, making the text available in multiple ways. See [Using Annotations for Timed Text][0079-4]. -While captions, subtitles, and transcripts each present some text interpretation of the A/V content, the ways in which they are consumed by users differ. For a more detailed discussion about these differences see [Transcripts, Captions, and Subtitles - General Considerations][0231]. +While captions, subtitles, and transcripts each present some text interpretation of the A/V content, the ways in which they are consumed by users differ. For a more detailed discussion about these differences see [Transcripts, Captions, and Subtitles - General Considerations][0231-4]. ## Example @@ -24,9 +24,9 @@ In this example we demonstrate a transcript file in the docx format, but other f # Related recipes -- [Using Caption Files with Video Content][0219] -- [Using Caption and Subtitle Files in Multiple Languages with Video Content][0074] -- [Using Annotations for Timed Text][0079] +- [Using Caption Files with Video Content][0219-4] +- [Using Caption and Subtitle Files in Multiple Languages with Video Content][0074-4] +- [Using Annotations for Timed Text][0079-4] - [Providing Access to Transcripts of A/V Content][0017] - [Annotating a Poetry Reading][0103] From 75512ec7d3dd0fe702be2f2eb850565c5d75c85d Mon Sep 17 00:00:00 2001 From: Glen Robson Date: Tue, 29 Jul 2025 16:24:23 +0100 Subject: [PATCH 09/11] Commenting out recipes that aren't there yet --- _includes/links.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_includes/links.md b/_includes/links.md index 5ed780c17..2d1ece143 100644 --- a/_includes/links.md +++ b/_includes/links.md @@ -38,19 +38,19 @@ [0068]: {{ site.cookbook_url | absolute_url }}/recipe/0068-newspaper/ "Basic Newspaper" [0074]: {{ site.cookbook_url | absolute_url}}/recipe/0074-multiple-language-captions/ "Using Caption and Subtitle Files in Multiple Languages with Video Content" [0074-4]: {{ site.cookbook_url | absolute_url}}/recipe/0074-multiple-language-captions/#version-4 "Using Caption and Subtitle Files in Multiple Languages with Video Content" -[0079-4]: {{ site.cookbook_url | absolute_url }}/recipe/0079-annotations-for-captions/#version-4 "Using Annotations for Timed Text" +# [0079-4]: {{ site.cookbook_url | absolute_url }}/recipe/0079-annotations-for-captions/#version-4 "Using Annotations for Timed Text" [0117]: {{ site.cookbook_url | absolute_url }}/recipe/0117-add-image-thumbnail/ "Image Thumbnail for Manifest" [0118]: {{ site.cookbook_url | absolute_url }}/recipe/0118-multivalue/ "Displaying Multiple Values with Language Maps" [0135]: {{ site.cookbook_url | absolute_url }}/recipe/0135-annotating-point-in-canvas/ "Annotating a specific point of an image" [0139]: {{ site.cookbook_url | absolute_url }}/recipe/0139-geolocate-canvas-fragment/ "Represent Canvas Fragment as a Geographic Area on a Web Map" [0154]: {{ site.cookbook_url | absolute_url }}/recipe/0154-geo-extension/ "Locate a Manifest on a Web Map" [0202]: {{ site.cookbook_url | absolute_url }}/recipe/0202-start-canvas/ "Load Manifest Beginning with a Specific Canvas" -[0219]: {{ site.cookbook_url | absolute_url }}/recipe/0219-using-caption-file/ "Using Caption and Subtitle Files with Video Content" +# [0219]: {{ site.cookbook_url | absolute_url }}/recipe/0219-using-caption-file/ "Using Caption and Subtitle Files with Video Content" [0219-4]: {{ site.cookbook_url | absolute_url }}/recipe/0219-using-caption-file/#version-4 "Using Caption Files with Video Content" [0229]: {{ site.cookbook_url | absolute_url }}/recipe/0229-behavior-ranges/ "Adding Thumbnail Navigation and `no-nav` to a Video Resource" [0230]: {{ site.cookbook_url | absolute_url }}/recipe/0230-navdate/ "Navigation by Chronology" [0231]: {{ site.cookbook_url | absolute_url }}/recipe/0231-transcript-meta-recipe/ "Transcripts, Captions, and Subtitles - General Considerations" -[0231-4]: {{ site.cookbook_url | absolute_url }}/recipe/0231-transcript-meta-recipe/#version-4 "Transcripts, Captions, and Subtitles - General Considerations" +# [0231-4]: {{ site.cookbook_url | absolute_url }}/recipe/0231-transcript-meta-recipe/#version-4 "Transcripts, Captions, and Subtitles - General Considerations" [0232]: {{ site.cookbook_url | absolute_url }}/recipe/0232-image-thumbnail-canvas/ "Implementation discussion: Thumbnails on Canvases" [0234]: {{ site.cookbook_url | absolute_url }}/recipe/0234-provider/ "Acknowledge Content Contributors" [0240]: {{ site.cookbook_url | absolute_url }}/recipe/0240-navPlace-on-canvases/ "Locate Multiple Canvases on a Web Map" From 1f373235514cf88677007924323221c176c958f3 Mon Sep 17 00:00:00 2001 From: Glen Robson Date: Tue, 29 Jul 2025 16:24:38 +0100 Subject: [PATCH 10/11] Adding 253 av transcript to index --- index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.md b/index.md index aadf15b3c..d3ca36b99 100644 --- a/index.md +++ b/index.md @@ -73,7 +73,7 @@ _The corresponding 2.1 test fixture(s) is given like this, where appropriate: .. * [Providing Access to Transcript Files of A/V Content][0017] * [Using Annotations for Timed Text][0079] * [Using Caption and Subtitle Files with Video Content][0219] - * [A Side-by-side Transcript of a Video Recording][0253] + * [A Side-by-side Transcript of a Video Recording][0253-4] * Transcription of content into XML, with XPaths to select a segment ## Other kinds of annotations From 40e65ddf1a9848802d855bd58e1029260d24db66 Mon Sep 17 00:00:00 2001 From: Glen Robson Date: Tue, 29 Jul 2025 16:36:38 +0100 Subject: [PATCH 11/11] Commenting out recipes that are coming. --- _includes/links.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_includes/links.md b/_includes/links.md index 2d1ece143..176e64518 100644 --- a/_includes/links.md +++ b/_includes/links.md @@ -37,7 +37,7 @@ [0065]: {{ site.cookbook_url | absolute_url }}/recipe/0065-opera-multiple-canvases/ "Table of Contents for Multiple A/V Files on Multiple Canvases" [0068]: {{ site.cookbook_url | absolute_url }}/recipe/0068-newspaper/ "Basic Newspaper" [0074]: {{ site.cookbook_url | absolute_url}}/recipe/0074-multiple-language-captions/ "Using Caption and Subtitle Files in Multiple Languages with Video Content" -[0074-4]: {{ site.cookbook_url | absolute_url}}/recipe/0074-multiple-language-captions/#version-4 "Using Caption and Subtitle Files in Multiple Languages with Video Content" +# [0074-4]: {{ site.cookbook_url | absolute_url}}/recipe/0074-multiple-language-captions/#version-4 "Using Caption and Subtitle Files in Multiple Languages with Video Content" # [0079-4]: {{ site.cookbook_url | absolute_url }}/recipe/0079-annotations-for-captions/#version-4 "Using Annotations for Timed Text" [0117]: {{ site.cookbook_url | absolute_url }}/recipe/0117-add-image-thumbnail/ "Image Thumbnail for Manifest" [0118]: {{ site.cookbook_url | absolute_url }}/recipe/0118-multivalue/ "Displaying Multiple Values with Language Maps" @@ -45,8 +45,8 @@ [0139]: {{ site.cookbook_url | absolute_url }}/recipe/0139-geolocate-canvas-fragment/ "Represent Canvas Fragment as a Geographic Area on a Web Map" [0154]: {{ site.cookbook_url | absolute_url }}/recipe/0154-geo-extension/ "Locate a Manifest on a Web Map" [0202]: {{ site.cookbook_url | absolute_url }}/recipe/0202-start-canvas/ "Load Manifest Beginning with a Specific Canvas" -# [0219]: {{ site.cookbook_url | absolute_url }}/recipe/0219-using-caption-file/ "Using Caption and Subtitle Files with Video Content" -[0219-4]: {{ site.cookbook_url | absolute_url }}/recipe/0219-using-caption-file/#version-4 "Using Caption Files with Video Content" +[0219]: {{ site.cookbook_url | absolute_url }}/recipe/0219-using-caption-file/ "Using Caption and Subtitle Files with Video Content" +# [0219-4]: {{ site.cookbook_url | absolute_url }}/recipe/0219-using-caption-file/#version-4 "Using Caption Files with Video Content" [0229]: {{ site.cookbook_url | absolute_url }}/recipe/0229-behavior-ranges/ "Adding Thumbnail Navigation and `no-nav` to a Video Resource" [0230]: {{ site.cookbook_url | absolute_url }}/recipe/0230-navdate/ "Navigation by Chronology" [0231]: {{ site.cookbook_url | absolute_url }}/recipe/0231-transcript-meta-recipe/ "Transcripts, Captions, and Subtitles - General Considerations"