A snapshot of the non-game files as of0148cb8("port: F5/F6 hand-off -- one-minute human checks, and a refutation attempt that survived", 2026-09-04), the tip of auto/port-p6-audio. The branch was deleted from the server on 2026-09-17 during the consolidation cleanup; issue #7 asks for this work as a reviewable PR, so it is recovered here before the commits are garbage collected. Contents: the 84 files the branch changed relative to its fork pointb305aa4, which is this commit's parent. The tree is therefore 0148cb8's tree with the 854 exported game assets left out -- export-probe/, export-probe2/, three .wav renders of game audio and adv-v2-screenlog.tsv. Game data stays out of git; the exporter regenerates those from the disc. docs/port/DECISIONS.md still refers to them by name. Not recovered: the branch's own 366 commits. Keeping them would make those assets reachable again, so this is one snapshot instead. The original commits stay unreferenced in the server's object store, and in this clone under the local branch archive/port-p6-audio, until either is garbage collected. Refs #7. The OPTIONS work that issue #6 asks for is a subset of this branch, also recovered as recover/options-menu. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
49 lines
2.2 KiB
Rust
49 lines
2.2 KiB
Rust
//! Throwaway probe: how long is each region chunk of a movie's voice?
|
|
//!
|
|
//! The question it answers is whether the chunks of a resolved voice region are
|
|
//! CONSECUTIVE SEGMENTS (concatenate them) or ALTERNATE TAKES (chunk 0 is the
|
|
//! whole track). Getting that backwards plays the dialogue three times over.
|
|
use std::process::Command;
|
|
use sylpheed_formats::{media, slb::VoiceLang};
|
|
|
|
fn main() {
|
|
let disc = std::env::var("SYLPHEED_DISC").unwrap_or_else(|_| "/disc".into());
|
|
let src = media::DirectorySource::new(&disc);
|
|
for movie in ["ADV", "S00A", "RT01A"] {
|
|
let Some((s, e)) = media::resolve_movie_voice_region(&src, movie, VoiceLang::English)
|
|
else {
|
|
println!("{movie}: no region");
|
|
continue;
|
|
};
|
|
let riffs = media::voice_region_riffs(&src, s, e).expect("riffs");
|
|
println!("{movie}: region [{s}, {e}) = {} bytes, {} chunk(s)", e - s, riffs.len());
|
|
for (i, r) in riffs.iter().enumerate() {
|
|
let p = std::env::temp_dir().join(format!("vc_{movie}_{i}.xma.wav"));
|
|
std::fs::write(&p, r).unwrap();
|
|
// XMA declares no duration, so DECODE it and measure the result.
|
|
let w = std::env::temp_dir().join(format!("vc_{movie}_{i}.wav"));
|
|
let _ = Command::new("ffmpeg")
|
|
.args(["-hide_banner", "-loglevel", "error", "-y", "-i"])
|
|
.arg(&p)
|
|
.arg(&w)
|
|
.output();
|
|
let out = Command::new("ffprobe")
|
|
.args(["-v", "error", "-show_entries", "format=duration", "-of", "csv=p=0"])
|
|
.arg(&w)
|
|
.output()
|
|
.unwrap();
|
|
let dur = String::from_utf8_lossy(&out.stdout).trim().to_string();
|
|
if std::env::var("KEEP_WAV").is_ok() {
|
|
let keep = std::path::Path::new(&std::env::var("KEEP_WAV").unwrap())
|
|
.join(format!("{movie}_chunk{i}.wav"));
|
|
let _ = std::fs::rename(&w, &keep);
|
|
println!(" kept -> {}", keep.display());
|
|
} else {
|
|
let _ = std::fs::remove_file(&w);
|
|
}
|
|
println!(" chunk {i}: {} bytes -> {dur} s", r.len());
|
|
let _ = std::fs::remove_file(&p);
|
|
}
|
|
}
|
|
}
|