Using jellyfin-ffmpeg with nightly docker image? #900

Closed
opened 2026-02-06 20:14:36 +03:00 by OVERLORD · 21 comments
Owner

Originally created by @retrostrobe on GitHub (Sep 10, 2019).

Hi all,
Is there a trick to use the latest version of ffmpeg from jellyfin-ffmpeg? When I pull the nightly using docker, the version that I get is 3.2. I'm running OMV on a RbPi3. Cheers.

[21:24:12] [INF] FFmpeg validation: Found ffmpeg version 3.2
[21:24:12] [WRN] FFmpeg validation: The minimum recommended ffmpeg version is 4.0
[21:24:12] [WRN] FFmpeg: Custom: Failed version check: /usr/bin/ffmpeg
Originally created by @retrostrobe on GitHub (Sep 10, 2019). Hi all, Is there a trick to use the latest version of ffmpeg from jellyfin-ffmpeg? When I pull the nightly using docker, the version that I get is 3.2. I'm running OMV on a RbPi3. Cheers. ``` [21:24:12] [INF] FFmpeg validation: Found ffmpeg version 3.2 [21:24:12] [WRN] FFmpeg validation: The minimum recommended ffmpeg version is 4.0 [21:24:12] [WRN] FFmpeg: Custom: Failed version check: /usr/bin/ffmpeg ```
OVERLORD added the stalesupport labels 2026-02-06 20:14:36 +03:00
Author
Owner

@anthonylavado commented on GitHub (Sep 17, 2019):

@joshuaboniface Any thoughts?

@anthonylavado commented on GitHub (Sep 17, 2019): @joshuaboniface Any thoughts?
Author
Owner

@JustAMan commented on GitHub (Oct 10, 2019):

paging @nvllsvm

@retrostrobe how do you grab and launch your container?

@JustAMan commented on GitHub (Oct 10, 2019): paging @nvllsvm @retrostrobe how do you grab and launch your container?
Author
Owner

@andrewrabert commented on GitHub (Oct 10, 2019):

@retrostrobe Are you running on ARM? jellyfin-ffmpeg is currently only available on x86_64.

Output from an x86_64 machine:

$ docker pull jellyfin/jellyfin:nightly
nightly: Pulling from jellyfin/jellyfin
8f91359f1fff: Already exists
46d5326a5f0b: Already exists
bbf7ed56c6a9: Already exists
132605438d97: Already exists
905cb39e802b: Already exists
d39e3ce5ea21: Pull complete
99e0ab833a19: Pull complete
0d0cc5078ea2: Pull complete
Digest: sha256:8c33cfeb56057b1111e1bfecc2e461cc61e2fd5bc4ee805cd84cc8794d2bd8ca
Status: Downloaded newer image for jellyfin/jellyfin:nightly
docker.io/jellyfin/jellyfin:nightly
$ docker run jellyfin/jellyfin:nightly
[13:43:22] [INF] Jellyfin version: 10.4.0
[13:43:22] [INF] Arguments: ["/jellyfin/jellyfin.dll", "--datadir", "/config", "--cachedir", "/cache", "--ffmpeg", "/usr/local/bin/ffmpeg"]
[13:43:22] [INF] Operating system: Linux
[13:43:22] [INF] Architecture: X64
[13:43:22] [INF] 64-Bit Process: True
[13:43:22] [INF] User Interactive: True
[13:43:22] [INF] Processor count: 8
[13:43:22] [INF] Program data path: /config
[13:43:22] [INF] Web resources path: /jellyfin/jellyfin-web
[13:43:22] [INF] Application directory: /jellyfin/
[13:43:22] [INF] Setting cache path to /cache
[13:43:22] [INF] Loading assemblies
[13:43:23] [INF] Saving system configuration
[13:43:23] [INF] Setting cache path to /cache
[13:43:23] [INF] Kestrel listening on all interfaces
[13:43:23] [INF] Running startup tasks
[13:43:23] [INF] Daily trigger for Chapter image extraction set to fire at 10/11/2019 02:00, which is 12:16:36.1511603 from now.
[13:43:23] [INF] Found ffmpeg version 4.2.1
[13:43:23] [INF] Available decoders: ["h264", "h264_cuvid", "hevc", "hevc_cuvid", "mpeg2video", "aac", "ac3", "mp3"]
[13:43:23] [INF] Available encoders: ["libx264", "h264_nvenc", "h264_v4l2m2m", "h264_vaapi", "libx265", "hevc_nvenc", "hevc_vaapi", "mpeg4", "msmpeg4", "libvpx", "libvpx-vp9", "aac", "ac3", "libmp3lame", "libopus", "libvorbis", "srt"]
[13:43:23] [INF] FFmpeg: SetByArgument: /usr/local/bin/ffmpeg
[13:43:23] [INF] ServerId: d0b62b18f1fb464fb4d9a5dbdee1f9ec
[13:43:24] [INF] Executed all pre-startup entry points in 0:00:00.1878598
[13:43:24] [INF] Core startup complete
[13:43:24] [INF] Executed all post-startup entry points in 0:00:00.255697
[13:43:24] [INF] Startup complete 0:00:02.0549215
[13:43:24] [INF] Registering publisher for urn:schemas-upnp-org:device:MediaServer:1 on 172.17.0.2
@andrewrabert commented on GitHub (Oct 10, 2019): @retrostrobe Are you running on ARM? jellyfin-ffmpeg is currently only available on x86_64. Output from an x86_64 machine: ``` $ docker pull jellyfin/jellyfin:nightly nightly: Pulling from jellyfin/jellyfin 8f91359f1fff: Already exists 46d5326a5f0b: Already exists bbf7ed56c6a9: Already exists 132605438d97: Already exists 905cb39e802b: Already exists d39e3ce5ea21: Pull complete 99e0ab833a19: Pull complete 0d0cc5078ea2: Pull complete Digest: sha256:8c33cfeb56057b1111e1bfecc2e461cc61e2fd5bc4ee805cd84cc8794d2bd8ca Status: Downloaded newer image for jellyfin/jellyfin:nightly docker.io/jellyfin/jellyfin:nightly $ docker run jellyfin/jellyfin:nightly [13:43:22] [INF] Jellyfin version: 10.4.0 [13:43:22] [INF] Arguments: ["/jellyfin/jellyfin.dll", "--datadir", "/config", "--cachedir", "/cache", "--ffmpeg", "/usr/local/bin/ffmpeg"] [13:43:22] [INF] Operating system: Linux [13:43:22] [INF] Architecture: X64 [13:43:22] [INF] 64-Bit Process: True [13:43:22] [INF] User Interactive: True [13:43:22] [INF] Processor count: 8 [13:43:22] [INF] Program data path: /config [13:43:22] [INF] Web resources path: /jellyfin/jellyfin-web [13:43:22] [INF] Application directory: /jellyfin/ [13:43:22] [INF] Setting cache path to /cache [13:43:22] [INF] Loading assemblies [13:43:23] [INF] Saving system configuration [13:43:23] [INF] Setting cache path to /cache [13:43:23] [INF] Kestrel listening on all interfaces [13:43:23] [INF] Running startup tasks [13:43:23] [INF] Daily trigger for Chapter image extraction set to fire at 10/11/2019 02:00, which is 12:16:36.1511603 from now. [13:43:23] [INF] Found ffmpeg version 4.2.1 [13:43:23] [INF] Available decoders: ["h264", "h264_cuvid", "hevc", "hevc_cuvid", "mpeg2video", "aac", "ac3", "mp3"] [13:43:23] [INF] Available encoders: ["libx264", "h264_nvenc", "h264_v4l2m2m", "h264_vaapi", "libx265", "hevc_nvenc", "hevc_vaapi", "mpeg4", "msmpeg4", "libvpx", "libvpx-vp9", "aac", "ac3", "libmp3lame", "libopus", "libvorbis", "srt"] [13:43:23] [INF] FFmpeg: SetByArgument: /usr/local/bin/ffmpeg [13:43:23] [INF] ServerId: d0b62b18f1fb464fb4d9a5dbdee1f9ec [13:43:24] [INF] Executed all pre-startup entry points in 0:00:00.1878598 [13:43:24] [INF] Core startup complete [13:43:24] [INF] Executed all post-startup entry points in 0:00:00.255697 [13:43:24] [INF] Startup complete 0:00:02.0549215 [13:43:24] [INF] Registering publisher for urn:schemas-upnp-org:device:MediaServer:1 on 172.17.0.2 ```
Author
Owner

@retrostrobe commented on GitHub (Oct 12, 2019):

@nvllsvm Yes, I'm on ARM (RbPi3) and using OMV where I've used their Docker plugin.

I've installed jellyfin-ffmpeg outside of Docker (downloaded the Debian version from the repository). Trying to find ways to add those binaries into the container, or somehow 'link' to them. Being new to Docker, it's a bit of a trial and error.

@retrostrobe commented on GitHub (Oct 12, 2019): @nvllsvm Yes, I'm on ARM (RbPi3) and using OMV where I've used their Docker plugin. I've installed jellyfin-ffmpeg outside of Docker (downloaded the Debian version from the repository). Trying to find ways to add those binaries into the container, or somehow 'link' to them. Being new to Docker, it's a bit of a trial and error.
Author
Owner

@retrostrobe commented on GitHub (Oct 12, 2019):

I've solved this temporarily by opening up a shell session within the container, installed jellyfin-ffmpeg, and restarted. Running 4.2.1 without any issues. I know that I have to repeat this process every time I pull a new image – I'll keep on looking for a more permanent solution.

@retrostrobe commented on GitHub (Oct 12, 2019): I've solved this temporarily by opening up a shell session within the container, installed jellyfin-ffmpeg, and restarted. Running 4.2.1 without any issues. I know that I have to repeat this process every time I pull a new image – I'll keep on looking for a more permanent solution.
Author
Owner

@cowbe0x004 commented on GitHub (Oct 25, 2019):

I've solved this temporarily by opening up a shell session within the container, installed jellyfin-ffmpeg, and restarted. Running 4.2.1 without any issues. I know that I have to repeat this process every time I pull a new image – I'll keep on looking for a more permanent solution.

How did you install jellyfin-ffmpeg inside the container? It's giving me some dependency errors but I can't install those dependencies because they are not available.

@cowbe0x004 commented on GitHub (Oct 25, 2019): > > > I've solved this temporarily by opening up a shell session within the container, installed jellyfin-ffmpeg, and restarted. Running 4.2.1 without any issues. I know that I have to repeat this process every time I pull a new image – I'll keep on looking for a more permanent solution. How did you install jellyfin-ffmpeg inside the container? It's giving me some dependency errors but I can't install those dependencies because they are not available.
Author
Owner

@retrostrobe commented on GitHub (Oct 25, 2019):

@cowbe0x004 – I got those errors too. I think I fixed the dependency issue with apt-get install ffmpeg and possibly (can't remember) an installation of a static build of ffmpeg 4.x. Once that was working, jellyfin-ffmpeg installed without issues.

Also, the jellyfin-ffmpeg installed the binaries to /usr/lib/jellyfin-ffmpeg – had to copy them back to /usr/bin/

Let me know how it goes.

@retrostrobe commented on GitHub (Oct 25, 2019): @cowbe0x004 – I got those errors too. I think I fixed the dependency issue with `apt-get install ffmpeg` and possibly (can't remember) an installation of a [static build](https://www.johnvansickle.com/ffmpeg) of ffmpeg 4.x. Once that was working, jellyfin-ffmpeg installed without issues. Also, the jellyfin-ffmpeg installed the binaries to `/usr/lib/jellyfin-ffmpeg` – had to copy them back to `/usr/bin/` Let me know how it goes.
Author
Owner

@cowbe0x004 commented on GitHub (Oct 25, 2019):

@retrostrobe thank you. I didn't realize the docker image has different os so I was installing the wrong package. jellyfin-ffmpeg installed without complaining about dependency.

@cowbe0x004 commented on GitHub (Oct 25, 2019): @retrostrobe thank you. I didn't realize the docker image has different os so I was installing the wrong package. jellyfin-ffmpeg installed without complaining about dependency.
Author
Owner

@JustAMan commented on GitHub (Oct 25, 2019):

@nvllsvm maybe we should just install jellyfin-ffmpeg package from our repos when building Docker for jellyfin instead of using a Docker build of ffmpeg?

@JustAMan commented on GitHub (Oct 25, 2019): @nvllsvm maybe we should just install `jellyfin-ffmpeg` package from our repos when building Docker for `jellyfin` instead of using a Docker build of `ffmpeg`?
Author
Owner

@jannislehmann commented on GitHub (Nov 8, 2019):

I just tried this as well.
Using the jellyfin-ffmpeg on a raspberry pi 4 works. The docker bundled version does not.
Is there a newer issue to handle this, or could this issue be re-opened?

@jannislehmann commented on GitHub (Nov 8, 2019): I just tried this as well. Using the jellyfin-ffmpeg on a raspberry pi 4 works. The docker bundled version does not. Is there a newer issue to handle this, or could this issue be re-opened?
Author
Owner

@JustAMan commented on GitHub (Nov 11, 2019):

I've re-opened this one.

@JustAMan commented on GitHub (Nov 11, 2019): I've re-opened this one.
Author
Owner

@travisboss commented on GitHub (Dec 8, 2019):

Having same issue on a RPI 4 now. No fix seems to work.

@travisboss commented on GitHub (Dec 8, 2019): Having same issue on a RPI 4 now. No fix seems to work.
Author
Owner

@travisboss commented on GitHub (Dec 10, 2019):

Attaching transcode log. I was able to get jellyfin-ffmpeg install inside the docker but still cannot play anything that needs any sort of transcoding on a RPI4 using OMV.

Here is the logs: https://pastebin.com/XnBiux3T

@travisboss commented on GitHub (Dec 10, 2019): Attaching transcode log. I was able to get jellyfin-ffmpeg install inside the docker but still cannot play anything that needs any sort of transcoding on a RPI4 using OMV. Here is the logs: https://pastebin.com/XnBiux3T
Author
Owner

@jannislehmann commented on GitHub (Dec 10, 2019):

@travisboss the log still says something about ffmpeg 3.*, which means that you are not using jellyfin-ffmpeg but the pre-installed one.

@jannislehmann commented on GitHub (Dec 10, 2019): @travisboss the log still says something about ffmpeg 3.*, which means that you are not using jellyfin-ffmpeg but the pre-installed one.
Author
Owner

@retrostrobe commented on GitHub (Dec 10, 2019):

By default, jellyfin-ffmpeg installs to /usr/lib/ – make sure you copy the binaries to /usr/bin/ as per my original comment: https://github.com/jellyfin/jellyfin/issues/1730#issuecomment-546161109

@retrostrobe commented on GitHub (Dec 10, 2019): By default, jellyfin-ffmpeg installs to `/usr/lib/` – make sure you copy the binaries to `/usr/bin/` as per my original comment: https://github.com/jellyfin/jellyfin/issues/1730#issuecomment-546161109
Author
Owner

@travisboss commented on GitHub (Dec 10, 2019):

@Cludch @retrostrobe I cp -r the jellyfin-ffmpeg/ to /usr/bin should I just copy the entire folder jellyfin-ffmpeg and switch to that folder in jellyfin?

[2019-12-10 07:47:34.378 -06:00] [ERR] Error processing request: "A task was canceled." [2019-12-10 07:48:34.913 -06:00] [INF] Attempting to update encoder path to "/usr/bin/jellyfin-ffmpeg". pathType: "Custom" [2019-12-10 07:48:34.932 -06:00] [ERR] FFmpeg validation: The process returned no result [2019-12-10 07:48:34.934 -06:00] [WRN] FFmpeg: Custom: Failed version check: "/usr/bin/jellyfin-ffmpeg/ffmpeg" [2019-12-10 07:48:34.957 -06:00] [INF] FFmpeg: Custom: "/usr/bin/jellyfin-ffmpeg/ffmpeg"

This seems to happen when I change to the jellyfin-ffmpeg folder.

@travisboss commented on GitHub (Dec 10, 2019): @Cludch @retrostrobe I cp -r the jellyfin-ffmpeg/ to /usr/bin should I just copy the entire folder jellyfin-ffmpeg and switch to that folder in jellyfin? `[2019-12-10 07:47:34.378 -06:00] [ERR] Error processing request: "A task was canceled." [2019-12-10 07:48:34.913 -06:00] [INF] Attempting to update encoder path to "/usr/bin/jellyfin-ffmpeg". pathType: "Custom" [2019-12-10 07:48:34.932 -06:00] [ERR] FFmpeg validation: The process returned no result [2019-12-10 07:48:34.934 -06:00] [WRN] FFmpeg: Custom: Failed version check: "/usr/bin/jellyfin-ffmpeg/ffmpeg" [2019-12-10 07:48:34.957 -06:00] [INF] FFmpeg: Custom: "/usr/bin/jellyfin-ffmpeg/ffmpeg"` This seems to happen when I change to the jellyfin-ffmpeg folder.
Author
Owner

@jannislehmann commented on GitHub (Dec 10, 2019):

Just reference the new binary within the jellyfin web interface.

@jannislehmann commented on GitHub (Dec 10, 2019): Just reference the new binary within the jellyfin web interface.
Author
Owner

@travisboss commented on GitHub (Dec 10, 2019):

@Cludch Thanks, I did that and get this result in my logs it seems to not be able to verify the version of ffmpeg?

2019-12-10 08:16:59.257 -06:00] [INF] The following parameters also exist to filter the results:
[2019-12-10 08:16:59.258 -06:00] [INF] filter=movies,tvshows,music,musicvideos,boxsets
[2019-12-10 08:16:59.258 -06:00] [INF] Results will be included by default and only filtered if added to the filter query...
[2019-12-10 08:16:59.259 -06:00] [INF] the filter query must be lowercase in both the name and the items...
[2019-12-10 08:17:01.256 -06:00] [INF] Kestrel listening on all interfaces
[2019-12-10 08:17:01.426 -06:00] [INF] Running startup tasks
[2019-12-10 08:17:01.429 -06:00] [INF] Retention Task Scheduled!
[2019-12-10 08:17:01.482 -06:00] [INF] Daily trigger for "Remove Old Sync Data" set to fire at 12/11/2019 00:01, which is 15:43:58.5180371 from now.
[2019-12-10 08:17:01.487 -06:00] [INF] Daily trigger for "Chapter image extraction" set to fire at 12/11/2019 02:00, which is 17:42:58.5128543 from now.
[2019-12-10 08:17:01.571 -06:00] [ERR] FFmpeg validation: The process returned no result
[2019-12-10 08:17:01.572 -06:00] [WRN] FFmpeg: Custom: Failed version check: "/usr/lib/jellyfin-ffmpeg/ffmpeg"
[2019-12-10 08:17:01.604 -06:00] [INF] FFmpeg: Custom: "/usr/lib/jellyfin-ffmpeg/ffmpeg"
[2019-12-10 08:17:01.608 -06:00] [INF] ServerId: "2a2a142e2a1e4928b92a30583dc77a1a"
[2019-12-10 08:17:02.227 -06:00] [INF] Executed all pre-startup entry points in 0:00:00.5873039
[2019-12-10 08:17:02.228 -06:00] [INF] Core startup complete
@travisboss commented on GitHub (Dec 10, 2019): @Cludch Thanks, I did that and get this result in my logs it seems to not be able to verify the version of ffmpeg? ``` 2019-12-10 08:16:59.257 -06:00] [INF] The following parameters also exist to filter the results: [2019-12-10 08:16:59.258 -06:00] [INF] filter=movies,tvshows,music,musicvideos,boxsets [2019-12-10 08:16:59.258 -06:00] [INF] Results will be included by default and only filtered if added to the filter query... [2019-12-10 08:16:59.259 -06:00] [INF] the filter query must be lowercase in both the name and the items... [2019-12-10 08:17:01.256 -06:00] [INF] Kestrel listening on all interfaces [2019-12-10 08:17:01.426 -06:00] [INF] Running startup tasks [2019-12-10 08:17:01.429 -06:00] [INF] Retention Task Scheduled! [2019-12-10 08:17:01.482 -06:00] [INF] Daily trigger for "Remove Old Sync Data" set to fire at 12/11/2019 00:01, which is 15:43:58.5180371 from now. [2019-12-10 08:17:01.487 -06:00] [INF] Daily trigger for "Chapter image extraction" set to fire at 12/11/2019 02:00, which is 17:42:58.5128543 from now. [2019-12-10 08:17:01.571 -06:00] [ERR] FFmpeg validation: The process returned no result [2019-12-10 08:17:01.572 -06:00] [WRN] FFmpeg: Custom: Failed version check: "/usr/lib/jellyfin-ffmpeg/ffmpeg" [2019-12-10 08:17:01.604 -06:00] [INF] FFmpeg: Custom: "/usr/lib/jellyfin-ffmpeg/ffmpeg" [2019-12-10 08:17:01.608 -06:00] [INF] ServerId: "2a2a142e2a1e4928b92a30583dc77a1a" [2019-12-10 08:17:02.227 -06:00] [INF] Executed all pre-startup entry points in 0:00:00.5873039 [2019-12-10 08:17:02.228 -06:00] [INF] Core startup complete ```
Author
Owner

@jannislehmann commented on GitHub (Dec 10, 2019):

I have no test system as of right now.
Could you run /usr/lib/jellyfin-ffmpeg/ffmpeg -version inside the container?

@jannislehmann commented on GitHub (Dec 10, 2019): I have no test system as of right now. Could you run `/usr/lib/jellyfin-ffmpeg/ffmpeg -version` inside the container?
Author
Owner

@travisboss commented on GitHub (Dec 18, 2019):

ffmpeg version 4.2.1 Copyright (c) 2000-2019 the FFmpeg developers
built with gcc 7 (Ubuntu/Linaro 7.4.0-1ubuntu1~18.04.1)
configuration: --toolchain=hardened --prefix=/usr --target-os=linux --enable-cross-compile --extra-cflags=--static --enable-gpl --enable-static --disable-doc --disable-ffplay --disable-shared --disable-libxcb --disable-sdl2 --disable-xlib --enable-libfontconfig --enable-fontconfig --enable-gmp --enable-gnutls --enable-libass --enable-libbluray --enable-libdrm --enable-libfreetype --enable-libfribidi --enable-libmp3lame --enable-libopus --enable-libtheora --enable-libvorbis --enable-libwebp --enable-libx264 --enable-libx265 --enable-libzvbi --enable-omx --enable-omx-rpi --enable-version3 --enable-vaapi --enable-vdpau --enable-mmal --enable-cross-compile --cross-prefix=/usr/bin/arm-linux-gnueabihf- --arch=armhf
libavutil      56. 31.100 / 56. 31.100
libavcodec     58. 54.100 / 58. 54.100
libavformat    58. 29.100 / 58. 29.100
libavdevice    58.  8.100 / 58.  8.100
libavfilter     7. 57.100 /  7. 57.100
libswscale      5.  5.100 /  5.  5.100
libswresample   3.  5.100 /  3.  5.100
libpostproc    55.  5.100 / 55.  5.100
@travisboss commented on GitHub (Dec 18, 2019): ``` ffmpeg version 4.2.1 Copyright (c) 2000-2019 the FFmpeg developers built with gcc 7 (Ubuntu/Linaro 7.4.0-1ubuntu1~18.04.1) configuration: --toolchain=hardened --prefix=/usr --target-os=linux --enable-cross-compile --extra-cflags=--static --enable-gpl --enable-static --disable-doc --disable-ffplay --disable-shared --disable-libxcb --disable-sdl2 --disable-xlib --enable-libfontconfig --enable-fontconfig --enable-gmp --enable-gnutls --enable-libass --enable-libbluray --enable-libdrm --enable-libfreetype --enable-libfribidi --enable-libmp3lame --enable-libopus --enable-libtheora --enable-libvorbis --enable-libwebp --enable-libx264 --enable-libx265 --enable-libzvbi --enable-omx --enable-omx-rpi --enable-version3 --enable-vaapi --enable-vdpau --enable-mmal --enable-cross-compile --cross-prefix=/usr/bin/arm-linux-gnueabihf- --arch=armhf libavutil 56. 31.100 / 56. 31.100 libavcodec 58. 54.100 / 58. 54.100 libavformat 58. 29.100 / 58. 29.100 libavdevice 58. 8.100 / 58. 8.100 libavfilter 7. 57.100 / 7. 57.100 libswscale 5. 5.100 / 5. 5.100 libswresample 3. 5.100 / 3. 5.100 libpostproc 55. 5.100 / 55. 5.100 ```
Author
Owner

@stale[bot] commented on GitHub (Apr 16, 2020):

This issue has gone 120 days without comment. To avoid abandoned issues, it will be closed in 21 days if there are no new comments.
If you're the original submitter of this issue, please comment confirming if this issue still affects you in the latest release or nightlies, or close the issue if it has been fixed. If you're another user also affected by this bug, please comment confirming so. Either action will remove the stale label.
This bot exists to prevent issues from becoming stale and forgotten. Jellyfin is always moving forward, and bugs are often fixed as side effects of other changes. We therefore ask that bug report authors remain vigilant about their issues to ensure they are closed if fixed, or re-confirmed - perhaps with fresh logs or reproduction examples - regularly. If you have any questions you can reach us on Matrix or Social Media.

@stale[bot] commented on GitHub (Apr 16, 2020): This issue has gone 120 days without comment. To avoid abandoned issues, it will be closed in 21 days if there are no new comments. If you're the original submitter of this issue, please comment confirming if this issue still affects you in the latest release or nightlies, or close the issue if it has been fixed. If you're another user also affected by this bug, please comment confirming so. Either action will remove the stale label. This bot exists to prevent issues from becoming stale and forgotten. Jellyfin is always moving forward, and bugs are often fixed as side effects of other changes. We therefore ask that bug report authors remain vigilant about their issues to ensure they are closed if fixed, or re-confirmed - perhaps with fresh logs or reproduction examples - regularly. If you have any questions you can reach us on [Matrix or Social Media](https://docs.jellyfin.org/general/getting-help.html).
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/jellyfin#900