Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion api/schemas/flow-core.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
},
"container":
{
"description": "The container MIME type for Flow Segments. Note that the `type` component of the container MIME type (i.e. the component before the `/`) may be different to the `type` component of the codec MIME type. e.g. An audio Flow may have `audio/aac` coded content may be wrapped in a `video/mp2t` container. Where multiple types exist for a subtype (e.g. `video/mp4`, `audio/mp4`, `application/mp4`), the closest MIME type to the Flow `format` should be used (e.g. `audio/mp4` for a Flow `format` of `urn:x-nmos:format:audio`). Mime types from the [IANA registry](https://www.iana.org/assignments/media-types/media-types.xhtml) should be preferred. Where multiple MIME types are possible, the most common should be preferred. Where this is insufficient, the maintainers of the TAMS repository may create an application note advising which MIME type to use.",
"description": "The container MIME type for Flow Segments. Note that the `type` component of the container MIME type (i.e. the component before the `/`) may be different to the `type` component of the codec MIME type. e.g. An audio Flow may have `audio/aac` coded content may be wrapped in a `video/mp2t` container. Where multiple types exist for a subtype (e.g. `video/mp4`, `audio/mp4`, `application/mp4`), the closest MIME type to the Flow `format` should be used (e.g. `audio/mp4` for a Flow `format` of `urn:x-nmos:format:audio`). Mime types from the [IANA registry](https://www.iana.org/assignments/media-types/media-types.xhtml) should be preferred. Where multiple MIME types are possible, the most common should be preferred. Where this is insufficient, the maintainers of the TAMS repository may create an application note advising which MIME type to use. Where the Flow does not reference any Media Object(s) directly (e.g. an empty Multi Flow that serves only to collect related mono-essence Flows that do reference Media Objects), this property MUST NOT be set.",
"$ref": "mime-type.json"
},
"avg_bit_rate":
Expand Down
2 changes: 1 addition & 1 deletion docs/appnotes/0006-containers-and-mappings.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ This Application Note applies to TAMS v5.0+.
### Flow `container` Property

The Flow `container` property serves 2 purposes.
The `container` property identifies the container type for the Media bjects and its presence flags whether the Flow directly references Media Objects.
The `container` property identifies the container type for the Media Objects and its presence flags whether the Flow directly references Media Objects.

The `container` property is a [MIME type](https://datatracker.ietf.org/doc/html/rfc6838).
Example values are `video/mp2t` for MPEG-TS, `video/mp4` for MP4 and `application/json` for JSON.
Expand Down
Loading