Jump to content

Search the Community

Showing results for tags 'GPU'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements
    • Emby Premiere Purchase/Subscription Support
    • Feature Requests
    • Tutorials and Guides
  • Emby Server
    • General/Windows
    • Android Server
    • Asustor
    • FreeBSD
    • Linux
    • NetGear ReadyNAS
    • MacOS
    • QNAP
    • Synology
    • TerraMaster NAS
    • Thecus
    • Western Digital
    • DLNA
    • Live TV
  • Emby Apps
    • Amazon Alexa
    • Android
    • Android TV / Fire TV
    • Windows & Xbox
    • Apple iOS / macOS
    • Apple TV
    • Kodi
    • LG Smart TV
    • Linux & Raspberry Pi
    • Roku
    • Samsung Smart TV
    • Sony PlayStation
    • Web App
    • Windows Media Center
    • Plugins
  • Language-specific support
    • Arabic
    • Dutch
    • French
    • German
    • Italian
    • Portuguese
    • Russian
    • Spanish
    • Swedish
  • Community Contributions
    • Ember for Emby
    • Fan Art & Videos
    • Tools and Utilities
    • Web App CSS
  • Testing Area
    • WMC UI (Beta)
  • Other
    • Non-Emby General Discussion
    • Developer API
    • Hardware
    • Media Clubs

Blogs

  • Emby Blog

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Found 21 results

  1. Hi all, I'm just not an A/V guy, but I am a computer guy. That said, I'm struggling to understand if I have things set up correctly or not. Here's the setup: Intel NUC running Proxmox, 12th Gen Alderlake, with Quicksync. Emby set up via "Emby Media Server LXC" helper script. Synology NAS back end for the video library, through SMB share in Emby. Followed these directions to expose/pass through the GPU in Proxmox. After I follow directions, I run the following command in the Proxmox shell: dmesg | grep -e DMAR -e IOMMU It DOES come back with a line for "DMAR: IOMMU enabled", so it looks like all is well inside of Proxmox. I try to run the only 4k video in my library, and it stutters the video, making the video choppy, and the sound kind of goes on ahead of the video. ALL other videos run just fine. All other types, codecs, everything. When I run the 4k video, it looks like this in the Emby Dashboard (Apple TV is the username, not to be confused with the client): In fact, it looks the same, "Direct Play" for all video codecs... the only difference is that this one is 4k. So... my questions go back to the fact that I'm not really an A/V guy... I am using an Apple TV model A1625 (32GB), hooked up to an older model 1080p HD (but not 4k) television. I am making an assumption that Emby should be transcoding DOWN to the capabilities of the AppleTV (HD, but not 4k). First, am I wrong about this? Second, in the attached Dashboard screen capture, it says "Direct Play"... does that mean Emby is NOT transcoding? And, yes, I absolutely have all the transcoding checkmarks in the right place... (just a sample, but all below that are checked as well). The fact that these say "Alder Lake" is a pretty good indication that it has GPU access, is it not? So, is my problem that it's somehow not possible to transcode down to the level of my AppleTV and/or Television? (If so, that doesn't even seem right... because what is transcoding for then? (Again, I'm no A/V guy.) I suppose it's worth noting too, that this video plays perfectly in a browser on a laptop, and on an iPhone using the Emby client. In those cases, the Dashboard looks exactly the same... direct play. Well, I hope I've given people enough to help advise me! Thank you in advance! Edit: Attached the hardware detection log for when I play the 4k video. Once you get past the huge block of text at the top, you can start to see some of the other detail, and it look like it's finding the GPU, and not having an issue with the decoding. (But I'm not an expert in how to read an Emby log either.) hardware_detection-63864447408.txt
  2. Hi Emby Community, I am currently running an Emby server on a system with the following specifications: Processor: Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz RAM: 128 GB Machine Type: Rack Mount Chassis Operating System: Ubuntu 20.04.6 LTS Storage: HP P440, HP P840ar, HP LOGICAL VOLUME (multiple disks) Display Resolution: 1024x768 pixels My Emby server primarily handles transcoding for both LAN and some remote network devices. However, I've been facing significant performance issues during transcoding, where CPU usage spikes to 90% or higher, making the server laggy. On average, there are 20-30 active devices, but this number can sometimes exceed 100. Given this situation, I'm considering adding a dedicated GPU to improve transcoding efficiency. I've heard that Nvidia GPUs are highly recommended for this purpose due to their NVENC support. Here are my specific questions: Will adding a dedicated GPU help with my transcoding performance? Which Nvidia GPU model would you recommend for handling a high number of simultaneous streams, including some 4K streams? Are there any particular configuration steps or considerations I should be aware of when setting up the GPU for Emby transcoding? I've seen recommendations for various Nvidia GPUs such as the Quadro P2000, GeForce GTX 1660 Super, and RTX series. My goal is to find a balance between performance and cost, ensuring that the server can handle multiple 1080p and 4K streams efficiently. I appreciate any insights, recommendations, or experiences you can share regarding the best GPU choice and setup for this scenario. Thank you!
  3. Hi guys, I am having trouble with the hardware acceleration in docker. I'm using the integrated graphics card of the Intel N100 and the system is Ubuntu server 22.04 LTS. My emby is 4.7.14.0 With the commands: getent group video | cut -d: -f3, I got 44 getent group render | cut -d: -f3, I got 109 So Here is my docker compose: emby: image: emby/embyserver:latest container_name: emby environment: - UID=1000 - GID=100 - GIDLIST=44,109 - TZ=Asia/Shanghai volumes: - /root/emby/config:/config - /root/emby/cache:/cache - /root/media:/media devices: - /dev/dri:/dev/dri ports: - 8096:8096 restart: unless-stopped After emby started, I found several errors in hardware_detection: Devices": [ { "DeviceIndex": 0, "DeviceInfo": { "VendorName": "Intel Corporation", "DeviceName": "Alder Lake-N [UHD Graphics]", "SubsytemVendorName": "Intel Corporation", "VendorId": 32902, "DeviceId": 18129, "SubsytemVendorId": 32902, "SubsytemDeviceId": 29296, "DevPath": "/sys/bus/pci/devices/0000:00:02.0", "DrmCard": "/dev/dri/card0", "DrmRender": "/dev/dri/renderD128", "IsEnabled": 1, "IsBootVga": 1, "Error": { "Number": -1, "Message": "Failed to initialize VA /dev/dri/renderD128. Error -1" } } } ], I also tried: ffmpeg -hwaccel vaapi -hwaccel_output_format vaapi -i input.mp4 -vf 'format=nv12|vaapi,hwupload' -c:v h264_vaapi output_VAAPI.mp4 It works in Ubuntu but not in Docker: Could you give me any advice? hardware_detection-63837216517.txt
  4. ShadowKindjal

    Transcoding GPU of Choice

    I'm currently rocking a Quadro RTX 4000 and I know I can still upgrade to the 5000 but these cards are nearing five years old now. What's the current generation stuff that replaced them since Nvidia did away with it's Quadro branding. I'm also curious what everyone is using for their transcoding needs these days too.
  5. Hi all, This has been frustrating me and I seem to be having the same issue as another user also with an RX 480 where the issue seems to have gone unresolved. They seem to be using the same GPU as me and encountering the same issue. However, one of the solutions in the thread (remove the "d3d11va" line in the hwaccels_4.7.6.0 file) seems to stop the crashing. Pulling up dxdiag after it crashes, I see that it reverts to the Microsoft basic display driver in safe mode. I tried upgrading to a beta version of the driver, then purging it and factory resetting the AMD driver and returned it back to stable and it still is causing the crash no matter what version I run. I also took a peak at Event Viewer to see if I could find anything and the only thing that seems to be of interest regarding AMD or display drivers with the timing is that Windows reports that "Miniport driver failed to add device.." What functionality do I lose exactly if Emby doesn't load d3d11va, because it runs fine and no crashing occurs once I remove that line. I enabled debug logging and attached my emby server log but I can't make much sense of it. Thanks! Edition Windows 11 Pro Version 21H2 Installed on ‎2/‎16/‎2022 OS build 22000.832 Experience Windows Feature Experience Pack 1000.22000.832.0 AMD driver version 22.5.1 embyserver.txt
  6. embyserver.txt ffmpeg-transcode-058599f6-a2e7-4ca3-8dd7-ad84cecaffe8_1.txt hardware_detection-63752995865.txt
  7. maxanonym

    GPU Transcoding Bug

    Hallo, seit neusten nutze ich jetzt emby, ich habe mit den GPU transcoding ein paar Probleme gehabt. Ich habe nun eine andere GPU rein gebaut und es kommt der selbe BUG. Bei der GTX 1060/1070 treten wiedergabefehler bei HVEC Filmen auf. Es ist der neuste GPU Treiber installiert. Wenn ich über die CPU (ryzen 5) Transcodiere dann funktioniert es einwandfrei. Getestet auf meheren Geräten über Apps und Emby Web Oberfläche. Genau der selbe Fehler. Wie als würde der Film falsch gerendert und emby kann es nicht richtig über die gpu verarbeiten. Bei direktem Abspielen kommt garkein fehler, oder Transcoding über die CPU. 2020-12-30 18-26-51.mkv
  8. RobertDi

    J4105-ITX GPU Transcoding

    Hallo liebes Forum, Ich habe Emby-Server auf dem ASRock J4105-ITX laufen, nativ unter Debian Buster. (Integrated Intel® UHD Graphics 600) Umstieg von der Docker Variante um die GraKa das Transkoding durchführen zu lassen. Leider musste ich feststellen das mit aktivem Hardwaretranskoding nahezu kein Film mehr im Browser darstellbar ist. Alles viel zu langsam und nur Aussetzer. Folgende Ansätze brachten leider keinen Erfolg: #1 RAM der GraKa auf 512 MB hoch # 2 Intel non-free Treiber Hat jemand noch eine Idee oder ist die interne GraKa einfach zu schlecht? Mittels Software Transkoding funktioniert die Wiedergabe, allerdings mit entsprechender CPU Last. Spezifikationen Board: https://www.asrock.com/mb/Intel/J4105-ITX/#Specification Gruß Robert
  9. seppolind

    convert not using gpu

    I am trying to convert to hevc with gpu, seems to go to software encode. Seems like if original is mpeg it works but if original is h.264 goes to software. Am using ubuntu with nvidia p2000. embyserver.txt hardware_detection-63713606433.txt ffmpeg-transcode-fc7aff66-6f98-4919-aae7-2cac8df2d650_1.txt
  10. Kimballslice1890

    Server Hardware Setup Recommendations

    Currently running my Emby Server on server with 2 Xeon e5 2660, 128GB ram, no gpu (currently). I have the Emby server running on a dedicated VM with 16 cores, 32GB RAM and a dedicated 500GB SSD. So far it works great but I am looking to maybe go something more power efficient or potentially better utilization of hardware? (server runs on Windows Server 2008 R2) I have a HDHomerun tuner along with my media storage and average about 2-5 HD streams. I did see some stuff about GPU rendering which will offload to the CPU when it needs to. Was wondering if anyone has experience or can help me out. I have 2 spare optiplexs with 250W psus one with an i5 3470, the other with a Xeon ivy bridge i5 equivalent. I have a couple Nvidia Quadro 600s laying around. A radeon RX 560 thats not being utilized too much that I can spare and a Radeon HD 7670. I know these are relatively weak cards, but anyone with decent knowledge on the topic could chime in? Will I notice an improvement in performance/efficiency by going with a GPU-CPU combo. Any recommendations for GPUs =>$100 used. @@arrbee99
  11. jaspils

    Will adding a GPU benefit me?

    Currently running Emby on a virtual machine (ESXi) with the following specs: 8 CPUs from the 2 Xeon E5520 @ 2.27GHz in the host 8GB of RAM a 40GB disk on SSD for the OS and app Media content through a SMB-share (over Gbit network, mostly 100MB/s+ read/write speeds) Debian Buster Emby Premiere subscription Most content gets streamed fine. However, when something needs to be transcoded, it gets tricky. Especially high-quality stuff like 4K is simply not possible to watch through Emby. Also, subtitle burn-in hardly ever works. So my question would be: - Will adding a GPU benefit my setup, and what kind? I would probably add the GPU to the virtual machine through DirectPath I/O PCI passthrough. Of course adding a RTX Titan would probably improve it, but I just want something cheap. I was looking at used GPU's like the GTX950 of GTX960, mainly because they don't draw too much power from my server and would only cost me like €60. So does anyone know wheter this could help me, or perhaps suggest an alternative? Thanks! @ @@arrbee99 @@cayars
  12. Hi, i will thank you for this great software it´s amazing. Now i have one little question. Will it be possible to use the GPU for transcoding (like Intel Quicksync) in the Webplayer? I know Mediabrowser Server 3 uses ffmpeg. I test with ffmpeg standalone at it can use quicksync to transcode. How could i turn this on in the MBS 3? It will be greate for all having a smal HTPC mit a CPU that allows this feature. I look forward to your response :-)
  13. I Got a Ryzen 7 2700x with a 1070 on my server pc 4K its Intense even on a 2700x I will like to know if emby will manage both or if it only uses CPU or GPU....It Will Be nice if you can turn on a feature that let's users use the 2 encoders on the card and other users to use the CPU encode depending on the order of demand..Tank You Guys In Advance!!!
  14. Ive got three GPUs in my server; an intel hd 3000, ati radeon 5570, and a gtx 680. The hd3000 doesnt show up in emby, so I'm not sure if it actually does anything which is no problem, but I'm curious to see which devices are doing what in real time. Is there a way to tell which device is transcoding (and if possible which device is doing the decoding / which is doing the encoding?) A command line option would suffice, but i have half a mind to put this as a feature request for "stats for nerds" if its possible Also, there is the possibility that the CPU is doing the transcoding, would that show up as "mode: Transcode (software)" or something like that?
  15. ShadowKindjal

    Best GPU for Transcoding

    I'm currently running my emby server off of an e5-2670 processor with 64 GB of ram on Linux. I typically have up to 10 concurrent streams so I added an RX 580 to improve the transcoding performance of my server. Well, my 580 graphics card is malfunctioning and needs to be pulled out of commission so I'm looking to upgrade. Would anyone be able to recommend a graphics card that will easily be able to handle at least 20 concurrent streams? Right now my content is limited to 1080p but I would also like to stream 4k content at some point. I know there's an issue with Nvidia cards limiting concurrent streams to 2 but I've heard that the drivers can be patched to get around this issue. Is that also true? Any help would be appreciated.
  16. saajan4u

    GPU for the HP MicroServer

    Hi All I got my hands on a very good condition HP micro server. I am planning to user Windows server 2019 on it as i am confident administering that. I know the micro-server CPU is very dated and will struggle to do the basic trans-coding., So heres my question, Can i stick a graphics card to tell emby to use that for trans-code? also, budget is tight, so what would be the cheapest graphics card i get away with 4k. most likely to be an eBay job there wont be more than 2 stream ever. thanks in advance
  17. When transcoding movies, even with hardware acceleration turned on on the server, all of the work load is being put on the CPU for both decoding and encoding. Im pretty new to this and dont have much knowledge about how this works. -More specific specs- Processor: AMD FX-3600 Six-Core Processor GPU: Nvidia GTX-960 4GB Ram: 8.00GB DDR3 It might just be something simple i am missing, but no matter what setting configuration i have set, all of the work is done via cpu. From what i am aware, a GTX-960 should be capable of both decoding and encoding. In a recent ffmpeg log file i noticed this following message, I'm not sure if it helps: [h264_nvenc @ 00000206e4fe00c0] Cannot get the preset configuration: invalid version (15)Error initializing output stream 0:0 -- Error while opening encoder for output stream #0:0 - maybe incorrect parameterssuch as bit_rate, rate, width or heightConversion failed! Attatched are my transcoding options, ffmpeg log while transcoding a 1080p movie, and a hardware detection log. Any help to get my GPU to do something would be greatly appreciated ffmpeg-transcode-2d389333-b984-4ddc-8d5f-468abc80f562_1.txt hardware_detection-63686804671.txt
  18. foodmonkey

    gpu acceleration or cpu and memory

    ok - so upgrading my emby server from a hard working unlocked amd to a new mobo/memory et al need some advice go i5 with a gpu or i7 with lots of memory currently running emby as a docker on rockstor so i'm thinking the i7 with more threads is going to do a better job - that's as long as emby and rockstor can take advantage of the extra threads espeacially when it comes to managing multiple streams - maybe transcoding and as a file server as well any thoughts? @
  19. McBoothertonEsq

    Choosing NVENC encode GPU

    I'm currently looking into making a 2 in 1 gaming + NAS system to power my downstairs TV, I plan to use an Nvidia GTX 690 in it for a while as the card has been sitting in my attic for about a year ever since I upgraded, but will at one point get a higher end GPU like a 1070, maybe Ti, or Vega 56 (unless the 11 series drops soon enough) for gaming as the 690s 2gb per GPU frame buffer is a choking point for almost any modern game. Then I could have the 690 in there as an encode/Physx card. If I go for the Vega 56 and select NVENC encoding I assume I won't have issues as Emby should just use the 690 for that. Thing is, if I get the 1070/Ti over the Vega 56 and choose NVENC for encoding, will I be able to specify which graphics card I want the encoder to use? I'd prefer for the 1070/Ti to be reserved for gaming and general display out while the 690 encodes whenever needed. I don't see any options in settings for selecting a different GPU, I imagine there's a config text file option for it but idk where to find it or how to change which GPU it'll use. Second, does the encoding GPU need to be connected to a display? Or can it just be used as an accelerator with no video out? Any help would be greatly appreciated. This seems like a promising alternative to Plex, especially as it's free to use features like hw encode (for the record I plan to donate if this becomes my permanent media server, had to sink $2500 into my truck recently so it won't be for a while).
  20. Hi everyone. I'm done with Plex, the support stinks and I have lifetime emby from mb3 days. If they fix their stuff I have lifetime there as well. Currently my content is all mkv format video from DVD/bluray. 25TB of storage on flexraid (snapshot) with 2 parity drives. I have a p9x79-ws workstation Mobo with a 3930k, 32gb of 2133Mhz ddr3, an IBM m1015 flashed to IT mode (jbod) and a hauppauge 2250 dual tuner, with an EVGA gt 730 2gb. We have a couple iPads, a couple androids, a Roku 3, an Xbox one s, and a couple laptops/desktops. Playback is primarily thru the Xbox and the Roku (still doing 1080p). I wanted to know about a couple upgrades to my hardware. First, I ordered an e5-2670v2 decacore, which is a hit on single thread but pushes my passmark up over 15,000. It also enables true pcie 3.0 and the other stuff ivy-e improved from sandy-e. (Overall performance gain). For Plex transcodes, this is the right move. For emby? Second, is it worth dropping a pcie ssd for the transcode folder? The 128gb is only $100 right now. Third, would it help with network throughput to jamb another 2-4 ports of gigabit Ethernet in? I already have 2 gig-e ports on the mobo. Any feedback is welcome!
  21. Hi, I'm looking for a new emby server hardware around 300$. Running Ubuntu Server 15.10. I'd like to transcode 2-4 streams on the same time. 24/7 operation => low power consumption Which hardware could you recommend? What's about the new Intel Nuc: http://www.intel.com/content/www/us/en/nuc/nuc-kit-nuc6i3syk.html? The CPU also supports quick sync. Cheers
×
×
  • Create New...