I am following the quickstart README.md from the Audio2Face-3D-Samples to deploy te audio2face3d on docker using docker compose. The init step works fine and the TRT files are generated but I receive the following log when trying to run the audio2face3d.
a2f-3d-service-1 |
a2f-3d-service-1 | (gst-plugin-scanner:7): GStreamer-WARNING **: 20:24:40.668: Failed to load plugin '/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstchromaprint.so': libavcodec.so.58: cannot open shared object file: No such file or directory
a2f-3d-service-1 | GLib (gthread-posix.c): Unexpected error from C library during 'pthread_setspecific': Invalid argument. Aborting.
a2f-3d-service-1 |
a2f-3d-service-1 | (gst-plugin-scanner:10): GStreamer-WARNING **: 20:24:40.906: Failed to load plugin '/usr/lib/x86_64-linux-gnu/gstreamer-1.0/deepstream/libnvdsgst_inferserver.so': libtritonserver.so: cannot open shared object file: No such file or directory
a2f-3d-service-1 |
a2f-3d-service-1 | (gst-plugin-scanner:10): GStreamer-WARNING **: 20:24:40.920: Failed to load plugin '/usr/lib/x86_64-linux-gnu/gstreamer-1.0/deepstream/libnvdsgst_udp.so': librivermax.so.1: cannot open shared object file: No such file or directory
a2f-3d-service-1 |
a2f-3d-service-1 | (gst-plugin-scanner:10): GStreamer-WARNING **: 20:24:40.940: Failed to load plugin '/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsndfile.so': libFLAC.so.8: cannot open shared object file: No such file or directory
a2f-3d-service-1 |
a2f-3d-service-1 | (gst-plugin-scanner:10): GStreamer-WARNING **: 20:24:40.944: Failed to load plugin '/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmpg123.so': libmpg123.so.0: cannot open shared object file: No such file or directory
a2f-3d-service-1 |
a2f-3d-service-1 | (gst-plugin-scanner:10): GStreamer-WARNING **: 20:24:40.959: Failed to load plugin '/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstopenmpt.so': libmpg123.so.0: cannot open shared object file: No such file or directory
a2f-3d-service-1 |
a2f-3d-service-1 | (gst-plugin-scanner:10): GStreamer-WARNING **: 20:24:40.960: Failed to load plugin '/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstlame.so': libmp3lame.so.0: cannot open shared object file: No such file or directory
a2f-3d-service-1 |
a2f-3d-service-1 | (gst-plugin-scanner:16): GStreamer-WARNING **: 20:24:40.999: Failed to load plugin '/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmplex.so': libmjpegutils-2.1.so.0: cannot open shared object file: No such file or directory
a2f-3d-service-1 |
a2f-3d-service-1 | (gst-plugin-scanner:16): GStreamer-WARNING **: 20:24:41.005: Failed to load plugin '/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstfluidsynthmidi.so': libFLAC.so.8: cannot open shared object file: No such file or directory
a2f-3d-service-1 |
a2f-3d-service-1 | (gst-plugin-scanner:16): GStreamer-WARNING **: 20:24:41.017: Failed to load plugin '/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstpulseaudio.so': libFLAC.so.8: cannot open shared object file: No such file or directory
a2f-3d-service-1 | [info] Tongue animation is disabled
a2f-3d-service-1 | [info] A2F stylization ids has been overriden
a2f-3d-service-1 | [info] Will use A2F stylization ids: inference_model_id=claire_v2.3, blendshape_id=claire_topo1_v2.1, tongue_blendshape_id=claire_tongue_v1.0
a2f-3d-service-1 | [warning] File '/data/a2f-sdk-blendshape/claire_topo1_v2.1/a2f_ms_config.json' does not exist or cannot be opened.
a2f-3d-service-1 | [2025-06-26 20:24:41.042] [ global ] [critical] Could not init a2f pipeline.
a2f-3d-service-1 exited with code 255
I tried running with the claire model like this:
A2F_3D_MODEL_NAME=claire docker compose up
I tried chaning the logging.log_level value to debug to get better error info on the deployment_config.yaml. What can I do?