diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000000000000000000000000000000000000..5bacff2d2b24df1572e7fda591e0be0dd94e261a --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +*.flac filter=lfs diff=lfs merge=lfs -text +*.wav filter=lfs diff=lfs merge=lfs -text diff --git a/NOTICE.md b/NOTICE.md new file mode 100644 index 0000000000000000000000000000000000000000..53ac79e66ddea6b0a371d03865adad684bd1153f --- /dev/null +++ b/NOTICE.md @@ -0,0 +1,52 @@ +# NOTICE — Source attributions + +CineAudioDB contains audio **derived from** the works below. Attribution is required by the +Creative Commons licenses of the source material. The mapping between these works and the +anonymized `film_0X` identifiers is intentionally not published; this notice provides the +attribution required by the CC-BY licenses without de-anonymizing the dataset. + +## Creative Commons source works (open-source animations) + +The open-source animation productions are derived from short films produced by the +**Blender Foundation / Blender Institute** (https://www.blender.org), released under +Creative Commons Attribution licenses: + +- **Sprite Fright** — © Blender Foundation, cloud.blender.org — licensed **CC-BY 4.0** +- **Cosmos Laundromat: First Cycle** — © Blender Foundation, gooseberry.blender.org — licensed **CC-BY 4.0** +- **Glass Half** — © Blender Foundation — licensed **CC-BY 3.0** + +Derived audio in this dataset (isolated stems, stereo downmixes, linear and reconstructed +mixes) constitutes adaptations of the original soundtracks. The original works remain +© Blender Foundation and are used under the terms of their respective CC-BY licenses. +No endorsement by the Blender Foundation is implied. + +Sound effects and ambiences within these soundtracks may themselves originate from +third-party libraries (e.g. Freesound) under their own licenses; consult the original +productions' credits for details. + +## CC-BY-SA source work (Morevna / Pepper & Carrot) + +Four productions (the English and Russian versions of two animated shorts) are derived from the +**Pepper & Carrot** motion-comic adaptation by the **Morevna Project**, based on the webcomic +**Pepper & Carrot by David Revoy** (https://www.davidrevoy.com, https://morevnaproject.org), +released under **Creative Commons Attribution-ShareAlike 4.0 (CC-BY-SA 4.0)**. + +Because CC-BY-SA is **copyleft**, any redistribution of these derived stems/mixes (and arguably any +dataset bundle containing them) must itself be licensed **CC-BY-SA 4.0** with attribution. Keep these +items' licensing distinct from the CC-BY material above. + +The dialogue/music/sfx stems for these two were **rendered from the production's Blender VSE** (audio +strips grouped by source folder and mixed down per group). + +**Embedded third-party audio:** the sound-effects and music in this production are **third-party clips +assembled from Freesound and other CC sources**, each with its own license and required attribution +(e.g. contributors potentjello, kwahmah_02, FreqMan, GowlerMusic, Benboncan, joedeshon, edhutschek, +AudioRiggs, unfa, Taira Komori, and others — full list in the source project's `credits/sound-fx.txt`). +**These individual clip licenses have not been audited here and may include NonCommercial (CC-BY-NC) +terms** — review them before any commercial use or redistribution. + +## License of the dataset compilation + +The selection, arrangement, processing scripts, and metadata of CineAudioDB are provided for +research use. Downstream users must honor the per-production licenses recorded in +`metadata.csv` and `films.json`. diff --git a/README.md b/README.md new file mode 100644 index 0000000000000000000000000000000000000000..723dda90033b4ce8c637798fca8f0b4422dc249d --- /dev/null +++ b/README.md @@ -0,0 +1,200 @@ +--- +pretty_name: CineAudioDB +license: other +license_name: mixed-cc-by-sa-and-cc-by +language: + - en + - fr + - de + - ru +task_categories: + - audio-to-audio +tags: + - audio-source-separation + - cinematic-audio + - music-source-separation + - speech-enhancement + - dnr + - film-audio +size_categories: + - n<1K +--- + +# CineAudioDB + +**A real-world evaluation set for cinematic audio source separation.** + +CineAudioDB contains real film/animation productions with ground-truth stems +(**dialogue**, **music**, **sfx**) for evaluating cinematic source-separation models. +Unlike synthetic datasets that sum stems linearly, real productions are mixed with a +non-linear mastering chain (compression, limiting, sidechain ducking, reverb), so the +released stems do **not** generally sum to the mastered mix. To support fair evaluation +under both assumptions, every production is provided in two input versions: + +- **`linear_mix`** — the three stems summed (perfectly additive: `mix = dialogue + music + sfx`). +- **`production_mix`** — the real mastered stereo mix (non-additive; this is what audiences hear). + +This is the real-content evaluation companion to the synthetic generation pipeline described +in the accompanying paper. + +## At a glance + +| | | +|---|---| +| Productions | 9 (7 open-source animations + 2 student production) | +| Stems | `dialogue`, `music`, `sfx` (ambience merged into sfx); `film_01` also ships 8 fine stems → 3-/4-stem groupings | +| Mix versions | `linear_mix` (additive), `production_mix` (mastered, where available) | +| Total duration | **2.46 h** | +| Audio format | **FLAC (lossless), 24-bit, 48 kHz** | +| Channels | stereo (one production is mono native) | + +## Why two mix versions + +Mask-based separators (e.g. Bandit, MRX) assume `mix = Σ stemₖ` and estimate each source as +`ŝₖ = x ⊙ mₖ`. Real mastered mixes break this assumption: mastering redistributes and limits +energy so individual stems routinely exceed the mix in some time-frequency bins. + +- Evaluate on **`linear_mix`** to isolate model quality from the mixing-process mismatch + (the input decomposes *exactly* into the ground-truth stems). +- Evaluate on **`production_mix`** to measure real deployment performance on professionally + mastered audio. Because the mapping is non-additive, scale-/shift-sensitive metrics (e.g. + SI-SNR) are best complemented by listening tests. + +## Directory structure + +``` +CineAudioDB/ +├── README.md +├── NOTICE.md # source attributions (CC-BY) +├── metadata.csv # one row per audio file (HF audiofolder-compatible) +├── films.json # per-production summary +└── data/ + ├── film_01/ # dialogue, music, sfx, linear_mix (additive) + │ └── fine/ # 8 atomic print-master stems (see below) + ├── film_02/ # dialogue, music, sfx, linear_mix, production_mix + ├── film_03/ # dialogue, music, sfx, linear_mix, production_mix (mono) + └── film_04/ # dialogue, music, sfx, linear_mix, production_mix +``` + +Within a production, every file has identical length, sample rate, and channel count. + +### Fine stems (film_01) + +`film_01` is delivered as a full professional print master, so it uniquely ships its **8 atomic +stem categories** in `data/film_01/fine/` — `dx` (dialogue), `vo` (voice-over), `mx` (music), +`fx` (hard effects), `fol` (foley), `bg` (backgrounds/ambience), `pfx` (production effects), +`arch` (archival). They are scaled by the same per-production gain as the 3-stem files, so any +grouping sums **exactly** (to 24-bit precision) to the corresponding stem and to `linear_mix`: + +| grouping | dialogue | music | ambience | sfx | +|---|---|---|---|---| +| **3-stem** (top-level files) | `dx+vo` | `mx` | — | `fx+fol+bg+pfx+arch` | +| **4-stem** (paper's synthesis taxonomy) | `dx+vo` | `mx` | `bg` | `fx+fol+pfx+arch` | + +```python +import soundfile as sf, numpy as np +fine = "data/film_01/fine/" +def s(*names): return sum(sf.read(fine+n+".flac")[0] for n in names) +dialogue, music, ambience, sfx = s("dx","vo"), s("mx"), s("bg"), s("fx","fol","pfx","arch") +# dialogue + music + ambience + sfx == data/film_01/linear_mix.flac (24-bit precision) +``` + +## Productions (anonymized) + +| id | duration | channels | mix type | production_mix | source | license | +|----|---------:|----------|----------|:--------------:|--------|---------| +| `film_01` | 78.00 min | stereo (downmix from 5.1) | additive¹ | — | student production | **CC-BY-SA-4.0** | +| `film_02` | 12.11 min | stereo | non-additive | ✓ | open-source animation | CC-BY-4.0 | +| `film_03` | 10.45 min | **mono** | non-additive | ✓ | open-source animation | CC-BY-4.0 | +| `film_04` | 3.22 min | stereo (DAW reconstruction) | non-additive | ✓ | open-source animation | CC-BY-3.0 | +| `film_05` | 7.58 min | stereo (Blender VSE render) | non-additive | ✓ | open-source animation (EN) | **CC-BY-SA-4.0** | +| `film_06` | 7.59 min | stereo (Blender VSE render) | non-additive | ✓ | open-source animation (RU) | **CC-BY-SA-4.0** | +| `film_07` | 1.89 min | stereo (Blender VSE render) | additive³ | — | open-source animation (EN) | **CC-BY-SA-4.0** | +| `film_08` | 1.90 min | stereo (Blender VSE render) | additive³ | — | open-source animation (RU) | **CC-BY-SA-4.0** | +| `film_09` | 25.00 min | stereo | non-additive | ✓ | student production | **CC-BY-SA-4.0** | + + +## Audio format & normalization + +- **FLAC (lossless), 24-bit, 48 kHz** throughout — bit-exact to the source PCM (verified `maxdiff=0`), + decoded transparently by `soundfile` and 🤗 `datasets`. +- Surround sources are downmixed to stereo via **ITU-R BS.775** + (`Lt = L + 0.707·C + 0.707·Ls`, `Rt = R + 0.707·C + 0.707·Rs`; LFE dropped). +- A single per-production gain is applied uniformly to **all** files of that production so the + loudest signal peaks at **−1 dBFS** (no clipping in fixed-point). This preserves the additive + property (`linear_mix = g·(dialogue+music+sfx)`) and the relative balance between stems and the + production mix. The applied gain is recorded in `films.json`. +- Additivity verified: `max|dialogue+music+sfx − linear_mix| ≈ 2·10⁻⁷` (24-bit quantization floor). + +## Loading + +```python +import soundfile as sf + +# additive evaluation: input decomposes exactly into the targets +mix, sr = sf.read("data/film_02/linear_mix.flac") +dia, _ = sf.read("data/film_02/dialogue.flac") +mus, _ = sf.read("data/film_02/music.flac") +sfx, _ = sf.read("data/film_02/sfx.flac") +# mix == dia + mus + sfx (to 24-bit precision) + +# real-world evaluation: mastered, non-additive input +prod, _ = sf.read("data/film_02/production_mix.flac") +``` + +Or via 🤗 `datasets` (each row = one audio file; filter on `component` / `kind` / `film_id`): + +```python +from datasets import load_dataset +ds = load_dataset("audiofolder", data_dir="CineAudioDB", split="test") +stems = ds.filter(lambda r: r["kind"] == "target_stem") +``` + +`metadata.csv` columns: `file_name, film_id, component, kind, channels, sample_rate, bit_depth, +frames, duration_sec, peak, mix_type, source_type, license`. + +## Processing & provenance + +Each production arrived in a different state; all were normalized to the layout above. + +- **film_01** — 8 professional print-master stem categories (DX, VO, MX, FX, FOL, BG, PFX, ARCH), + each as six 24-bit mono channels of a 5.1 mix. Each category was downmixed to stereo (BS.775) and + grouped: `dialogue = DX+VO`, `music = MX`, `sfx = FX+FOL+BG+PFX+ARCH`. +- **film_02** — stems trimmed of 11.45 s trailing silence to align with the mastered mix; mono + center dialogue duplicated to L=R; original 24-bit stereo master used as `production_mix`. +- **film_03** — native **mono, 16-bit**; kept mono (stereo cannot be honestly recovered) and upcast + to 24-bit. The supplied mixture is the mastered `production_mix`. +- **film_04** — reconstructed from a DAW (Ardour) session by rendering each region (source slice, + region gain, fades, center pan) into per-category stereo buses; reverb sends and master-bus + plugins are intentionally **not** replicated, which is what makes the stems dry and the mix + non-additive. The real session render is the `production_mix`, advanced by 682 samples (~14 ms) + to compensate for master-bus latency and align with the stems. + +## Known limitations + +- **film_03 is mono.** Its `dialogue`/`music`/`sfx` and both mixes are single-channel. +- **film_04 stems are dry reconstructions.** They omit master-bus reverb/EQ/limiting; the intro/outro + theme music audible in its `production_mix` is *not* isolated in the stems (it existed only inside a + full-mix bounce and was excluded to keep the music target clean). This is a genuine non-additive gap. +- **`production_mix` ≠ Σ stems** for `film_02`–`film_04` by design. Use `linear_mix` when you need exact + additivity. +- Surround productions lose the LFE channel in the stereo downmix (standard practice). + +## Citation + +```bibtex +@inproceedings{cineaudiodb2026, + title = {Realistic Data Generation and Evaluation for Cinematic Audio Source Separation}, + author = {Anonymous}, + booktitle = {Interspeech (under review)}, + year = {2026} +} +``` + +## Licensing & attribution + +This dataset mixes licenses. See **[NOTICE.md](NOTICE.md)** for the required attributions of the +Creative Commons source works. The open-source animations are derived from CC-BY films +(© Blender Foundation); the student productions are released under **CC-BY-SA 4.0**. You must +comply with the per-production licenses +listed in `metadata.csv` / `films.json`. diff --git a/data/film_01/dialogue.flac b/data/film_01/dialogue.flac new file mode 100644 index 0000000000000000000000000000000000000000..cdd18632d2b2e072e09b99b7e3565fcccefc49da --- /dev/null +++ b/data/film_01/dialogue.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b6ff6c9668d536c9f5bc796b1be6eda38f072927cfdaaa3d7f1f7cc4263eb50 +size 452352843 diff --git a/data/film_01/fine/arch.flac b/data/film_01/fine/arch.flac new file mode 100644 index 0000000000000000000000000000000000000000..cecef0aa5e577966c5aba00c86b38a1ca6374038 --- /dev/null +++ b/data/film_01/fine/arch.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1784957fccee469465c619474d16c1296444a16e34bf15df9da3ec0f7237310 +size 212227462 diff --git a/data/film_01/fine/bg.flac b/data/film_01/fine/bg.flac new file mode 100644 index 0000000000000000000000000000000000000000..d82ffda71d21dfdd7a9f43b4bacfc63e77e9ca56 --- /dev/null +++ b/data/film_01/fine/bg.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebd347e28182ba289c31b4cc48ab586817584c30b7bcf9cc3f899aa902e83167 +size 523615411 diff --git a/data/film_01/fine/dx.flac b/data/film_01/fine/dx.flac new file mode 100644 index 0000000000000000000000000000000000000000..bf5b4bc34f83e293617c3c1a1c298ce02bd40353 --- /dev/null +++ b/data/film_01/fine/dx.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7f5edfd2eaa241423452862bd0230723d1089569d814a00229817cee164e3c3 +size 326117988 diff --git a/data/film_01/fine/fol.flac b/data/film_01/fine/fol.flac new file mode 100644 index 0000000000000000000000000000000000000000..bf2ec830aac46815cef349de82317df87fcd2b3f --- /dev/null +++ b/data/film_01/fine/fol.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85261d6d67fa1eb98a8829f61e7f70ca269c6e096d5a9dcd6767123e1f3927f9 +size 292495565 diff --git a/data/film_01/fine/fx.flac b/data/film_01/fine/fx.flac new file mode 100644 index 0000000000000000000000000000000000000000..2a40cebf2c94c7a74560be8d158a086ab3d09659 --- /dev/null +++ b/data/film_01/fine/fx.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3788ac96c7e7069f68c137ed5aca19f85ae664b29495480e60d6a73b445b391f +size 238806290 diff --git a/data/film_01/fine/mx.flac b/data/film_01/fine/mx.flac new file mode 100644 index 0000000000000000000000000000000000000000..99653ef93a2316f88af65c4cb75899459ecfe566 --- /dev/null +++ b/data/film_01/fine/mx.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6db18fbb9b31b89b95c96a8f736964a259971d956ff499908a0b3520d08a34f3 +size 434629699 diff --git a/data/film_01/fine/pfx.flac b/data/film_01/fine/pfx.flac new file mode 100644 index 0000000000000000000000000000000000000000..bd4ba794a47d440c7104a7279c568fa537fac0b4 --- /dev/null +++ b/data/film_01/fine/pfx.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:239860eebb7f9276f621dc42326e1d7b9b665a3fe51a09c230187deb1974c0f1 +size 237489739 diff --git a/data/film_01/fine/vo.flac b/data/film_01/fine/vo.flac new file mode 100644 index 0000000000000000000000000000000000000000..ee82eeb1e33063eeaf06aa92fefedcd49ec28d43 --- /dev/null +++ b/data/film_01/fine/vo.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0128b357c3d979d4228190c4c6f9f4eb436fb1551bc93464984e8656448af5eb +size 330232655 diff --git a/data/film_01/linear_mix.flac b/data/film_01/linear_mix.flac new file mode 100644 index 0000000000000000000000000000000000000000..36fb1a545f2e259970748d1eeb8090b6ef512755 --- /dev/null +++ b/data/film_01/linear_mix.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1de6e3e1d324ce607e4053f5a2338a8ef5020f296e0021e9dceb3964747176a4 +size 717813839 diff --git a/data/film_01/music.flac b/data/film_01/music.flac new file mode 100644 index 0000000000000000000000000000000000000000..6db472be4051081c16a73313b236964d7df5f156 --- /dev/null +++ b/data/film_01/music.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5929314877f8fbc0e416013f677645dd9b9149a1e082890772d67a81104afc9e +size 436722832 diff --git a/data/film_01/sfx.flac b/data/film_01/sfx.flac new file mode 100644 index 0000000000000000000000000000000000000000..e14928ec0f150c346bd104f40a36c24acfde1851 --- /dev/null +++ b/data/film_01/sfx.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28ee9e8eed3eb041300368b7b3adeb6d1b0f376ac024da3dafb114dc385df153 +size 567356134 diff --git a/data/film_02/dialogue.flac b/data/film_02/dialogue.flac new file mode 100644 index 0000000000000000000000000000000000000000..eb5e69af26ee4b14e90487f9c5a5ebe3de15f0e1 --- /dev/null +++ b/data/film_02/dialogue.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ac88ebf39ea6717ab3d5f8263e24613973870251dc175a7cbf292fd1d219956 +size 21366041 diff --git a/data/film_02/linear_mix.flac b/data/film_02/linear_mix.flac new file mode 100644 index 0000000000000000000000000000000000000000..feda7a5158aae3c5d7ab800880d40dd86b4a578d --- /dev/null +++ b/data/film_02/linear_mix.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52a11527688285d1bb7b8cb2be1c85ac792702ca39be486d20571311aac2dfe1 +size 134269975 diff --git a/data/film_02/music.flac b/data/film_02/music.flac new file mode 100644 index 0000000000000000000000000000000000000000..50969ced5e009299896b1230c5c75e5a676fd42a --- /dev/null +++ b/data/film_02/music.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f11b37731fbd5fab02d2a516bca1bf213facb5208d42ecccae3bffc2d2d95e13 +size 40659830 diff --git a/data/film_02/production_mix.flac b/data/film_02/production_mix.flac new file mode 100644 index 0000000000000000000000000000000000000000..485126f6c24c51b20d4a8aff4b761a2a04689476 --- /dev/null +++ b/data/film_02/production_mix.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13f32a4497d2ac57bb268d574dd8cd76eb2cdb20dc5ca2f60cc5db6709b4827f +size 131831500 diff --git a/data/film_02/sfx.flac b/data/film_02/sfx.flac new file mode 100644 index 0000000000000000000000000000000000000000..97934de9e20da6381d9b833b72f22edd1b5e73f3 --- /dev/null +++ b/data/film_02/sfx.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e46211532c5fda5a88388d2cc666b93250931c838b3e9a381221a8dc1955cc01 +size 114915165 diff --git a/data/film_03/dialogue.flac b/data/film_03/dialogue.flac new file mode 100644 index 0000000000000000000000000000000000000000..8e2f04cbc0fbc069a114f17be1c73aa041e66040 --- /dev/null +++ b/data/film_03/dialogue.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5711f09fe48a506495a9ad71b23bcf5c68ce9f8d8cad1b0eb76e67b42ed41ec9 +size 52514375 diff --git a/data/film_03/linear_mix.flac b/data/film_03/linear_mix.flac new file mode 100644 index 0000000000000000000000000000000000000000..53e5cebb8957edc50f0edb50514f68af60807f6c --- /dev/null +++ b/data/film_03/linear_mix.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:438e4866d7f7beae4e2c49d26199a77f98ed878be21dd78f95f5da0567ea1e43 +size 66784708 diff --git a/data/film_03/music.flac b/data/film_03/music.flac new file mode 100644 index 0000000000000000000000000000000000000000..687900de3433508a634a319b27f895e5e0e73aab --- /dev/null +++ b/data/film_03/music.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af05751d85cc341adfe1d595e9ce151901a9a4af09d411d674c460625a1aeb5d +size 54361516 diff --git a/data/film_03/production_mix.flac b/data/film_03/production_mix.flac new file mode 100644 index 0000000000000000000000000000000000000000..4f7a723529a3d5845438f43d6b5ae3e5d0879c1a --- /dev/null +++ b/data/film_03/production_mix.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11ba3741b90e6c122aca76b53591e6bff127dc5fde9aeecfbd8dfdaf28e6e3ca +size 61544684 diff --git a/data/film_03/sfx.flac b/data/film_03/sfx.flac new file mode 100644 index 0000000000000000000000000000000000000000..5ea78bc927934e52520527ed1022ebb4fbcfd3b4 --- /dev/null +++ b/data/film_03/sfx.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d5f38760fd2ec0062e2115aeb03d2cd6d6b60fe956af19540b6d176f17aaaf6 +size 60647297 diff --git a/data/film_04/dialogue.flac b/data/film_04/dialogue.flac new file mode 100644 index 0000000000000000000000000000000000000000..e88094db28745574a339359ca94c52ada6d595b0 --- /dev/null +++ b/data/film_04/dialogue.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65d2db9ddcab8eb43597839751906f3d689fc8d242db5c3f63bf0850321ab9c2 +size 12336156 diff --git a/data/film_04/linear_mix.flac b/data/film_04/linear_mix.flac new file mode 100644 index 0000000000000000000000000000000000000000..94cf47ca39856dd8690bb7fc449760421a39257a --- /dev/null +++ b/data/film_04/linear_mix.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:668a8c5528fbde13e9388396c2fcb6862691e4f7e1dd36836aa9d9047c6217cf +size 34399868 diff --git a/data/film_04/music.flac b/data/film_04/music.flac new file mode 100644 index 0000000000000000000000000000000000000000..ff73fdb7525dbf871e334335592901649c705624 --- /dev/null +++ b/data/film_04/music.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de9bcf2876327352a08502ae4284e56c54ecd681cb602d96f81e847354eb63d1 +size 16139417 diff --git a/data/film_04/production_mix.flac b/data/film_04/production_mix.flac new file mode 100644 index 0000000000000000000000000000000000000000..a253b96b6415d12759a22fc1b93a514ce56b3929 --- /dev/null +++ b/data/film_04/production_mix.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec07bd0463e2104a3442e16c7f6ec4001de9ffbde4f6eefe63c23f0c0428f979 +size 30539325 diff --git a/data/film_04/sfx.flac b/data/film_04/sfx.flac new file mode 100644 index 0000000000000000000000000000000000000000..f97e5cbdbc1ad008930ec9b46016bb1d93bccca9 --- /dev/null +++ b/data/film_04/sfx.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0296369fc7c16d9799524fd7ddfd9bc2357e5b373a7d428605f04787a50fc203 +size 32775290 diff --git a/data/film_05/dialogue.flac b/data/film_05/dialogue.flac new file mode 100644 index 0000000000000000000000000000000000000000..1394c7c64a537db88f644d276141aa30f2ae47be --- /dev/null +++ b/data/film_05/dialogue.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28be918a29f4d851db9483eb3c4304a576de36dde8ddcf3a468fe6e2e90f5eac +size 32112192 diff --git a/data/film_05/linear_mix.flac b/data/film_05/linear_mix.flac new file mode 100644 index 0000000000000000000000000000000000000000..e05f6b95623224ccfee51312e639ed6bc398f077 --- /dev/null +++ b/data/film_05/linear_mix.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f6846787ed306452793fe4987612196e6f4d097d3cfd12fda697a0f48e58fdb +size 83105462 diff --git a/data/film_05/music.flac b/data/film_05/music.flac new file mode 100644 index 0000000000000000000000000000000000000000..3504e982104e0f6d35b6a8309a4b529328192fbb --- /dev/null +++ b/data/film_05/music.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4812a59b588f0732b6a1cb9a9b1f70026110bccb5fb0ad410777a2765ad2b14c +size 67709479 diff --git a/data/film_05/production_mix.flac b/data/film_05/production_mix.flac new file mode 100644 index 0000000000000000000000000000000000000000..6e9e0a26ed10400833d7ecfac657224a77c6c23f --- /dev/null +++ b/data/film_05/production_mix.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21c4a70fd21846d7f3f89d00520a63bd5da8b9e0ff02540428ae682303fef781 +size 82483356 diff --git a/data/film_05/sfx.flac b/data/film_05/sfx.flac new file mode 100644 index 0000000000000000000000000000000000000000..d114f412b50f2e85cf2b3b9d97781507c76292d2 --- /dev/null +++ b/data/film_05/sfx.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cf1a1c87df8feaf984dc4277c33d24ced19d75b5ca1000716967218898a0a0d +size 55129382 diff --git a/data/film_06/dialogue.flac b/data/film_06/dialogue.flac new file mode 100644 index 0000000000000000000000000000000000000000..66a4d477d2f0e52730ea0ca309797f71c82ecb91 --- /dev/null +++ b/data/film_06/dialogue.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cfd3e87be7e5361ab31dba3972e5050223d0ece6daedb4c7d782ce587962c0f +size 31591896 diff --git a/data/film_06/linear_mix.flac b/data/film_06/linear_mix.flac new file mode 100644 index 0000000000000000000000000000000000000000..cd66bf64f3c8fca978a8676c1e54be66e8dea1a2 --- /dev/null +++ b/data/film_06/linear_mix.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f05c8f9e6d52d88cd6e1333444aabc8051c84643e7b5b2fd61aab8f798120c58 +size 83746200 diff --git a/data/film_06/music.flac b/data/film_06/music.flac new file mode 100644 index 0000000000000000000000000000000000000000..3559da6d4fb472cc892aee2ebc778bd11cc81c3f --- /dev/null +++ b/data/film_06/music.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d27f98d7168efa9a013e199be82e8e2cd12362128c9b3e3c201676a8235215a +size 68028433 diff --git a/data/film_06/production_mix.flac b/data/film_06/production_mix.flac new file mode 100644 index 0000000000000000000000000000000000000000..2ea0282ea8b1f4c6b91dc82c39dd88ed1a3e5f6d --- /dev/null +++ b/data/film_06/production_mix.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59bba303b29b03e832812a6b301f1285204237a5a89e092132f864a030e06038 +size 82638068 diff --git a/data/film_06/sfx.flac b/data/film_06/sfx.flac new file mode 100644 index 0000000000000000000000000000000000000000..e745c97b8597dd69cc600b554ecdeba10749ced6 --- /dev/null +++ b/data/film_06/sfx.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:faa729272a009737ea050f5a0e59f576a2b3ccbff5de774a01868d749eace91c +size 53417123 diff --git a/data/film_07/dialogue.flac b/data/film_07/dialogue.flac new file mode 100644 index 0000000000000000000000000000000000000000..d23e2d73130ee36fa2fa79746b7976f4bbfe9d40 --- /dev/null +++ b/data/film_07/dialogue.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3732a4a4b5c785b52174b5019d1b2f6efb93a8645dca231f49b8ec1ef2dd0c72 +size 1436933 diff --git a/data/film_07/linear_mix.flac b/data/film_07/linear_mix.flac new file mode 100644 index 0000000000000000000000000000000000000000..69f802ae112d6b0295ee916972cccf79348f00b7 --- /dev/null +++ b/data/film_07/linear_mix.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77e36e09f0ba8d64ac43fedbc38921a2b455fd942afa2803a5d23d93ed17b0d5 +size 20250925 diff --git a/data/film_07/music.flac b/data/film_07/music.flac new file mode 100644 index 0000000000000000000000000000000000000000..78c32b02f32cfbd06d6cc6a8636824b0d83a15c4 --- /dev/null +++ b/data/film_07/music.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5edd10c440bd08f85ecceba39aa24aa0ca05ba14eba9fcc62c18d97af121b275 +size 18242796 diff --git a/data/film_07/sfx.flac b/data/film_07/sfx.flac new file mode 100644 index 0000000000000000000000000000000000000000..2b1e6a3b223ce43decd16122f3d40d685b11d488 --- /dev/null +++ b/data/film_07/sfx.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97354d4a6fa766364d42da774e82afefcb75cd0e1fbe07bd26d73722c900bf27 +size 3122241 diff --git a/data/film_08/dialogue.flac b/data/film_08/dialogue.flac new file mode 100644 index 0000000000000000000000000000000000000000..30390e01201c9bec412f0eb16ab8a4729d3b2a85 --- /dev/null +++ b/data/film_08/dialogue.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:901e1a87e7a68984a696e1367b80baf93ef728db0cd72911a3c36081fb5a90c0 +size 1195681 diff --git a/data/film_08/linear_mix.flac b/data/film_08/linear_mix.flac new file mode 100644 index 0000000000000000000000000000000000000000..f5a64feceeb2221ea968938934c622de2f178eb5 --- /dev/null +++ b/data/film_08/linear_mix.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bbcf6015aa697562d4a1def04eeda8a059b6bfaa7d40b386913fadb7b27076c +size 20265505 diff --git a/data/film_08/music.flac b/data/film_08/music.flac new file mode 100644 index 0000000000000000000000000000000000000000..f60338f9d82d74ee4dc9f3aabeeb801d567a8f39 --- /dev/null +++ b/data/film_08/music.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0428e35fb771bf0d4b2949fc7e9a715b47dcf84b4705c7496e210ec1ea73980 +size 18260531 diff --git a/data/film_08/sfx.flac b/data/film_08/sfx.flac new file mode 100644 index 0000000000000000000000000000000000000000..578caeb18d95a3d846edd4ed6c37255c3843eee3 --- /dev/null +++ b/data/film_08/sfx.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13f1f3aac5b74a204f72b1ae7981043fa4a692b8bcd0ed1ff954bfd23a0adb86 +size 3121022 diff --git a/data/film_09/dialogue.flac b/data/film_09/dialogue.flac new file mode 100644 index 0000000000000000000000000000000000000000..438a080a95a2845efdd2beef05ee30f9b0ded0f9 --- /dev/null +++ b/data/film_09/dialogue.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24ae31f1c68da8947579b23e72343ee94b31f5c437f48396e34779974afc543b +size 212169711 diff --git a/data/film_09/linear_mix.flac b/data/film_09/linear_mix.flac new file mode 100644 index 0000000000000000000000000000000000000000..ea04c80552184e7e7c8dd44111c16a11ca4f20df --- /dev/null +++ b/data/film_09/linear_mix.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20597c81a76d78372077df9df3eb69fb63ffc0624147f465aa74e856b756704e +size 255499143 diff --git a/data/film_09/music.flac b/data/film_09/music.flac new file mode 100644 index 0000000000000000000000000000000000000000..43e22d146d95acfc5c571b4a3799ff44296ab6c4 --- /dev/null +++ b/data/film_09/music.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a0535799363a9c7ed2b1dd663076e9598eaa1a711128b3b38cf44cc02214e9a +size 213644716 diff --git a/data/film_09/production_mix.flac b/data/film_09/production_mix.flac new file mode 100644 index 0000000000000000000000000000000000000000..561a84ecbf714749bb58cd1b1f4df63abc462007 --- /dev/null +++ b/data/film_09/production_mix.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:801dd4398c8934f8885369d53cc926700304dddbade018af48173369872cb2a3 +size 247436278 diff --git a/data/film_09/sfx.flac b/data/film_09/sfx.flac new file mode 100644 index 0000000000000000000000000000000000000000..282e4a24d3ff7ff297361d96f97a34c2761201f0 --- /dev/null +++ b/data/film_09/sfx.flac @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bae2602cb445b798bdc6ee83c6fe60403f470eef461fba05c1e2484215d2c377 +size 114047634 diff --git a/films.json b/films.json new file mode 100644 index 0000000000000000000000000000000000000000..4f30c49780d532d0e662598beb5f8e0f54877007 --- /dev/null +++ b/films.json @@ -0,0 +1,287 @@ +{ + "dataset": "CineAudioDB", + "n_films": 9, + "total_duration_sec": 7363.77, + "total_duration_hours": 2.462, + "stems": [ + "dialogue", + "music", + "sfx" + ], + "mix_versions": [ + "linear_mix", + "production_mix" + ], + "audio_format": "FLAC (lossless), 24-bit / 48 kHz", + "films": [ + { + "film_id": "film_01", + "license": "CC-BY-SA-4.0", + "channels": 2, + "channel_layout": "stereo downmix from 5.1 surround", + "sample_rate": 48000, + "bit_depth": 24, + "duration_sec": 4680.0, + "duration_min": 78.0, + "stems": [ + "dialogue", + "music", + "sfx" + ], + "stem_content": { + "dialogue": "dialogue + voice-over", + "music": "music", + "sfx": "effects + foley + backgrounds + production-fx + archival" + }, + "linear_mix": true, + "production_mix": false, + "mix_type": "additive", + "applied_gain": 0.888286, + "headroom_dbfs": -1.0, + "notes": "", + "fine_stems": [ + "dx", + "vo", + "mx", + "fx", + "fol", + "bg", + "pfx", + "arch" + ], + "fine_stem_dir": "data/film_01/fine", + "fine_stem_meaning": { + "dx": "dialogue", + "vo": "voice-over", + "mx": "music", + "fx": "hard effects", + "fol": "foley", + "bg": "backgrounds/ambience", + "pfx": "production effects", + "arch": "archival effects" + }, + "stem_groupings": { + "3_stem": { + "dialogue": [ + "dx", + "vo" + ], + "music": [ + "mx" + ], + "sfx": [ + "fx", + "fol", + "bg", + "pfx", + "arch" + ] + }, + "4_stem": { + "dialogue": [ + "dx", + "vo" + ], + "music": [ + "mx" + ], + "ambience": [ + "bg" + ], + "sfx": [ + "fx", + "fol", + "pfx", + "arch" + ] + } + } + }, + { + "film_id": "film_02", + "license": "CC-BY-4.0", + "channels": 2, + "channel_layout": "stereo", + "sample_rate": 48000, + "bit_depth": 24, + "duration_sec": 726.333, + "duration_min": 12.11, + "stems": [ + "dialogue", + "music", + "sfx" + ], + "stem_content": { + "dialogue": "character dialogue", + "music": "music", + "sfx": "effects + ambience" + }, + "linear_mix": true, + "production_mix": true, + "mix_type": "non_additive", + "applied_gain": 0.495126, + "headroom_dbfs": -1.0, + "notes": "stems trimmed of 11.45s trailing silence to align with master; dialogue was mono (center), duplicated to L=R" + }, + { + "film_id": "film_03", + "license": "CC-BY-4.0", + "channels": 1, + "channel_layout": "mono (native)", + "sample_rate": 48000, + "bit_depth": 24, + "duration_sec": 626.833, + "duration_min": 10.45, + "stems": [ + "dialogue", + "music", + "sfx" + ], + "stem_content": { + "dialogue": "speech", + "music": "music", + "sfx": "sound effects" + }, + "linear_mix": true, + "production_mix": true, + "mix_type": "non_additive", + "applied_gain": 0.339173, + "headroom_dbfs": -1.0, + "notes": "MONO source — kept mono (stereo cannot be honestly recovered)" + }, + { + "film_id": "film_04", + "license": "CC-BY-3.0", + "channels": 2, + "channel_layout": "stereo (reconstructed from DAW session)", + "sample_rate": 48000, + "bit_depth": 24, + "duration_sec": 193.167, + "duration_min": 3.22, + "stems": [ + "dialogue", + "music", + "sfx" + ], + "stem_content": { + "dialogue": "character dialogue", + "music": "score", + "sfx": "foley + effects + ambience" + }, + "linear_mix": true, + "production_mix": true, + "mix_type": "non_additive", + "applied_gain": 0.426361, + "headroom_dbfs": -1.0, + "notes": "intro/outro theme music present in production_mix but NOT in stems (only available as contaminated full-render snippets)" + }, + { + "film_id": "film_05", + "license": "CC-BY-SA-4.0", + "channels": 2, + "channel_layout": "stereo (rendered from Blender VSE)", + "language": "en", + "sample_rate": 48000, + "bit_depth": 24, + "duration_sec": 454.664, + "duration_min": 7.58, + "stems": [ + "dialogue", + "music", + "sfx" + ], + "linear_mix": true, + "production_mix": true, + "mix_type": "non_additive", + "applied_gain": 0.717133, + "notes": "rendered from Blender VSE (grouped strip mixdown); SFX/music are third-party CC/Freesound clips (see NOTICE)" + }, + { + "film_id": "film_06", + "license": "CC-BY-SA-4.0", + "channels": 2, + "channel_layout": "stereo (rendered from Blender VSE)", + "language": "ru", + "sample_rate": 48000, + "bit_depth": 24, + "duration_sec": 455.675, + "duration_min": 7.59, + "stems": [ + "dialogue", + "music", + "sfx" + ], + "linear_mix": true, + "production_mix": true, + "mix_type": "non_additive", + "applied_gain": 0.762867, + "notes": "rendered from Blender VSE (grouped strip mixdown); SFX/music are third-party CC/Freesound clips (see NOTICE)" + }, + { + "film_id": "film_07", + "license": "CC-BY-SA-4.0", + "channels": 2, + "channel_layout": "stereo (rendered from Blender VSE)", + "language": "en", + "sample_rate": 48000, + "bit_depth": 24, + "duration_sec": 113.344, + "duration_min": 1.89, + "stems": [ + "dialogue", + "music", + "sfx" + ], + "linear_mix": true, + "production_mix": false, + "mix_type": "additive", + "applied_gain": 0.875413, + "notes": "Blender VSE mixdown; additive (no separate mastered mix); third-party Freesound SFX/music (see NOTICE)" + }, + { + "film_id": "film_08", + "license": "CC-BY-SA-4.0", + "channels": 2, + "channel_layout": "stereo (rendered from Blender VSE)", + "language": "ru", + "sample_rate": 48000, + "bit_depth": 24, + "duration_sec": 113.751, + "duration_min": 1.9, + "stems": [ + "dialogue", + "music", + "sfx" + ], + "linear_mix": true, + "production_mix": false, + "mix_type": "additive", + "applied_gain": 0.875413, + "notes": "Blender VSE mixdown; additive (no separate mastered mix); third-party Freesound SFX/music (see NOTICE)" + }, + { + "film_id": "film_09", + "license": "CC-BY-SA-4.0", + "channels": 2, + "channel_layout": "stereo", + "language": "en", + "sample_rate": 48000, + "bit_depth": 24, + "duration_sec": 1500.0, + "duration_min": 25.0, + "stems": [ + "dialogue", + "music", + "sfx" + ], + "linear_mix": true, + "production_mix": true, + "mix_type": "non_additive (release) + additive linear", + "applied_gain": 0.999983, + "notes": "ambience merged into sfx" + } + ], + "notes": "film_01 additionally ships 8 atomic print-master stems in data/film_01/fine/; sum any grouping to get a stem (additive to 24-bit precision).", + "n_real_films": 9, + "real_duration_hours": 2.462 +} diff --git a/metadata.csv b/metadata.csv new file mode 100644 index 0000000000000000000000000000000000000000..cd7ce987cebf6a44800b445802d5cb1493d54c8d --- /dev/null +++ b/metadata.csv @@ -0,0 +1,51 @@ +file_name,film_id,component,kind,channels,sample_rate,bit_depth,frames,duration_sec,peak,mix_type,license +data/film_01/dialogue.flac,film_01,dialogue,target_stem,2,48000,24,224640000,4680.0,0.559804,additive,CC-BY-SA-4.0 +data/film_01/music.flac,film_01,music,target_stem,2,48000,24,224640000,4680.0,0.679827,additive,CC-BY-SA-4.0 +data/film_01/sfx.flac,film_01,sfx,target_stem,2,48000,24,224640000,4680.0,0.891251,additive,CC-BY-SA-4.0 +data/film_01/linear_mix.flac,film_01,linear_mix,input_mix_additive,2,48000,24,224640000,4680.0,0.89125,additive,CC-BY-SA-4.0 +data/film_01/fine/dx.flac,film_01,dx,fine_stem,2,48000,24,224640000,4680.0,0.353607,additive,CC-BY-SA-4.0 +data/film_01/fine/vo.flac,film_01,vo,fine_stem,2,48000,24,224640000,4680.0,0.559811,additive,CC-BY-SA-4.0 +data/film_01/fine/mx.flac,film_01,mx,fine_stem,2,48000,24,224640000,4680.0,0.679828,additive,CC-BY-SA-4.0 +data/film_01/fine/fx.flac,film_01,fx,fine_stem,2,48000,24,224640000,4680.0,0.879004,additive,CC-BY-SA-4.0 +data/film_01/fine/fol.flac,film_01,fol,fine_stem,2,48000,24,224640000,4680.0,0.333315,additive,CC-BY-SA-4.0 +data/film_01/fine/bg.flac,film_01,bg,fine_stem,2,48000,24,224640000,4680.0,0.075771,additive,CC-BY-SA-4.0 +data/film_01/fine/pfx.flac,film_01,pfx,fine_stem,2,48000,24,224640000,4680.0,0.457258,additive,CC-BY-SA-4.0 +data/film_01/fine/arch.flac,film_01,arch,fine_stem,2,48000,24,224640000,4680.0,0.35969,additive,CC-BY-SA-4.0 +data/film_02/dialogue.flac,film_02,dialogue,target_stem,2,48000,24,34864000,726.333,0.247578,non_additive,CC-BY-4.0 +data/film_02/music.flac,film_02,music,target_stem,2,48000,24,34864000,726.333,0.302225,non_additive,CC-BY-4.0 +data/film_02/sfx.flac,film_02,sfx,target_stem,2,48000,24,34864000,726.333,0.495126,non_additive,CC-BY-4.0 +data/film_02/linear_mix.flac,film_02,linear_mix,input_mix_additive,2,48000,24,34864000,726.333,0.891251,non_additive,CC-BY-4.0 +data/film_02/production_mix.flac,film_02,production_mix,input_mix_production,2,48000,24,34864000,726.333,0.495126,non_additive,CC-BY-4.0 +data/film_03/dialogue.flac,film_03,dialogue,target_stem,1,48000,24,30088000,626.833,0.339173,non_additive,CC-BY-4.0 +data/film_03/music.flac,film_03,music,target_stem,1,48000,24,30088000,626.833,0.339173,non_additive,CC-BY-4.0 +data/film_03/sfx.flac,film_03,sfx,target_stem,1,48000,24,30088000,626.833,0.339173,non_additive,CC-BY-4.0 +data/film_03/linear_mix.flac,film_03,linear_mix,input_mix_additive,1,48000,24,30088000,626.833,0.89125,non_additive,CC-BY-4.0 +data/film_03/production_mix.flac,film_03,production_mix,input_mix_production,1,48000,24,30088000,626.833,0.31991,non_additive,CC-BY-4.0 +data/film_04/dialogue.flac,film_04,dialogue,target_stem,2,48000,24,9272000,193.167,0.482632,non_additive,CC-BY-3.0 +data/film_04/music.flac,film_04,music,target_stem,2,48000,24,9272000,193.167,0.423009,non_additive,CC-BY-3.0 +data/film_04/sfx.flac,film_04,sfx,target_stem,2,48000,24,9272000,193.167,0.825153,non_additive,CC-BY-3.0 +data/film_04/linear_mix.flac,film_04,linear_mix,input_mix_additive,2,48000,24,9272000,193.167,0.89125,non_additive,CC-BY-3.0 +data/film_04/production_mix.flac,film_04,production_mix,input_mix_production,2,48000,24,9272000,193.167,0.426361,non_additive,CC-BY-3.0 +data/film_05/dialogue.flac,film_05,dialogue,target_stem,2,48000,24,21823888,454.664,0.529867,non_additive,CC-BY-SA-4.0 +data/film_05/music.flac,film_05,music,target_stem,2,48000,24,21823888,454.664,0.717133,non_additive,CC-BY-SA-4.0 +data/film_05/sfx.flac,film_05,sfx,target_stem,2,48000,24,21823888,454.664,0.712675,non_additive,CC-BY-SA-4.0 +data/film_05/linear_mix.flac,film_05,linear_mix,input_mix_additive,2,48000,24,21823888,454.664,0.891251,non_additive,CC-BY-SA-4.0 +data/film_05/production_mix.flac,film_05,production_mix,input_mix_production,2,48000,24,21823888,454.664,0.683496,non_additive,CC-BY-SA-4.0 +data/film_06/dialogue.flac,film_06,dialogue,target_stem,2,48000,24,21872384,455.675,0.762867,non_additive,CC-BY-SA-4.0 +data/film_06/music.flac,film_06,music,target_stem,2,48000,24,21872384,455.675,0.682863,non_additive,CC-BY-SA-4.0 +data/film_06/sfx.flac,film_06,sfx,target_stem,2,48000,24,21872384,455.675,0.758174,non_additive,CC-BY-SA-4.0 +data/film_06/linear_mix.flac,film_06,linear_mix,input_mix_additive,2,48000,24,21872384,455.675,0.891251,non_additive,CC-BY-SA-4.0 +data/film_06/production_mix.flac,film_06,production_mix,input_mix_production,2,48000,24,21872384,455.675,0.683675,non_additive,CC-BY-SA-4.0 +data/film_07/dialogue.flac,film_07,dialogue,target_stem,2,48000,24,5440512,113.344,0.619029,additive,CC-BY-SA-4.0 +data/film_07/music.flac,film_07,music,target_stem,2,48000,24,5440512,113.344,0.687486,additive,CC-BY-SA-4.0 +data/film_07/sfx.flac,film_07,sfx,target_stem,2,48000,24,5440512,113.344,0.875413,additive,CC-BY-SA-4.0 +data/film_07/linear_mix.flac,film_07,linear_mix,input_mix_additive,2,48000,24,5440512,113.344,0.891251,additive,CC-BY-SA-4.0 +data/film_08/dialogue.flac,film_08,dialogue,target_stem,2,48000,24,5460032,113.751,0.528038,additive,CC-BY-SA-4.0 +data/film_08/music.flac,film_08,music,target_stem,2,48000,24,5460032,113.751,0.687486,additive,CC-BY-SA-4.0 +data/film_08/sfx.flac,film_08,sfx,target_stem,2,48000,24,5460032,113.751,0.875413,additive,CC-BY-SA-4.0 +data/film_08/linear_mix.flac,film_08,linear_mix,input_mix_additive,2,48000,24,5460032,113.751,0.891251,additive,CC-BY-SA-4.0 +data/film_09/dialogue.flac,film_09,dialogue,target_stem,2,48000,24,72000000,1500.0,0.89119,non_additive,CC-BY-SA-4.0 +data/film_09/music.flac,film_09,music,target_stem,2,48000,24,72000000,1500.0,0.165311,non_additive,CC-BY-SA-4.0 +data/film_09/sfx.flac,film_09,sfx,target_stem,2,48000,24,72000000,1500.0,0.497764,non_additive,CC-BY-SA-4.0 +data/film_09/linear_mix.flac,film_09,linear_mix,input_mix_additive,2,48000,24,72000000,1500.0,0.891251,non_additive,CC-BY-SA-4.0 +data/film_09/production_mix.flac,film_09,production_mix,input_mix_production,2,48000,24,72000000,1500.0,0.356958,non_additive,CC-BY-SA-4.0