shark@lemmy.org to Selfhosted@lemmy.worldEnglish · 3 days agoWhat's your self-hosting success of the week?message-squaremessage-square92fedilinkarrow-up192arrow-down13
arrow-up189arrow-down1message-squareWhat's your self-hosting success of the week?shark@lemmy.org to Selfhosted@lemmy.worldEnglish · 3 days agomessage-square92fedilink
minus-squareEbby@lemmy.ssba.comlinkfedilinkEnglisharrow-up21·3 days agoI finally got around to installing Jellyfin. Still trying to get hardware transcoding working. I think I have it set up, but it still wants to use the CPU. I’m thinking permissions but I ran out of time. Fun project.
minus-squareBaconWrappedEnigma@lemmy.nzlinkfedilinkEnglisharrow-up14·3 days agoI think QSV is the new “easiest” way if you have an Intel CPU. Here are some docker compose values that might help: group_add: - "110" - "44" devices: - /dev/dri/renderD128:/dev/dri/renderD128 110 is render 44 is video You can grep render /etc/group to find your values. I found CPU accelerated transcoding to be as effective as using GPU acceleration for my small media server setup. Nvidia wasn’t worth it for me.
minus-squareEbby@lemmy.ssba.comlinkfedilinkEnglisharrow-up6·3 days agoOh thanks! I didn’t have the group_add.
minus-squaresharkaccident@lemmy.worldlinkfedilinkEnglisharrow-up3·2 days agoWhy the group add? Does JF default user not have access to dev dri?
I finally got around to installing Jellyfin. Still trying to get hardware transcoding working. I think I have it set up, but it still wants to use the CPU. I’m thinking permissions but I ran out of time.
Fun project.
I think QSV is the new “easiest” way if you have an Intel CPU. Here are some docker compose values that might help:
group_add: - "110" - "44" devices: - /dev/dri/renderD128:/dev/dri/renderD128110isrender44isvideoYou can
grep render /etc/groupto find your values.I found CPU accelerated transcoding to be as effective as using GPU acceleration for my small media server setup. Nvidia wasn’t worth it for me.
Oh thanks! I didn’t have the group_add.
Why the group add? Does JF default user not have access to dev dri?