-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Prototype info.jsons #50
Comments
Here's an prototype of some examples what an info.json for video might look like: Here's one of the examples: Note that I'm using There are three properties worth taking a look at: sources, tracks, and thumbnail. In While tracks like captions and subtitles might be considered most appropriate for a Presentation manifest, for some users these external tracks (WebVTT files in this case) are actually how they experience the video as fully as possible. (Some video containers have a way to include chapters and subtitles directly in the file right along with the images and audio of the video. It is just that in this case the captions and subtitles are separate files.) I've included the These tracks could also be expressed as annotations, which is likely how they would be managed and delivered for purposes of search inside. But since there are already caption files that institutions have created, I wanted a way to easily reuse them without much work. There are also certain features to captions that might not be easily included in annotations. Finally, the Thoughts on this prototype? What's missing? What won't work? What would you like to see in an info.json for a video? |
For easy ref and of a pretty printed version of @jronallo 's https://iiif-staging02.lib.ncsu.edu/iiifv/pets/info.json see https://gist.github.com/zimeon/29e829730576d188897cccb5ea8e97dd I am in favor of the ...
"sources": [
{
"format": "webm",
"height": 480,
"width": 720,
"size": "3360808",
"duration": "35.627000",
"type": "video/webm; codecs=\"vp8,vorbis\"",
"id": "https://iiif-staging02.lib.ncsu.edu/iiifv/pets/pets-720x480.webm"
},
... rather that using a parameterized URI style like we do for Image API. |
We (Brian Keese and I) followed @jronallo 's example for one of our videos and ended up with this:
The fields that we felt the need to add had to do with bitrate. We added video_bitrate and audio_bitrate, but just as in codecs we use "video,audio", with bitrate I suppose we can do the same. I don't know a reason to prefer one over the other. |
I think bitrate can be dynamic, so better not include it in the info.json. I propose some changes, including:
} I welcome your feedback. |
URI pattern: http://server/prefix/identifier/timeRegion/spaceRegion/timeSize/spaceSize/rotation/quality.format Though spaceRegion (I want this region of the visual part), timeSize (I want it sped up/slowed down to take this long) and rotation could easily be dropped, consistency and future proofing would lead me to include them with filler values such as "max")
With no additional supports features, such as "arbitrarySize", "arbitraryRegion", etc. would then allow the construction of the URIs: http://example.edu/iiif/identifier/max/max/max/max/0/color.webm |
Regarding the example given above by @azaroth42 See #58 for why it is good to include the codecs parameter for content type, how it works, and why specifying only one codecs parameter probably won't work for MP4. With those sizes and that profile does it mean that I am advertising that I have the following video available? http://example.edu/iiif/identifier/max/max/max/360,240/0/gray.mp4 In the future I plan on only providing webm as a fallback and in only one size. Is the above saying that I am advertising that it is available for both sizes and both qualities? How can I say that I only have the webm available in a particular size? How would I say that I have a source which is HLS or MPEG-DASH? There could be any number of adaptive sizes and bitrates for that. They could be sizes that are not the same as the static derivatives that I provide via progressive download. Would you just list "application/dash+xml" as a format and ignore sizes? Would I always just ignore most of the parameters for MPEG-DASH since a single MPEG-DASH can include several different sizes and bitrates (as well as separate audio and video streams)? Videos created from the same source video will have slightly different durations. Each source may have a slightly different duration. Is that important to know? Is there a use case for video qualities like gray? The only use cases I see that require this form of server API are download ones and they're for time and region segments. Are there others? |
Following from discussion on today's call, and @tomcrane's document:
And then the transformation of the example .vtt into annotations is very easy, with media fragments on the canvas uri for the temporal regions, but the original is linked from the list for systems that can use it. |
And the code to turn VTT into annotations is trivial: from pyvtt import WebVTTFile
import json
vtt = WebVTTFile.open("pets-en.vtt")
canvas = "http://example.org/canvas/1"
annos = []
for caption in vtt:
tgt = "%s#t=npt:%s,%s" % (canvas, caption.start, caption.end)
annos.append({"@type": "Annotation", "motivation": "painting", "body": {"value": caption.text}, "target": tgt})
al = {"@type": "AnnotationList", "items": annos}
print json.dumps(al, sort_keys=True, indent=4) |
I think it's essential to include the Rights and Licensing fields, as in Image API's info.json ( http://iiif.io/api/image/2.1/#rights-and-licensing-properties ) as demonstrated in the example I've included in this thread. |
@Eyal-R Yes, missed that, sorry! It would work exactly as it does in the presentation API we have today, so exactly as per the examples above. Edited the example to add in the attribution from Jason's example. |
Description
We would like to see some proposals for what folks think an info.json for A/V might look like so that we can make further decisions on what we need in an information package about a video or audio recording.
Variation(s)
Proposed Solutions
Yes! Propose solutions. 😄
Additional Background
Notes from the Hague meeting that can help to inform potentially productive directions.
https://docs.google.com/document/d/1cnkOPm7rC9uKeSxorFpu004ZzJxolVLWex5NdxMKnHY/edit
The text was updated successfully, but these errors were encountered: