Merge remote-tracking branch 'origin/main' into docs/pages-show-not-tell

# Conflicts:
#	skills-manifest.json
This commit is contained in:
ukimsanov
2026-08-04 16:16:58 -07:00
73 changed files with 2023 additions and 397 deletions
+1 -1
View File
@@ -109,7 +109,7 @@ function ffmpegDurationFallback(absPath) {
export function ffprobeDuration(absPath) {
const r = spawnSync(
"ffprobe",
["-v", "error", "-show_entries", "format=duration", "-of", "default=nw=1:nk=1", absPath],
["-v", "error", "-show_entries", "format=duration", "-of", "default=nw=1:nk=1", "--", absPath],
{ encoding: "utf8" },
);
if (r.error?.code === "ENOENT") return ffmpegDurationFallback(absPath);