Text
There is no “text input” plugin in Le Biniou (yet ?).
On Linux you can achieve live text display into Le Biniou using
screen-message in combination with FFMPEG and
v4l2loopback like this:
Screen Message
Start screen-message and resize the window to the size you want or leave it fullscreen.
sm -i -
-i makes the text white on black background. It gives better results in Le Biniou but you can
do whatever you want. Read its man page for more information about color and font selection.
The command ending by - makes it read text from standard input, in this case the terminal, end
your input sentence or paragraph with
FFMPEG
Let's use ffmpeg to stream this window into a virtual video device that can be used by
Le Biniou.
-
We need to get the window ID. Run
$ xwininfo | grep Window idin a terminal then click on the
screen-messagewindow to retrieve it. Example:0x880000a. -
Now is the
v4l2loopback+ffmpegpart:$ sudo modprobe v4l2loopback $ ffmpeg -window_id 0x880000a -framerate 25 -f x11grab -i :0.0+0,0 -video_size 640x480 -pix_fmt yuyv422 -f v4l2 -s 640x480 /dev/video2Replace the
-window_idvalue and the/dev/video2path with the correct ones on your system. -
Now you can launch Le Biniou with the
-W1 -D /dev/video2arguments, according to the correct virtual video device path on your system. Pick any webcam plugin in a sequence, for exampleTV Webcamand type in thescreen-messageterminal like explained above to send messages.