Update ffmpeg

2026-02-28 19:31:07 -03:00
parent 282744523a
commit 993bbe64c4

@@ -19,4 +19,8 @@ for F in *${EXT}; do
read FI SI LN SF <<< ''; read FI SI LN SF <<< '';
done < <(ffprobe "$F" 2>&1 | sed -nr '/Subtitle:/s/^.*Stream #([0-9]):([0-9])\(([a-z-]+)\).*Subtitle: ([a-z]+) .*$/\1 \2 \3 \4/p' | cat -n); done < <(ffprobe "$F" 2>&1 | sed -nr '/Subtitle:/s/^.*Stream #([0-9]):([0-9])\(([a-z-]+)\).*Subtitle: ([a-z]+) .*$/\1 \2 \3 \4/p' | cat -n);
done; done;
```
* Exportar legenda PGS (o OCR tem que ser feito em outro canto. O Gemini sugere usar o "Subtitle Edit")
```
ffmpeg -i input_file.mkv -map 0:3 -c copy output_subtitles.sup
``` ```