Jump to content

Hi All,

 

Rather new to Plex and I've built up a media library of H.264 and H.265 content and need some assistance with Hardware Transcoding. 

I don't have a dedicated Plex Server set up at the moment and likely won't for a few months so it's running off my gaming desktop.

Is it possible to force Plex to transcode content using the Intel iGPU when I have another Graphics card connected?

I know the easiest solution would be to force Direct Play only but this isn't an option for all my Client devices.

 

I have an i7 8700k, the Intel HD 630 is enabled within BIOS. I don't see an option unfortunately to select which GPU should be used when transcoding. 

Is it possible to have PLEX use the Intel iGPU for transcoding while allowing my 2070 Super to be used for games ect?

 

Any help would be appreciated.

Link to comment
https://linustechtips.com/topic/1174094-plex-hardware-transcoding-options/
Share on other sites

Link to post
Share on other sites

Probably your best way would be using Linux, and install Plex in a docker container then passthrough the --device /dev/dri argument. 

 

If you run this below command:

Quote

ls -l /dev/dri

You should see listed card0 & renderD128

 

Using linuxserver's Plex docker container and their documentation, your config would look something like this:

 

sudo docker create \
  --name=plex \
  --net=host \
  --device /dev/dri:/dev/dri \
  -e PUID=1000 \
  -e PGID=1000 \
  -e VERSION=public \
  -e UMASK_SET=022 `#optional` \
  -v /home/plex/config:/config \
  -v /home/plex/tv:/tv \
  -v /home/plex/movies:/movies \
  -v /home/plex/transcode:/transcode \
  -v /home/plex/tmp:/tmp \
  --restart unless-stopped \
  linuxserver/plex

 

Spoiler

Desktop: Ryzen9 5950X | ASUS ROG Crosshair VIII Hero (Wifi) | EVGA RTX 3080Ti FTW3 | 32GB (2x16GB) Corsair Dominator Platinum RGB Pro 3600Mhz | EKWB EK-AIO 360D-RGB | EKWB EK-Vardar RGB Fans | 1TB Samsung 980 Pro, 4TB Samsung 980 Pro | Corsair 5000D Airflow | Corsair HX850 Platinum PSU | Asus ROG 42" OLED PG42UQ + LG 32" 32GK850G Monitor | Roccat Vulcan TKL Pro Keyboard | Logitech G Pro X Superlight  | MicroLab Solo 7C Speakers | Audio-Technica ATH-M50xBT2 LE Headphones | TC-Helicon GoXLR | Audio-Technica AT2035 | LTT Desk Mat | XBOX-X Controller | Windows 11 Pro

 

Spoiler

Server: Fractal Design Define R6 | Ryzen 3950x | ASRock X570 Taichi | Asus RTX 4060 Dual OC | 64GB (4x16GB) Corsair Vengeance LPX 3000Mhz | Corsair RM850v2 PSU | Fractal S36 Triple AIO + 4 Additional Venturi 120mm Fans | 8 x 20TB Seagate Exos X22 | 4 x 16TB Seagate Exos X18 | 3 x 2TB Samsung 970 Evo Plus NVMe | LSI 9211-8i HBA

 

Spoiler

NAS: Innovision 4U 24-bay chassis (12GB MiniHD SGIO Backplane) | Intel Core i9-10980xe | EVGA X299 FTW-K | EVGA RTX 2080Ti Super FTW3 | 128GB (8x16GB) Corsair Vengeance LPX 3200Mhz | DEEPCOOL PN1000M PSU| Noctua NH-D12L Chromax Black | 16 x 16TB Seagate Exos X18 | 2 x 2TB Samsung 990 Pro | 2 x 2TB Intel U.2 P4510 | LSI 9305-24i HBA

 

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×