Re: ogg123 in mc.ext

2001-10-05 Thread Pavel Roskin
Hello, Marcel! > Here it gives me this output on an ogg file: > Bitstream is 2 channel, 44100Hz > Time: 05:17.85 [00:-0.01] of 05:17.84, Bitrate: 220.2 > Done. > ao_null: 3656 bytes sent to null device. Not nice. > I can't say that's too interesting. > I'd rather see the title, album, artist an

Re: ogg123 in mc.ext

2001-10-05 Thread Marcel Pol
On Fri, 5 Oct 2001 02:28:51 -0400 (EDT) Pavel Roskin <[EMAIL PROTECTED]> wrote: > > > > +regex/\.(ogg|OGG|Ogg)$ > > > > + Open=ogg123 %f > > > > + View=%view{ascii} ogg123 -tn1 %f 2>&1|grep -E > > > > "^(Title|Album|Comment|$)"+ > > > > > > What version of ogg123 are you using? Mine

Replace egrep -q with case in mc.menu

2001-10-05 Thread Andrew V. Samoilov
Hello! This patch replaces all occurences of 'egrep -q' with case statements. As side effect compress file(s) can be really converted to bz2 format. Also tagged archives converting fixed. It seems this features are useless. Fill free to fix my English in ChangeLog. Regards, Andrew. ChangeLog:

Re: Eliminate egrep -q in mc.menu

2001-10-05 Thread Pavel Roskin
Hello! > This patch eliminate unportable egrep -q usage in mc.menu file. > It seems case xxx in *.tgz) is more portable. If it is really > so I can rewrite mc.menu in such order at all. That's correct. "egrep -q" doesn't work on Solaris 8. "case" is used in Autoconf, which means that it's _ver

Eliminate egrep -q in mc.menu

2001-10-05 Thread root
Hi! This patch eliminate unportable egrep -q usage in mc.menu file. It seems case xxx in *.tgz) is more portable. If it is really so I can rewrite mc.menu in such order at all. Best regards, Andrew. ChangeLog: lib/mc.menu: Eliminate egrep -q, use case instead. Index: mc.menu =