Troubleshooting#
The following are some issues that might arise when you work with the Semantic Split C-Radio NIM, and ways to troubleshoot them.
Problem: Receiving the error: “docker: Error response from daemon: driver failed programming external connectivity on endpoint”
This happens when one instance of NIM is already running via docker and you launch another one.
Resolution: Stop any NIM containers that are running by using the
docker stop <container>ordocker kill <container>command.
Problem: Receiving an error that is not mentioned here.
Pass the flags
-e NIM_LOG_LEVEL=DEBUG -e NIM_TRITON_LOG_VERBOSE=1and re-run the step that is failing. The logs will appear with maximum verbosity to help you determine the cause of the error.
Problem: Video processing hangs or stalls, and does not finish
Verify that the video is not a variable frame rate video. Use the following
ffmpegcommand to verify that a video possess a VFRCommand:
ffmpeg -i <Video Path> -map 0:v:0 -vf vfrdet -an -f null -In the output a value of VFR:0.000000 Indicates a static frame where a non-zero value indicates the file is VFR and not currently supported.