Re: [mpg123-devel] Please test new network code in/out of mpg123 (now with HTTPS support)!
Brought to you by:
sobukus
From: Thomas O. <tho...@or...> - 2022-05-17 07:01:33
|
Am Mon, 16 May 2022 13:14:47 -0700 schrieb Dave Yeo <dav...@gm...>: > It displays the tail of help and I guess I was expecting something about > the file being played. Yes, you should. > > You only get a progress bar if you ask for it. Run mpg123 -v or press > > 'v' (multiple times) in terminal control! > > Doesn't help. Uh? > > Give it some -vvvvvvvvv! ;-) > > Lots of output like, > MPEG 1.0, Layer: III, Freq: 44100, mode: Stereo, modext: 0, BPF : 627 > Channels: 2, copyright: No, original: No, CRC: No, emphasis: 0. > Bitrate: 192 kbit/s Extension value: 0 > But nothing like Title: bei nacht Artist: rio reiser Comment: 4.104013 Album: rio i Year: 1986 Genre: Pop > 00064+13901 00:01.64+06:03.11 --- 100=100 128 kb/s 417 B acc 0 clip p+0.000 [0:01] Decoding of 10-bei_nacht.mp3 finished. (the penultimate line)? I wonder if this triggers in print_stat() (common.c): #ifndef WIN32 #ifndef GENERIC /* Only generate new stat line when stderr is ready... don't overfill... */ { struct timeval t; fd_set serr; int n,errfd = fileno(stderr); t.tv_sec=t.tv_usec=0; FD_ZERO(&serr); FD_SET(errfd,&serr); n = select(errfd+1,NULL,&serr,NULL,&t); if(n <= 0) return; } #endif #endif Can you add a #ifndef __OS2__ around that, too? Alrighty then, Thomas |