From 01cbd6d456dbaa7e7b73b1d2781c003640051eba Mon Sep 17 00:00:00 2001 From: nunks Date: Sat, 21 Feb 2026 17:07:39 -0300 Subject: [PATCH] Add ffmpeg convert ssa to srt --- ffmpeg-convert-ssa-to-srt.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 ffmpeg-convert-ssa-to-srt.md diff --git a/ffmpeg-convert-ssa-to-srt.md b/ffmpeg-convert-ssa-to-srt.md new file mode 100644 index 0000000..616a1e9 --- /dev/null +++ b/ffmpeg-convert-ssa-to-srt.md @@ -0,0 +1,3 @@ +``` +for f in *.ssa; do ffmpeg -i "$f" "${f%.ssa}.srt"; done +``` \ No newline at end of file