Darkice でストリーミングをしようとしています。コンソールには次が表示されます。
root@raspberrypi:~# darkice
Using config file: /etc/darkice.cfg
Using ALSA DSP input device: hw:1,0
Using POSIX real-time scheduling, priority 98
Buffer overrun!
Buffer overrun!
...
Buffer overrun!
Buffer overrun!
DarkIce: AlsaDspSource.cpp:265: Input/output error [0]
root@raspberrypi:~#
私が使う:
- ラズベリーパイB
- Raspbian Soft-float Debian “wheezy” (他の目的で Java を使用する必要があります)
- ダークアイス 1.2
次のコマンドでソースコードをコンパイルします。
コーデック vorbis
cd /opt/
tar -zxvf libvorbis-1.3.3.tar.gz
tar -zxvf libogg-1.3.1.tar.gz
cd ./libogg-1.3.1/
./configure
make
make install
cd ../libvorbis-1.3.3
./configure
make
make install
コーデック aacplus
cd ..
tar -zxvf libaacplus-2.0.2.tar.gz
cd ./libaacplus-2.0.2/
apt-get install autoconf #I need the utility "autoconf" for the installation
apt-get install libtool #and the library "libtool"
./autogen.sh
./configure
make
make install
コーデックラメ / mp3
cd ..
tar -zxvf lame-3.99.5.tar.gz
cd ./lame-3.99.5/
./configure
make
make install
これが必要かどうかわかりません
wget http://www.mega-nerd.com/SRC/libsamplerate-0.1.8.tar.gz
tar -zxvf darkice-1.2.tar.gz
cd ./libsamplerate-0.1.8
./configure
make
make check
make install
ldconfig -v
sndfile-resample
ダークアイス
cd ..
tar -zxvf darkice-1.2.tar.gz
cd ./darkice-1.2/
apt-get install libasound2-dev
./configure --with-vorbis-prefix=/usr/local/lib/ --with-lame-prefix=/usr/local/lib/ --with-aacplus-prefix=/usr/local/lib/ --with-alsa-prefix=/usr/lib/arm-linux-gnueabi/ --with-samplerate-prefix=/usr/local/lib --with-jack-prefix=/usr/lib/arm-linux-gnueabi/
make
make install
インストールはすべてのパッケージで正常に終了します。
ファイルのパラメーター: /etc/darkice.cfg は次のとおりです。
[general]
duration = 0
bufferSecs = 1
reconnect = yes
[input]
device= hw:1,0
sampleRate = 44100
bitsPerSample = 16
channel= 2
[shoutcast-0]
bitrateMode = cbr
bitrate = 56
format = mp3
quality = 1.0
...
デバイス hw:1,0 は正しいです。なぜなら、Audacity を使用すると問題なく記録できるからです。
私は次の手順に従いました: http://www.t3node.com/blog/live-streami ... pberry-pi/ しかし、問題は解決しません...
この問題について話している他の投稿を見ましたが、何も役に立ちません。
何か案が?私に何ができる?