m4n0v31

Results 14 comments of m4n0v31

Thx for the feedback, I actually solved, keeping the ffmpeg part unchanged by adding installation of following drivers (VAAPI) in the Dockerfile: ``` FROM base as final RUN apk add...

It looks to me that the default "df" output in Linux alpine differs from other system. Using the -P flag as "df -Pk" would output in standard POSIX Format and...

I build an image based on this repository. No change besides adding the VAAPI drivers. ``` uname -a Linux 515bc0b8a952 4.4.180+ #42962 SMP Mon May 29 14:38:23 CST 2023 x86_64...

I Can't try right now. But I solved for now by adding `alias df="df -P"` in stremio-web-service-run.sh: ``` #!/bin/sh -e alias df="df -P" node server.js & sleep 1 ... ```...

Hi, I checked with latest but my input (the alias suggestion) is not working correctly. I resorted doing a sed on server.js: ``` # Correct a bug sed -i -e...

The fix with the alias is not working, because the server.js execute the df command in a new she'll in which the alias is not available. So you have to...

Strange, I pulled an image and the Intel-Media-Driver package was not installed in the container.

uname -m in the container correctly show x86_64. apk -e info intel-media-driver in the container returns nothing, meaning the package is not installed. Depending on the machine on which you...

Ok, I solved, somehow didn't pull the latest image (was stuck on one "Created": "2024-03-30T03:13:16.726227646Z") Now the issue with the intel-media-driver is solved, and I have hw acceleration. as said...

The only difference I see is the length of the name of my filesystems in the docker: ``` # df --help BusyBox v1.36.1 (2024-06-12 11:52:11 UTC) multi-call binary. Usage: df...