allow opus

This commit is contained in:
2026-05-15 15:00:56 -07:00
parent feb7fd6eca
commit 9161ab0b24
+1 -1
View File
@@ -14,6 +14,7 @@ song_file_extensions = set([
"m4a",
"webm",
"flac", # stable-ts likely uses ffmpeg to convert this for whisper
"opus",
])
@click.command()
@@ -74,7 +75,6 @@ def srt_to_lrc(srt_text: str) -> str:
lines.append(f"[{timedelta_to_hhmmssss(end_time)}]")
return "\n".join(lines)
if __name__ == "__main__":
main()