Hi,
Just for fun, I tried the following on my s905x 1GB RAM tv box running kszaq's LE 8.2.0.1 build,
Step 1 - Installed docker from the libreelec addons repository and then...
Step 2 - Add some aliases to your .profile and save it.
alias docker="/storage/.kodi/addons/service.system.docker/bin/docker"
alias ffmpeg="/storage/.kodi/addons/service.system.docker/bin/docker run -v /storage/:/tmp/ forumi0721alpineaarch64/alpine-aarch64-ffmpeg"
Step 3 - Log out of the shell and log in again for your updated .profile to take effect.
Step 4 - Grab the ffmpeg aarch64 image.
Step 5 - Mount your video folder within /storage/ (I'll let you work out how best to do this based on your own setup)
Step 6 - Use ffmpeg to encode a video. (example shown below)
ffmpeg -i /tmp/<yourvideofolder>/input.mkv -c:s copy -c:v libx265 -preset medium -x265-params crf=28 -c:a aac -strict experimental -b:a 128k /tmp/<yourvideofolder>/output.mkv
On my test encode via my video folder on my arch linux NFS file server (over 100Mbps ethernet) I got a whole 5fps encode rate when converting an x264 video to x265 with aac audio.
Like I say, this was just for fun so I thought I would share my experience.
Wouldn't it be good if if we could use the s905x gpu to hw accelerate the encode!