-
Posts
7 -
Joined
-
Last visited
Reputation Activity
-
xsetiadi got a reaction from Anderson Castro in Jellyfin docker Hardware Acceleration
@Anderson Castro i try. with docker container. but you need to change a little bit. since the docker run cli command on official use net=host I cannot access the jellyfin. so I just delete that line and add this line and work fine for me:
-e JELLYFIN_PublishedServerUrl=192.168.0.55 `#optional` \
-p 8096:8096 \
-p 8920:8920 `#optional` \
-p 7359:7359/udp `#optional` \
-p 1900:1900/udp `#optional` \
-
xsetiadi got a reaction from Anderson Castro in Jellyfin docker Hardware Acceleration
in case someone still not know. jellyfin now support official RK3588/3588S HWA. here the official steps https://jellyfin.org/docs/general/administration/hardware-acceleration/rockchip/
-
xsetiadi reacted to leeson in Jellyfin docker Hardware Acceleration
@Arif Setiadi the browser supports h264 direct playing at default,you can try 4k hevc ,it will transcode from high vedio bitrate to low vedio bitrate when you chose low vedio bitrate ,and transcode from hevc vedio codec to h264 vedio codec
-
xsetiadi reacted to leeson in Jellyfin docker Hardware Acceleration
@StarboardOtter i had tryed with debian12,you need download the jellyfin client app, then add your server's ip or domain ,chose the quality as low, like this,it worked
here is the link for jellyfin client app https://github.com/jellyfin/jellyfin-media-player/releases .
In general, the Jellyfin client app works by utilizing your client device's GPU for transcoding when your client device's GPU is supported (direct play).
Otherwise, it uses your server device for transcoding.
Sorry, my English is not very good. I hope this helps.
-
xsetiadi reacted to leeson in Jellyfin docker Hardware Acceleration
@Arif Setiadidocker image is server , client app you need download form https://github.com/jellyfin/jellyfin-media-player/releases
-
-
xsetiadi reacted to leeson in Jellyfin docker Hardware Acceleration
@LoneExile
This is my process:
I used 5.10.x kernel, which was already there when I installed the system as @nyanmisaka he said,download the OpenCL,then use sudo apt install ./libmali-valhall-g610-g13p0-x11-wayland-gbm_1.9-1_arm64.deb
docker run -d \ --name jellyfin \ --privileged \ --net=host \ --restart=unless-stopped \ --volume /path/to/config:/config \ --volume /path/to/cache:/cache \ --volume /path/to/media:/media \ --device /dev:/dev \ nyanmisaka/jellyfin:latest-rockchip
maybe need chmod 777 -R /dev (i'm not sure to run it yes or no)