Blender 2.8x companion add-on to the FACSvatar project. This add-on allows streaming of facial configuration and head pose data (from another computer) into Blender over ZeroMQ sockets, without freezing the interface (publisher-subscriber pattern).
Code working - README in progress
Standalone Blender-outside data transfer - BlendZMQ: https://github.com/NumesSanguis/Blender-ZMQ-add-on
- (2023-06-29) Runs fine on Blender 3.6 LTS without making code changes (tested on Ubuntu)
- (2023-06-17) Match the changes made to BlendZMQ to support Blender LTS up to version 3.3.
- FACSvatar v0.4.0 branch - 2020-02-10 - Blender 2.81+ pip support: In Blender 2.81 pip is enabled by default.
This update takes that behavior into account. If the
Enable pip & install pyzmq
button fails, it still executesensurepip.bootstrap()
. Restart Blender and try again, it will work this time (on Windows make sure you run with admin rights).
Blender is very powerful software, but if you run your own code that's a bit heavy, you quickly make the interface unresponsive. I.e freezing the interface. This could be solved with Threading/Async, however, this is difficult due Blender's internal loop (which is more like a game engine). Also, in case of threading, you can't manipulate objects in the main loop of Blender without using e.g. a queue system.
Why not take the program logic and manipulation of data outside Blender, and possibly run heavy code on another PC? Enter ZeroMQ.
ZeroMQ (pyzmq
- Python wrapper of ZMQ) is a communication protocol library that allows the sending of data packages
between programs (even when written in different languages) by using sockets.
Therefore, the data can be send over the network (e.g. TCP), meaning you can even run the software on different machines.
This add-on works by setting a timer function (Blender 2.80+) that checks if a ZeroMQ socket has received
a message from outside (using zmq.Poller()
). If so, process that data to move selected objects.
This timer keeps being invoked until the socket has been disconnected.
See for a demonstration:
- FACSvatar: https://github.com/NumesSanguis/FACSvatar
- Download this repository as a .zip by:
- Go to https://github.com/NumesSanguis/FACSvatar-Blender/releases/ and download the ZIP, or
- Clicking the green "Clone or download" button and choose "Download ZIP"
- Start Blender with Administrator right (at least on Windows) to allow enabling of
pip
and installingpyzmq
(does NOT work with a Snap package install of Blender on Linux, see troubleshooting) - In Blender, add this add-on by selecting Edit -> Preferences -> Add-ons ->
- Install... -> select downloaded ZIP from step 1 -> Install Add-on
- Search:
FACSvatar
-> click checkbox to activate
- Open side panel in 3D view by
- Pressing
n
on your keyboard - Dragging
<
to the left
- Pressing
- Click "FACSvatar" -> "Enable pip & install pyzmq" button (if fail, restart Blender and try again (with admin rights))
- Create a MB-Lab character (Use EEVEE engine), finalize it and select the character.
- In the settings panel, go to
Modifier Properties
(blue wrench icon) ->mbastlab_subdvision
-> Set Subdivisions: Viewport to0
(for performance reasons) - Click "Connect socket" button. Now it's waiting for data message from FACSvatar.
- Follow the instructions over at FACSvatar and send data to port 5572 (the Quickstart setup automatically uses this port).
- If Step 5 (enable pip & install
pyzmq
) does not work (e.g.Couldn't activate pip.
), link Blender to e.g. yourbzmq
conda environment: https://docs.blender.org/api/current/info_tips_and_tricks.html#bundled-python-extensions
- Blender Artists: https://blenderartists.org/t/blendzmq-open-source-add-on-streaming-data-into-blender-2-8x-without-freezing-the-interface/
- Gumroad: https://gumroad.com/l/blendzmq
- Blender add-on file structure inspired by btrace: https://github.com/sobotka/blender-addons/tree/master/btrace
- More information about ZeroMQ: https://zeromq.org/
- Why not make your outside Blender software easy to deploy, independent of OS? Take a look at ZeroMQ with Docker: https://github.com/NumesSanguis/pyzmq-docker
- When developing Blender Add-ons, reload all add-ons without restarting Blender by executing:
bpy.ops.script.reload()
- dr.sybren (bunch of small questions)
- joules (multi-selection of previously selected objects)
- Other people at blender.chat, blender.stackexchange.com and the documentation