repo: music action: commit revision: path_from: revision_from: 1fcbd5d5d3f8e6627b4ff46247fddf2d532e7bcb: path_to: revision_to:
commit 1fcbd5d5d3f8e6627b4ff46247fddf2d532e7bcb Author: epochDate: Sat Nov 13 01:50:53 2021 +0000 added music-makemeta to put empty mp3s with only metadata next to actual mp3s that music-fileinfo will use diff --git a/Makefile b/Makefile
--- a/Makefile +++ b/Makefile @@ -17,6 +17,7 @@ icy-metadata: icy-metadata.c install: all install id3sort $(PREFIX)/bin/ install qargs $(PREFIX)/bin/ + install music-makemeta $(PREFIX)/bin/ install music-automute $(PREFIX)/bin/ install music-player $(PREFIX)/bin/ install music-playerstate $(PREFIX)/bin/ diff --git a/music-makemeta b/music-makemeta new file mode 100755 index 0000000000000000000000000000000000000000..be1a8ecc9493f30b591e58a4ffd6df6d5c0b412d --- /dev/null +++ b/music-makemeta @@ -0,0 +1,7 @@ +#!/bin/sh +if [ ! "$1" ];then + printf "usage: music-makemeta some-file.ext\n" >&2 + printf "this will create an empty mp3 file named some-file.ext.id3 with id3 tags meant to be associated with the other file.\n" >&2 + exit 1 +fi +echo -n | lame /dev/stdin "$1.id3"
-----END OF PAGE-----