What options do I have?
Can I access ffmpeg which I have installed on Ubuntu from the hassio container?
Or can I somehow access the hassio container and install ffmpeg there?
I have solved my problem and it was completely my fault
Some days ago I created different VLANs for Home Assistant and my cameras och when looking at the firewall log there was some blocking.
Allowed the traffic and everything start working
My solution to run commands installed on the host and that are not present in the Hassio image. Remember that the Hassio image for Raspberry Pi 4 is based on Alpine Linux. To install a package on Alpine, use the apk command. Example to install ffmpeg on this Linux:
$ apk add --no-cache ffmpeg
I circumvented the problem by running the command via SSH on the host using the “Terminal & SSH” add-on. Configure the add-on, then access the terminal and generate your identification keys:
$ ssh-keygen
(empty for the passphrase)
Then create the directory:
$ mkdir /config/.ssh
And copy the keys there:
$ cp /root/.ssh/id_rsa* /config/.ssh/
Perform an SSH access to your own host to record the data in known_hosts:
$ ssh root@[rasp_ip_address]
Once passwordless access is working, create the command you want to run in configuration.yaml:
thank you so much - threads and threads and threads for nothing. I could not get ffmpeg integration working (camera was just showing nothing) until I did such. Ultimately ffmpeg is not installed inside hassio.