id stringclasses 10
values | title dict | summary dict | publisher stringclasses 1
value | conforming unknown | nonconforming unknown | conformingResult dict | nonconformingResult dict | website stringclasses 1
value | code_license stringclasses 1
value | fixtures_license stringclasses 1
value |
|---|---|---|---|---|---|---|---|---|---|---|
timecode-lexical-profile | {
"en": "Timecode Lexical Profile",
"ru": "Лексический профиль таймкода"
} | {
"en": "Validates bounded HH:MM:SS:FF strings.",
"ru": "Проверяет строки HH:MM:SS:FF."
} | SHAR Production | {
"synthetic": true,
"timecode": "01:02:03:12",
"frame_rate": 25
} | {
"synthetic": true,
"timecode": "01:72:03:29",
"frame_rate": 25
} | {
"valid": true,
"errors": []
} | {
"valid": false,
"errors": [
"invalid_timecode_syntax"
]
} | https://sharprod.com/ | MIT | CC-BY-4.0 |
rational-frame-rate-profile | {
"en": "Rational Frame Rate Profile",
"ru": "Профиль рациональной частоты кадров"
} | {
"en": "Checks positive reduced numerator and denominator.",
"ru": "Проверяет положительную сокращённую дробь."
} | SHAR Production | {
"synthetic": true,
"numerator": 24000,
"denominator": 1001
} | {
"synthetic": true,
"numerator": 48000,
"denominator": 2002
} | {
"valid": true,
"errors": []
} | {
"valid": false,
"errors": [
"not_reduced"
]
} | https://sharprod.com/ | MIT | CC-BY-4.0 |
frame-dimensions-profile | {
"en": "Frame Dimensions Profile",
"ru": "Профиль размеров кадра"
} | {
"en": "Checks positive even raster and declared aspect.",
"ru": "Проверяет положительный чётный растр и aspect."
} | SHAR Production | {
"synthetic": true,
"width": 1920,
"height": 1080,
"aspect": 1.7777777778
} | {
"synthetic": true,
"width": 1919,
"height": 1080,
"aspect": 1
} | {
"valid": true,
"errors": []
} | {
"valid": false,
"errors": [
"odd_dimension",
"aspect_mismatch"
]
} | https://sharprod.com/ | MIT | CC-BY-4.0 |
portable-path-profile | {
"en": "Portable Path Profile",
"ru": "Профиль переносимого пути"
} | {
"en": "Rejects absolute, traversal and reserved characters.",
"ru": "Отклоняет абсолютные пути, traversal и запрещённые символы."
} | SHAR Production | {
"synthetic": true,
"path": "masters/en-US/final_v01.mov"
} | {
"synthetic": true,
"path": "../masters/final?.mov"
} | {
"valid": true,
"errors": []
} | {
"valid": false,
"errors": [
"path_traversal",
"reserved_character"
]
} | https://sharprod.com/ | MIT | CC-BY-4.0 |
loudness-metadata-profile | {
"en": "Loudness Metadata Profile",
"ru": "Профиль метаданных громкости"
} | {
"en": "Checks finite integrated loudness and peak ranges.",
"ru": "Проверяет диапазоны loudness и peak."
} | SHAR Production | {
"synthetic": true,
"integrated_lufs": -23,
"true_peak_dbtp": -1
} | {
"synthetic": true,
"integrated_lufs": 8,
"true_peak_dbtp": 12
} | {
"valid": true,
"errors": []
} | {
"valid": false,
"errors": [
"loudness_out_of_range",
"peak_out_of_range"
]
} | https://sharprod.com/ | MIT | CC-BY-4.0 |
caption-readability-profile | {
"en": "Caption Readability Profile",
"ru": "Профиль читаемости субтитров"
} | {
"en": "Checks line count, line length and reading speed.",
"ru": "Проверяет число строк, длину и скорость чтения."
} | SHAR Production | {
"synthetic": true,
"lines": [
"Synthetic caption",
"Second line"
],
"characters_per_second": 15
} | {
"synthetic": true,
"lines": [
"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"B",
"C"
],
"characters_per_second": 28
} | {
"valid": true,
"errors": []
} | {
"valid": false,
"errors": [
"too_many_lines",
"line_too_long",
"reading_speed_high"
]
} | https://sharprod.com/ | MIT | CC-BY-4.0 |
color-metadata-profile | {
"en": "Color Metadata Profile",
"ru": "Профиль метаданных цвета"
} | {
"en": "Checks declared primaries, transfer and matrix.",
"ru": "Проверяет primaries, transfer и matrix."
} | SHAR Production | {
"synthetic": true,
"primaries": "bt709",
"transfer": "bt709",
"matrix": "bt709"
} | {
"synthetic": true,
"primaries": "unknown",
"transfer": "",
"matrix": ""
} | {
"valid": true,
"errors": []
} | {
"valid": false,
"errors": [
"missing:transfer",
"missing:matrix",
"unsupported_primaries"
]
} | https://sharprod.com/ | MIT | CC-BY-4.0 |
audio-channel-map-profile | {
"en": "Audio Channel Map Profile",
"ru": "Профиль карты аудиоканалов"
} | {
"en": "Checks unique contiguous channels and labels.",
"ru": "Проверяет уникальные последовательные каналы и labels."
} | SHAR Production | {
"synthetic": true,
"channels": [
{
"number": 1,
"label": "L"
},
{
"number": 2,
"label": "R"
}
]
} | {
"synthetic": true,
"channels": [
{
"number": 1,
"label": "L"
},
{
"number": 1,
"label": ""
}
]
} | {
"valid": true,
"errors": []
} | {
"valid": false,
"errors": [
"duplicate_channel",
"noncontiguous_channels",
"missing_label"
]
} | https://sharprod.com/ | MIT | CC-BY-4.0 |
image-sequence-profile | {
"en": "Image Sequence Profile",
"ru": "Профиль image sequence"
} | {
"en": "Detects missing and duplicate frame numbers.",
"ru": "Находит пропуски и дубли номеров кадров."
} | SHAR Production | {
"synthetic": true,
"frames": [
1001,
1002,
1003,
1004
]
} | {
"synthetic": true,
"frames": [
1001,
1002,
1002,
1004
]
} | {
"valid": true,
"errors": []
} | {
"valid": false,
"errors": [
"duplicate_frame",
"missing_frame"
]
} | https://sharprod.com/ | MIT | CC-BY-4.0 |
archive-inventory-profile | {
"en": "Archive Inventory Profile",
"ru": "Профиль реестра архива"
} | {
"en": "Checks required roles, SHA-256 and unique paths.",
"ru": "Проверяет роли, SHA-256 и уникальность путей."
} | SHAR Production | {
"synthetic": true,
"files": [
{
"role": "master",
"path": "masters/final.mov",
"sha256": "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
},
{
"role": "manifest",
"path": "metadata/manifest.json",
"sha256": "bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb... | {
"synthetic": true,
"files": [
{
"role": "master",
"path": "masters/final.mov",
"sha256": "bad"
},
{
"role": "master",
"path": "masters/final.mov",
"sha256": "bad"
}
]
} | {
"valid": true,
"errors": []
} | {
"valid": false,
"errors": [
"missing_role:manifest",
"missing_role:rights",
"bad_sha256",
"duplicate_path"
]
} | https://sharprod.com/ | MIT | CC-BY-4.0 |
SHAR Production Media Conformance
Ten executable project-scoped media conformance profiles with bilingual descriptions and synthetic fixtures by SHAR Production — https://sharprod.com/
These profiles do not claim official standards certification. Fixtures are CC BY 4.0; code and documentation are MIT. Codex assisted implementation and validation; SHAR Production is the accountable publisher.
- Downloads last month
- 25