Skip to content

Commit

Permalink
Merge pull request #247 from dini-ag-kim/242-allowAudioTrailers
Browse files Browse the repository at this point in the history
Support audio trailers
  • Loading branch information
acka47 authored Jul 31, 2023
2 parents d7189cd + cc261ed commit 75f307a
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
18 changes: 18 additions & 0 deletions draft/examples/valid/trailerAudio.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"@context": [
"https://w3id.org/kim/amb/context.jsonld",
{
"@language": "de"
}
],
"id": "https://example.org/educational-podcast",
"type": ["LearningResource"],
"name": "An example educational podcast",
"trailer": {
"type": "AudioObject",
"encodingFormat": "audio/mp3",
"contentSize": "98031",
"contentUrl": "https://example.org/trailer.mp3",
"embedUrl": "https://embed.example.org/trailer.mp3"
}
}
2 changes: 1 addition & 1 deletion draft/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@

### <dfn>trailer</dfn>

Ein Trailer/Video-Teaser zu einer Bildungsressource. MUSS ein JSON-Objekt enthalten, das <code>"type": "VideoObject"</code> sowie die Property <code>contentUrl</code> oder <code>embedUrl</code> enthalten MUSS und folgende weitere Properties enthalten KANN: <code>contentSize</code> (in bytes ohne Maßangabe) , <code>embedUrl</code>, <code>sha256</code>, <code>bitrate</code> (in kb/s ohne Maßangabe) sowie <code>encodingFormat</code>, das bei Verwendung Werte aus [[IANA-MEDIA-TYPES]] enthalten MUSS.
Ein AV- oder Audio-Trailer zu einer Bildungsressource. MUSS ein JSON-Objekt enthalten, das <code>"type": "VideoObject"</code> oder <code>"type": "AudioObject"</code> sowie die Property <code>contentUrl</code> oder <code>embedUrl</code> enthalten MUSS und folgende weitere Properties enthalten KANN: <code>contentSize</code> (in bytes ohne Maßangabe) , <code>embedUrl</code>, <code>sha256</code>, <code>bitrate</code> (in kb/s ohne Maßangabe) sowie <code>encodingFormat</code>, das bei Verwendung Werte aus [[IANA-MEDIA-TYPES]] enthalten MUSS.

<dl>
<dt>Pflichtfeld</dt>
Expand Down
2 changes: 1 addition & 1 deletion draft/schemas/trailer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"type": {
"title": "Type",
"type": "string",
"enum": ["VideoObject"]
"enum": ["VideoObject", "AudioObject"]
},
"contentUrl": {
"title": "Content URL",
Expand Down

0 comments on commit 75f307a

Please sign in to comment.