aboutsummaryrefslogtreecommitdiff
path: root/.local/share
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2025-01-22 22:21:04 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2025-01-22 22:21:04 +0100
commit606e07e169aa037e0ea192d9c01fae3f5ae4bd80 (patch)
tree76fafde98b35f06a9b611aa556f7ab45443a551b /.local/share
parentad88ea8a6d55d2d2e7c881d6fb01c0627d6cc822 (diff)
add lrc2labels script
Diffstat (limited to '.local/share')
-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)
+}
+'
+