Skip to content

Instantly share code, notes, and snippets.

View jilljenn's full-sized avatar

Jill-Jênn Vie jilljenn

View GitHub Profile
@jilljenn
jilljenn / lrc2srt.py
Created April 17, 2022 19:40 — forked from sophana/lrc2srt.py
Convert all LRC files to SRT. With SRT files, you can display lyrics in most media players.
#!/usr/bin/python
import sys
import os
# usage: lrc2srt.py [directory]
# will recusively convert all lrc files to srt in directory
def conv(lrcPath, srtPath):
with open(lrcPath) as lrc: