Skip to content
Novus Examples
yaml112 B

Audio Edit Metadata YAML 04

YAML edit metadata fixture 04 with three millisecond offsets, an explicit crossfade, and a preserve-channel policy. Stable P8 artifact p8-audio-edge-yaml-04.

Preview — first 5 linesyaml
fixture: p8-audio-edge-yaml-04
edit_points_ms: [0, 500, 580]
expected_crossfade_ms: 16
channel_policy: preserve

Specifications

Variant
4
Edit Points
3
Delivery Mode
download-only
Provider
browser-local
Provenance
Synthetic deterministic P8 fixture generated by generation/p8_content.py; seed namespace 2026082300

Testing contract

Reference control
Scenario
Parse the YAML edit metadata and order all offsets numerically.
Expected result
Three offsets resolve as 0, 500, and 580 ms; crossfade is 16 ms and channel policy remains preserve.

What is a .yaml file?

YAML (YAML Ain't Markup Language) is a human-readable data-serialization format using indentation, key-value pairs, and lists, and is a superset of JSON. It supports comments, anchors, and multiple documents per file, favoring readability for configuration. Its indentation sensitivity makes it error-prone to hand-edit.

How to use this file

Use an example YAML file to test config parsers, indentation and anchor handling, multi-document streams, and safe-loading to avoid arbitrary object construction.

How to use this file for testing

“Audio Edit Metadata YAML 04” is a deterministic Novus Examples fixture for Audio editing, Metadata testing, Config testing. Synthetic foley, ambience, dialogue, loops, stems, cue sheets, and edge cases with documented timing and signal properties for repeatable editing checks.

Documented properties for this file: YAML · 112 bytes. Compare results against paired or grouped companions on this page when present (clean↔damaged, searchable↔scanned, or format twins) so scores stay reproducible across runs.

Download the file once, keep the path stable in CI or local scripts, and treat the spec table as the contract: dimensions, seeds, field lists, and roles are intentional. Corrupt or invalid samples are labelled as such — expect parsers to fail loudly rather than silently accept them.

Creator-audio fixtures are short, synthetic, and deterministic. Check sample rate, channels, duration, cue points, and the published expected result; workflow-kit members connect the media to the brief, prompt plan, and evaluation rubric without an upload.

Import the source at its documented sample rate, apply the stated edit or mix operation, and compare timing, channels, peak behavior, and the expected-output member rather than listening by impression alone.

Code examples

import yaml  # pip install pyyaml

with open("p8-audio-edge-yaml-04.yaml") as f:
    data = yaml.safe_load(f)
print(data)

Generated by generation/p8_content.py. Free for any use, no attribution required — license.