diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2025-01-22 22:21:04 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2025-01-22 22:21:04 +0100 |
commit | 606e07e169aa037e0ea192d9c01fae3f5ae4bd80 (patch) | |
tree | 76fafde98b35f06a9b611aa556f7ab45443a551b /.local/share/bin | |
parent | ad88ea8a6d55d2d2e7c881d6fb01c0627d6cc822 (diff) |
add lrc2labels script
Diffstat (limited to '.local/share/bin')
-rwxr-xr-x | .local/share/bin/lrc2labels | 11 |
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) +} +' + |