Jump to content

Search the Community

Showing results for tags 'help'.

  • 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...

  1. So for the last few days, no matter what I play, the next episode won't play automatically like it usually does. I will set certain series to shuffle while I'm working or sleeping. I went into my settings and everything is correctly set to play automatically. Maybe a bug? Any help appreciated
  2. Hi everyone, I'm trying to get fail2ban working for Emby / Docker. Currently running in Ubuntu Mint Ubuntu 24.04 and have docker set to map the /config/logs directory to a local folder on the host. As far as I can tell I've got everything setup right but the filter is not matching anything it seems and it never logs failed logins to the jail. Also I don't recall where I noted them but I did see some weird charters in some kind of fail2ban logs for Emby. They were non-printable or invisible characters but I don't know that those would affect the regex especially since the manual regex test is passing. Does anyone have any ideas or see something overly obvious that I'm missing? Also worth nothing I manually tested the regex pattern and it matches. Docker Compose to map logs to local directory version: "2.3" services: emby: image: emby/embyserver:beta container_name: embyserver runtime: nvidia # Expose NVIDIA GPUs network_mode: host # Enable DLNA and Wake-on-Lan environment: - UID=1000 # The UID to run emby as (default: 2) - GID=1000 # The GID to run emby as (default 2) - GIDLIST=1000 # A comma-separated list of additional GIDs to run emby as (default: 2) #44,992 - NVIDIA_VISIBLE_DEVICES=all - NVIDIA_DRIVER_CAPABILITIES=compute,utility,video volumes: - /home/r3al/Desktop/Docker/Emby/programdata/:/config # Configuration directory - /media/r3al/New Volume/TT/TV/:/mnt/tv # Media directory - /media/r3al/New Volume/TT/Movies/:/mnt/movies # Media directory - /media/r3al/New Volume/TT/Live TV Recordings/:/mnt/mixed # Media directory - "/home/r3al/Desktop/Docker/Emby/logs/:/config/logs" ports: - 8096:8096 # HTTP port devices: # - /dev/nvidia-uvm:/dev/nvidia-uvm # Added nvidia devices here # - /dev/nvidia-uvm-tools:/dev/nvidia-uvm-tools # Added nvidia devices here # - /dev/nvidia-modeset:/dev/nvidia-modeset # Added nvidia devices here # - /dev/nvidiactl:/dev/nvidiactl # Added nvidia devices here # - /dev/nvidia0:/dev/nvidia0 # Added nvidia devices here - /dev/dri:/dev/dri # VAAPI/NVDEC/NVENC render nodes - /dev/dri/renderD128:/dev/dri/renderD128 restart: on-failure /etc/fail2ban/filter.d/emby.conf [Definition] failregex = "http/1.1 Response 401 to ‌<HOST>" /etc/fail2ban/jail.d/emby.local [emby] enabled = true port = 8096 filter = emby logpath = /home/r3al/Desktop/Docker/Emby/logs/embyserver.txt maxretry = 3 findtime = 600 bantime = 43200 Working manual regex test sudo fail2ban-regex /home/r3al/Desktop/Docker/Emby/logs/embyserver.txt "http/1.1 Response 401 to ‌<HOST>" Manual Regex test returns Running tests ============= Use failregex line : http/1.1 Response 401 to ‌<HOST> Use log file : /home/r3al/Desktop/Docker/Emby/logs/embyserver.txt Use encoding : UTF-8 Results ======= Failregex: 14 total |- #) [# of hits] regular expression | 1) [14] http/1.1 Response 401 to ‌<HOST> `- Ignoreregex: 0 total Date template hits: |- [# of hits] date format | [339] {^LN-BEG}ExYear(?P<_sep>[-/.])Month(?P=_sep)Day(?:T| ?)24hour:Minute:Second(?:[.,]Microseconds)?(?:\s*Zone offset)? `- Lines: 474 lines, 0 ignored, 14 matched, 460 missed [processed in 0.23 sec] Other troubleshooting things sudo systemctl status fail2ban ● fail2ban.service - Fail2Ban Service Loaded: loaded (/usr/lib/systemd/system/fail2ban.service; enabled; preset: enabled) Active: active (running) since Sat 2024-08-24 21:14:29 EDT; 16min ago Docs: man:fail2ban(1) Main PID: 51845 (fail2ban-server) Tasks: 7 (limit: 18710) Memory: 20.0M (peak: 21.5M) CPU: 5.311s CGroup: /system.slice/fail2ban.service └─51845 /usr/bin/python3 /usr/bin/fail2ban-server -xf start Sudo fail2ban-client status Status |- Number of jail: 2 `- Jail list: emby, sshd sudo tail -f /home/r3al/Desktop/Docker/Emby/logs/embyserver.txt 2024-08-25 01:30:00.040 Warn Server: AUTH-ERROR: 192.168.15.202 - Access token is invalid or expired. 2024-08-25 01:30:00.040 Error Server: Access token is invalid or expired. 2024-08-25 01:30:00.040 Info Server: http/1.1 Response 401 to ‌192.168.15.202‌. Time: 3ms. GET http://‌192.168.15.201‌:8096/Users/4ab54b48711e48a7af67df8da7a587db/Items/Latest?Limit=12&ParentId=4 2024-08-25 01:35:00.122 Warn Server: AUTH-ERROR: 192.168.15.202 - Access token is invalid or expired. 2024-08-25 01:35:00.122 Error Server: Access token is invalid or expired. 2024-08-25 01:35:00.122 Info Server: http/1.1 Response 401 to ‌192.168.15.202‌. Time: 2ms. GET http://‌192.168.15.201‌:8096/Users/4ab54b48711e48a7af67df8da7a587db/Items/Latest?Limit=12&ParentId=4 2024-08-25 01:36:59.424 Info HttpClient: GET https://www.mb3admin.com/admin/service/EmbyPackages.json 2024-08-25 01:40:00.076 Warn Server: AUTH-ERROR: 192.168.15.202 - Access token is invalid or expired. 2024-08-25 01:40:00.076 Error Server: Access token is invalid or expired. 2024-08-25 01:40:00.076 Info Server: http/1.1 Response 401 to ‌192.168.15.202‌. Time: 3ms. GET http://‌192.168.15.201‌:8096/Users/4ab54b48711e48a7af67df8da7a587db/Items/Latest?Limit=12&ParentId=4 2024-08-25 01:43:48.212 Info Server: http/1.1 POST http://‌media.eternaltek.xyz‌/emby/Users/authenticatebyname?X-Emby-Client=Emby Web&X-Emby-Device-Name=Safari iOS&X-Emby-Device-Id=cdf1ca5b-4fe1-453d-a08b-22539010875d&X-Emby-Client-Version=4.9.0.29&X-Emby-Language=en-us. Source Ip: ‌172.58.127.8‌, Accept=application/json, Connection=close, Host=‌media.eternaltek.xyz‌, User-Agent=Mozilla/5.0 (iPhone; CPU iPhone OS 18_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.0 Mobile/15E148 Safari/604.1, Accept-Encoding=gzip, deflate, br, Accept-Language=en-US,en;q=0.9, Content-Type=application/x-www-form-urlencoded; charset=UTF-8, Origin=‌https://media.eternaltek.xyz:23606‌, Referer=‌https://media.eternaltek.xyz:23606/web/index.html‌, Content-Length=12, X-TLS-Cipher=TLS_AES_128_GCM_SHA256, X-TLS-Protocol=TLSv1.3, X-TLS-SNI-Host=media.eternaltek.xyz, X-Real-IP=‌172.58.127.8‌, X-Forwarded-For=‌172.58.127.8‌, X-Forwarded-Proto=https, X-Forwarded-Port=23606, X-Forwarded-Host=‌media.eternaltek.xyz‌, X-TLS-Client-Intercepted=Unknown, sec-fetch-site=same-origin, sec-fetch-mode=cors, sec-fetch-dest=empty, priority=u=3, i 2024-08-25 01:43:48.212 Error DefaultAuthenticationProvider: Invalid username or password. No user named Dfv exists 2024-08-25 01:43:48.213 Error UserManager: Error authenticating with provider Default *** Error Report *** Version: 4.9.0.29 Command line: /system/EmbyServer.dll -programdata /config -ffdetect /bin/ffdetect -ffmpeg /bin/ffmpeg -ffprobe /bin/ffprobe -restartexitcode 3 Operating system: Linux version 6.8.0-41-generic (buildd@lcy02-amd64-100) (x86_64-linux-gnu-gcc-13 (Ubuntu 13.2.0-23ubuntu4) 13.2.0, GNU ld (GNU Binutils for Ubuntu) 2. OS/Process: x64/x64 Framework: .NET 8.0.6 Runtime: system/System.Private.CoreLib.dll Processor count: 10 Data path: /config Application path: /system System.Exception: System.Exception: Invalid username or password. at Emby.Server.Implementations.Library.DefaultAuthenticationProvider.Authenticate(String username, String password, User resolvedUser) at Emby.Server.Implementations.Library.UserManager.AuthenticateWithProvider(IAuthenticationProvider provider, String username, String password, User resolvedUser, CancellationToken cancellationToken) Source: Emby.Server.Implementations TargetSite: System.Threading.Tasks.Task`1[MediaBrowser.Controller.Authentication.ProviderAuthenticationResult] Authenticate(System.String, System.String, MediaBrowser.Controller.Entities.User) 2024-08-25 01:43:48.213 Info UserManager: Authentication request for Dfv has been denied. 2024-08-25 01:43:48.214 Warn Server: AUTH-ERROR: 172.58.127.8 - Invalid username or password entered. 2024-08-25 01:43:48.214 Error Server: Invalid username or password entered. 2024-08-25 01:43:48.214 Info Server: http/1.1 Response 401 to ‌172.58.127.8‌. Time: 3ms. POST http://‌media.eternaltek.xyz‌/emby/Users/authenticatebyname?X-Emby-Client=Emby Web&X-Emby-Device-Name=Safari iOS&X-Emby-Device-Id=cdf1ca5b-4fe1-453d-a08b-22539010875d&X-Emby-Client-Version=4.9.0.29&X-Emby-Language=en-us
  3. KUNALHAZARD

    UI Issue and Metadata Help

    Trying to switch from Plex because its crappy Android ExoPlayer was giving me headaches. Now I'm dealing with some issues fine-tuning Emby and need some help: 1.How do I fix the UI when the series name is too long? The controls get tiny and annoying (pic attached). 2.How do I fetch the season title metadata like Plex does?
  4. So because of an incapable contractor, my UPS threw short circuit error, and my server was shutdown forcefully. Now after reboots, emby seems to lost its config, asking me to reconfigure configs. Any way to restore the config back? Here's the logs. Thing is, i installed emby on drive other than C (for backup purpose and avoid bloating C) so it might be little tricky. embyserver.txt
  5. I've downloaded the latest and set up the Emby Server (Docker) environment and I've been thoroughly enjoying this wonderful application so far. I was using muxed MKVs with embedded subs (PGS) and it all worked perfectly. Direct play in 4K and Software Transcoding worked fine, both displayed the embedded subs perfectly well. I'll use Oppenheimer here as an example. (Subs here are located slightly to the left of the frame, that's due to the subs included and not a fault on Emby's part.) Of course when I confirmed all worked well, I had to try out Hardware encoding for more powerful conversion and the possibility for friends and family to access my repository remotely. Now I noticed multiple "shortcomings" that came with this: - A noticable green hue (compare the two images), alltough this might the fault of wrongly transcoded DV HDR filter (doing research on that) - When using the embedded subs (preferable due to perfect audio timing), I notice that when HARDWARE trancoding specifically, the subs seem to get misplaced, seemingly in the 1920x1080 quadrant of a 4k frame... but that is indeed very strange behaviour. Both transcode logs are included, aptly named. I will add that while both are pretty big downfalls, mostly the subtitle problem is actually dealbreaking as most of my users will need subtitles. I tried to download SRT subtitles as a substitution, that resulted in the following on the Web Client: The green hue remains, but the SRT subs are correctly displayed in the Web Client, Huzzah! I test on the Windows Theather app: Nothing... And the hue persists also here. When I try to get the PGS subs to work in here after a 4k > 1080p transcode just like in web player, they seems to shift to the wrong place. Of this last two screenshots there's also a ffmpeg log included, aptly named. I will admit that I've searched on this topic for quite a bit allready and nothing seems to resolve the subtitles missing or being misplaced. Is this a known issue? Has this been seen before? Any help would be GREATLY appreciated! Regards, Nauclerus ffmpeg-transcode-hardware.txt ffmpeg-transcode-software.txt ffmpeg-transcode-hardware-STRinEmbyTheaterDesktop.txt ffmpeg-transcode-hardware-SRTinWebClient.txt
  6. sftech13

    Some Users unable to play Videos

    Hello, while visiting family, we attempted to watch a movie on a Samsung UN55CU8000FXZA TV using the 'App: Emby for Samsung 1.7.0'. However, we encountered an issue where the content continuously buffered, displaying the dreaded circle of death without actually showing any content. The movie we attempted to watch is "Ferrari (2023)" located at /media/Movies/Ferrari (2023)/Ferrari (2023) {imdb-tt3758542} [AMZN][WEBDL-2160p][HDR10Plus][EAC3 Atmos 5.1][HEVC]-FLUX.mkv Interestingly, when we tried to play the same movie through a Firestick using its native app, it played without any issues. However, attempting to play it through the Emby app on the Firestick resulted in the same buffering problem as experienced with the Samsung app. Our current setup for hosting includes: Ubuntu 20.04.2 Emby Server version: 4.8.3.0 NVIDIA GeForce GTX 1060 3GB I have attached a few logs for further analysis. It would be greatly appreciated if someone could assist in diagnosing why this issue occurs specifically for certain movies while others play without any problems. embyserver.txt ffmpeg-transcode-dd46aec8-73f1-41ce-b569-5622240bc967_1.txt
  7. Hello, I've installed Emby on my machine, my library is a bit huge (80 To), scan for Movies and Series was pretty fast but Anime scan is very very long and looks stuck to 87.4% (now 2 days just for it), I don't know why. Library is mounted on ubuntu server using sshfs with Tailscale tunnel and using the Emby 4.9.0.8 beta embyserver.txt hardware_detection-63846109564.txt
  8. i can't manage to get the intro skip feature working i did as the fouram said that i went to my tv-show library and added a marker as a scheduled task and went to scheduled tasks and scanned for intros then went to playback and made it ask to skip intro but still nothing is working
  9. So I have a Emby Premiere subscription, which in theory should allow me to stream between my TV and on my phone and so on. I'm running my server on my main gaming PC, which is a high spec AMD config. My files are all stored on my B3 Excito server running debian. In theory there should be no issue in video playback, especially since my internet is a fiber connection here in Sweden with 250MB/s down and 250MB/s up. Even though all of the things listed above, sometimes my video playback doesn't play at all, lags or freezes. I read that subtitles may be the issue, it's not something I have encountered as being an issue but idk. Furthermore, my iPhone doesn't seem to be able to reach Emby when I'm outside - even though it could before - and Emby Connect has never worked for me. Would be very thankful for any help on the matter so I can solve these issues once and for all. Could different video formats slow down the playback? I know MKV formats are challenging for some video playback softwares for example.
  10. Pretty much everything goes on no problem, but there are a couple (e.g. Bleach Thousand Year War and Tokyo Ghoul) that refuse to appear. They are organized in the same way as everything else but don't appear. Nothing unusual about them, but no matter what I do it's like emby doesn't see them. Except it should. The nfo appeared in the relevant folders, they just don't show up in the library. I've refreshed, restarted, rescanned, searched, added to other contributing folder locations, changed their file name, and nothing seems to help. The only way they will appear is if I stick them in a folder for another series under a show that is already listed. Then they pop up like a season, which is just ridiculous. I'm not sure what else to try. Help.
  11. Hi, I just bought the Emby Premiere and I want to be sure that I understood well about the limit of devices. I'm admin of server and I shared my library with 3 persons only. One of them had this message: Your account exceeded the maximum streaming limit set by your Emby Server Administrator. Please contact them for assistance. Could you please answer to me: 1. First question. To avoid this message, I should to have in settings: "Network settings" - "Max simultaneous video streams" - "unlimited". https://i.postimg.cc/hPdTqCpJ/1.png And in each "Profile user" - "Max simultaneous video streams" - "unlimited". (However, if the user watch only one movie from one device, I can leave it to 1). Is that right? https://i.postimg.cc/nzNKvN3J/2.png In "Device Access" I should left it to "All". https://i.postimg.cc/bvD4pfSX/4.png To find another explication to the message... 2. Second question : If all 3 users logged in Emby server a lot of times (let's say 10 each one), but from different devices (Web browser, cell, TV, Roku, etc. let's say taht the tried to check how it works), does it mean that I already exceed all 25 devices limit? 3*10=30... If yes, what should I do to reset the counter? Should I delet all devices from Devices menu? https://i.postimg.cc/DZ4LyBnY/3.png I'm new here on forum, sorry if I did not find the answer, but it seems that it's confusing not only for me.
  12. Matts915

    How do I complete erase a profile?

    I installed Emby Server, gave it access to my media files, and then attempted to play some videos on my television that were stored on my Synology NAS. I noticed that on the server, scanning the library just sort of hung at like 80% and never finished. Also, when I add a new folder it doesn't show up in the Library. The videos that I tried to play on my television wouldn't play, I got this spinning blue circle. I attached a couple server logs....I'm in a complete morass though, I have no idea if these are even the right ones. I just want to delete everything and start over. But when I uninstall Emby and then reinstall it on my Synology the user profile with all the data is still there. How do I get rid of everything, user profile, library, etc. I want it to be like a fully fresh install. embyserver-63829629707.txt embyserver.txt
  13. Hello - I'm an intermediate user you could say - and I installed emby onto my main server a hp proliant running debian 12. install took maybe 15 seconds. before install i looked up what ports needed to be opened, and opened up 8096 (default) and a temp alt port just in case to avoid any frustration. and reloaded firewall. installed emby. went to browser and tried to open localhost:8096 and "Unable to connect: can't establish blah blah..." I tried connecting with 127.0.0.1, and my LAN IP addresses, and my external IP addresses. Nothing will connect. I chose to install the BETA version, so I decided perhaps beta was more beta than i wanted. So I reinstalled doing a rollback to the stable version. Same problem. Triple checked my firewall. Dunno what it's problem is. Even rebooted entire server. No change. I know I'm retarded, but this is getting to me. And with the week I've had I can't take any more of fixing other people's mistakes. I just wanted to relax and watch movies and unplug my brain. So, if anyone knows what I'm missing or doing wrong, I'd be obliged if you could please offer any assistance. Thank you.
  14. fistfullofbeans

    Transcoding with emby

    I was trying to get transcoding working on my emby server and it seems like there is lacking info on how to do it or I could just be a dumbass, but I have been following this (https://emby.media/support/articles/Hardware-Acceleration-Overview.html) and I got the .m files but at this point, I don't know what to do with them to enable the hardware acceleration if anyone has a windows guide or can help me that would be cool. the only things I can find are for docker and other programs.
  15. Hi, (Using Emby Premiere) Im struggling to play UHD titles with PGS graphics because my Emby server appears to be struggling with transcoding. This surprises me at many levels because 1) I have an NVidia Quadro card 2) I have a Dual XEON CPU 16 core proc server with 96GB ram DEDICATED to playing 1 STREAM. Not 100 streams. 1 Stream Whenever I enable subtitles, its GAME OVER. Stuttering occurs every 15 seconds for 15 seconds. Its not even minimal stuttering. User Experience is deplorable. When I looked into the log file, I noticed a couple of seemingly important messages which leave me bewildered. I was hoping someone could help out. Message #1: Warning: Hardware-accelerated subtitle-overlay is disabled due to diagnostic option Message #2: Checking: 'NVDEC Quadro M2000 - H.265 (HEVC)'. NoMatch Bitrate (65 Mbit/s) exceeds maximum supported rate (59 Mbit/s) Decoder does not match. (Then proceeds to use software decoder) What HW and/or SW config changes are needed to get a single stream to play correctly I have enclosed the relevant log snippet for detail / context Thanks in advance. emby_log.txt
  16. brezzz

    Auto Convert Settings

    Hi I have been trying to figure this out for a while now, with no luck. I wanted to set my folders to auto convert to AAC audio, which I have been able to do. However, for compatibility reasons, I need AAC in stereo (2.0) rather than the default which is 5.1. Is there any way to achieve this using the auto convert feature? Thanks in advance Brezzz
  17. Please bear with me as im not very tech savvy. I have an emby server that about once a day becomes unresponsive. The Home Screen loads the library’s and that’s it.. it wont show the home screen content. Sometimes it takes 20-40 min to become responsive again. I noticed the RAM is VERY bloated at that time. I will upload the logs. Hoping ANYONE can assist. Emby Log 2.pdf Emby Log 1.pdf
  18. I want to add a genre to all the movies, I'm doing it manually, but it's very tiring, is it possible to add it all at once? for all movies I want to put a genre that is ALL movies, to add them there, but it is a long time for all manually, thanks
  19. Hi guys, I noticed on my main dashboard that my remote access link includes a port at the end when in reality that is not needed. When I went to the network tab and tried to remove the external port, it indicated it was a mandatory field. Issue is when I click the link above for Remote Access (WAN), I get a: ERR_SSL_PROTOCOL_ERROR Ideally my Remote (WAN) access link should be: http://emby.myaddress.myds.me (no port) Does anyone know how to fix this or if its fixable? Thanks!
  20. I'm running Emby using your Docker container on a host that is separate from my NAS. I've had several times now where my home has lost power and I will absent-mindedly start my Emby container before my NAS has fully booted. This results in Emby thinking there is no longer any media, therefore all the metadata and images for all of my libraries get erased. Then, when the NAS gets powered back on, and I restart Emby, it now has to rebuild every library. I have 46TB of movies and tv shows -- rebuilding the database can take over a day. Not only that, it resets the "Date Added" value for everything, so now everything's "Date Added" value is right now, which is obviously unintended. Is there a setting that exists or can be added to prevent Emby from clearing out a library in the event that a library has gone offline?
  21. I've been running Emby with GPU transcoding for multiple years now but if i try to update past version 4.7.6.0 (Linuxserver docker) the container won't even finish the configuration but i can't come here and ask for help with someone elses container so i've been trying to resolve my issues with the official Emby/Embyserver container and i'm hoping for some help The container start fine but nvidia-smi is not found in the shell and the logs are showing: ffdetect_nvencdec Process exited with code 1 nCannot load libcuda.so.1\nError loading CUDA functions\n\n","Result":{ Configuration": "--cc=x86_64-emby-linux-gnu-gcc ...... }, "Error": { "Number": -1, "Message": "Operation not permitted" }, "Log": [ { "Level": 16, "Category": 0, "Message": "Cannot load libcuda.so.1" }, { "Level": 16, "Category": 0, "Message": "Error loading CUDA functions" And clicking advanced under hardware acceleration gives no options Host is Arch Linux 6.1.3-arch1-1, I've been trying to see if this works every few months so it has been tried with older kernels through those months. Emby premiere is enabled Gpu is a quadro p620p NVIDIA-SMI 525.78.01 Driver Version: 525.78.01 CUDA Version: 12.0 docker 1:20.10.22-1 (latest) libnvidia-container 1.5.1-1 libnvidia-container-tools 1.5.1-1 nvidia-container-runtime 3.5.0-2 nvidia-container-toolkit 1.5.1-1 I've previously used the official Emby container without issues but i have never before tried it with hardware encoding For the purpose of finding the issue i've been testing on a fresh install of the official Emby/Embyserver container from hub.docker with premium enabled I've tried other media servers to see if hardware encoding works there and it does I've tried to go backwards with the official Emby docker container but can't seem to find an older version that work with hardware acceleration I've tried to roll back my drivers to an older version with no luck nvidia-smi is not found when run from the containers shell I've seen an issue or two here that resemble mine but they either don't come to a conclusion, Have a different cuda errror or and have not attempted running other containers that requre GPU acceleration, Which works flawlessly for me docker-compose: embytest: image: emby/embyserver:latest hostname: embytest.docker container_name: embytest restart: always networks: - frontend # ports: # - 9096:9096 # - 9920:9920 mem_limit: 4g runtime: nvidia devices: - /dev/dri:/dev/dri deploy: resources: reservations: devices: - capabilities: [gpu] environment: - UID=${PUID} - GID=${PGID} - GIDLIST=985,989 - NVIDIA_VISIBLE_DEVICES=all volumes: - ${DOCKER_HOME}/embytest:/config - media:/mnt/media dns: - 1.1.1.1 - 1.0.0.1 How i configured my host to enable the nvidia-container-runtime Blacklisted nouveau added the kernel parameter (systemd.unified_cgroup_hierarchy=false) edited /etc/nvidia-container-runtime/config.toml (no-cgroups = false) rebuild the boot image added: /etc/docker/daemon.json with: rebooted { "runtimes": { "nvidia": { "path": "/usr/bin/nvidia-container-runtime", "runtimeArgs": [] } } } installed the latest good nvidia driver that works with the nvidia patch patched nvidia rebooted gpu acceleration with the linuxserver docker would not work without this added to docker-compose: deploy: resources: reservations: devices: - capabilities: [gpu] hardware_detection-63808684426.txt embyserver(2).txt
  22. Emby is running on windows For starters I have recently moved to a new location after having my emby server accessible via its domain for a month or so. I can access emby remotely with my WAN IP along with my HTTP port number (HTTPS port isnt working). Im using cloud flare as for my SSL and DNS provider. when I attempt to connect using my domain I get a Error 522 (cloud flare cant connect to my server) I have updated my WAN IP to the one ive been assigned by my ISP. Tried changing the ports being forwarded (80,443,8920,8096) I have rebooted my computer and emby multiple times and updated my DNS A name a few times as well. AName: emby|MyWanIP (Domain is being proxied by cloud flare) Any tips on how to narrow down what is causing my issue? Could it be that my ISP is blocking the ports im using or is it cloud flare?
  23. AwesomeVk47

    Subtitle not shoing up

    So I created a folder placed a mkv file there....and placed the subtitle file in the same folder with the name: but it just wont show up in the subtitle menu. The name of subtitle file is same as movie file any help will be appreciated embyserver.txt
  24. Good evening, unfortunately I ran into a problem when trying to play certain episodes on my android devices (Tab S7plus and LG Vevlvet). When playing this exact series every episode has a black screen but I can hear the audio track. I can't replicate the same problem with other series or movies. However it happens with both my mobile android devices (which is a bummer because those are my main way of consuming content). The same episode works flawless on the webui or if I enable an external media player on android. I have attached the Log File from the webui. I hope that's the right one. Now I can't really say if this is a server side problem (in my case a Synology NAS) or if this a android app problem. Any help would be very much appreciated. Best regards, ralothar embyserver.txt
  25. I am wondering what is the use of this people slot for each artists, as why would one add a composer or writer directly under an artist's metadata but not within the song's one. Also, I tried to add a person by typing his name but the dialog just closes after I push the Enter button, and nothing shows up under people. Any help is appreciated, thanks!
×
×
  • Create New...