blender-docker
blender-docker copied to clipboard
Error trying in docker run
ALCplaybackOOS_open: Could not open /dev/dsp: No such file or directory found bundled python: /usr/local/blender/2.79/python
Blender quit
That's the standard behavior when not giving an input file to process
I had the same issue while I was providing a proper input file
$ /usr/local/blender/blender -b bouncing_ball.blend -o /media/frame_##### -F PNG -f 1
From my understanding this is a complete different problem and it is related to a missing audio dependency in Linux. I was able to avoid the error using the argument -noaudio as below.
$ /usr/local/blender/blender -b bouncing_ball.blend -noaudio -o /media/frame_##### -F PNG -f 1
I see. It shouldn't be too hard to track down the dependency and include it in the Docker image. Do you happen to know what it is?