dafoxia
dafoxia
Same Issue with Medion X5001 (rebranded Lenovo). Android-Version 4.4.2.
A false direct after cli.connect is normal. After a few moments cli.connected? should :-) return true.
Maybe your Distro has the wrong celt-libs installed. You need celt 0.7.0. You can download the source code here: http://downloads.us.xiph.org/releases/celt/celt-0.7.0.tar.gz. Btw. you should ensure to use celt-ruby with decoding enabled.
Use this version of celt-ruby (decoding is there included) https://github.com/dafoxia/celt-ruby see also here: https://github.com/perrym5/celt-ruby/pull/2 Force to use celt-0.7.0 can made by giving full path to libcelt0.so while build the celt-ruby-gem....
is `require 'mumble-ruby'` in your code?
Older umurmur versions uses celt only. This mumble-ruby has no celt compatibility yet. You can try my fork until my pull request has been processed. Keep in mind it is...
When I remember right, you should use headerless wave format 16bit signed mono, Little Endian with 48kHz sample rate.
Maybe a look into ( http://wiki.natenom.com/w/Mumble_audio_bots ) will help you. In the guide howto setup a bot with mpd show's how it should work. Your FIFO _must_ deliver sound in...
If you want use mpd for it you only need `-re` and `-ac 1` to create a realtime mono stream. So your command line look like that: `ffmpeg -re -y...
It can only handle FIFO handles. I think it will be possible to create one process witch read from soundcard microphone and write to FIFO and a second witch play...