Re: [mpg123-devel] feature request: save position in audio file and begin from that location next t
Brought to you by:
sobukus
From: Thomas O. <tho...@or...> - 2012-04-23 20:51:59
|
Am Mon, 23 Apr 2012 02:17:39 -0400 schrieb Dave <dav...@gm...>: > Terminal control enabled, press 'h' for listing of keys and functions. > Playing MPEG stream 1 of 11: 01-test.mp3 ... > MPEG 1.0, Layer: III, Freq: 44100, mode: Single-Channel, modext: 0, BPF : > 209 > Channels: 1, copyright: No, original: No, CRC: No, emphasis: 0. > Bitrate: 64 kbit/s Extension value: 0 > mpg123: symbol lookup error: mpg123: undefined symbol: mpg123_strlen WTF? Are you sure you are using the right libmpg123? I suppose you installed to /usr/local, so what does shell$ ldd /usr/local/bin/mpg123 tell you? Is it possible that an old libmpg123 is lurking someplace? The mpg123_strlen function should be there: shell$ nm -g /data/test/mpg123/lib/libmpg123.so | grep strlen 0000000000017c00 T mpg123_strlen U strlen@@GLIBC_2.2.5 Alternatively, just build using ./configure --disable-shared That will link the library and also the first output module (alsa, or select using --with-default-audio=...) statically into the mpg123 binary, no strings attached. No install needed, even. Alrighty then, Thomas. |