From: Jacob Moody Date: Thu, 5 Aug 2021 15:54:29 +0000 (+0000) Subject: aux/cddb: include album name and correct track number key X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=08bcc4bcecd6514756c4bde5b5ba6942aff9a98d;p=plan9front.git aux/cddb: include album name and correct track number key --- diff --git a/sys/src/cmd/aux/cddb.c b/sys/src/cmd/aux/cddb.c index 09c9373dc..5c36ed4c8 100644 --- a/sys/src/cmd/aux/cddb.c +++ b/sys/src/cmd/aux/cddb.c @@ -91,7 +91,7 @@ dumpencode(Toc *t) quotefmtinstall(); for(i=0; i < t->ntrack; i++){ print("track[i].title, i+1); + print("-T 'title='^%q -T 'album='^%q -T 'track=%d' ", t->track[i].title, t->title, i+1); if(t->year[0] != 0) print("-T 'year='^%q ", t->year); if(t->track[i].artist[0] != 0 || t->artist[0] != 0)