aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-x.local/share/bin/lrc2labels11
1 files changed, 11 insertions, 0 deletions
diff --git a/.local/share/bin/lrc2labels b/.local/share/bin/lrc2labels
new file mode 100755
index 0000000..31aa4be
--- /dev/null
+++ b/.local/share/bin/lrc2labels
@@ -0,0 +1,11 @@
+#!/bin/sh
+cat "$@" |\
+ gawk '
+match($0, /^\[([0-9]{2}):([0-9]{2}\.[0-9]{2})\](.*)/, group) {
+ time = group[1] * 60 + group[2]
+ lyric = group[3]
+
+ printf("%.2f\t%.2f\t%s\n", time, time, lyric)
+}
+'
+