1
0

[loop-cycle-7] refactor: split research.py into research/ subpackage (#1405) (#1458)

This commit is contained in:
2026-03-24 19:53:04 +00:00
parent 8518db921e
commit 4d2aeb937f
62 changed files with 1049 additions and 885 deletions

View File

@@ -56,13 +56,20 @@ def _build_ffmpeg_cmd(
return [
"ffmpeg",
"-y", # overwrite output
"-ss", str(start),
"-i", source,
"-t", str(duration),
"-avoid_negative_ts", "make_zero",
"-c:v", settings.default_video_codec,
"-c:a", "aac",
"-movflags", "+faststart",
"-ss",
str(start),
"-i",
source,
"-t",
str(duration),
"-avoid_negative_ts",
"make_zero",
"-c:v",
settings.default_video_codec,
"-c:a",
"aac",
"-movflags",
"+faststart",
output,
]