Convert ASS subtitles to SRT format (ffmpeg)
for f in *.ass; do ffmpeg -i "$f" -c:s srt "${f%.*}".srt; done
Converts all ASS subtitle files in the current directory to SRT format.
for f in *.ass; do ffmpeg -i "$f" -c:s srt "${f%.*}".srt; done
Converts all ASS subtitle files in the current directory to SRT format.