Jellyfin Troubleshooting

  • Arimil
    I think your issue is more likely related to a spotty wifi connection.
  • Also Jellyfin will cache transcoding jobs, so if you saw it transcode the video on the first machine, it wouldn't do that again if you streamed the same video on another.
  • Gersha/Dahlnor
    I'm on an ethernet connection. But yeah when I play something with my gpu, i can see the play method is transcoding. but when i play the same on my laptop te play method is direct playing. How can i force it to transcode?
  • Arimil
    In reply to
    Gersha/Dahlnor

  • I'm on an ethernet connection. But yeah when I play something with my gpu, i can see the play method is transcoding. but when i play the same on my laptop te play method is direct playing. How can i force it to transcode?
  • Simply select a video quality option that is not auto.
  • Gersha/Dahlnor
    Changed to 1080p - 20 mbps and it's still direct
  • Okay i changed to 480p 1.5 mbps and it started transcoding, no stuttering! thanks a million
    J
    Arimil
    !
  • mog
    is there a workaround to the port 5000 error thats happening ? https://github.com/dotnet/core/issues/948 after upgrading to 10.9 it wont start because 5000 is currently being used by my docker daemon. is there a way i can configure dotnet to use a diff port?
  • * is there a workaround to the port 5000 error thats happening ? https://github.com/dotnet/core/issues/948 after upgrading to 10.9 it wont start because 5000 is currently being used by my docker daemon. is there a way i can configure dotnet to use a diff port?
  • Drake Lazarus
    I just got a prompt to update my Jellyfin Media Player to the latest version, but when I do so the home page is blank. No Movies, TV, nothing. Is this a known issue? Favourites tab still works.
  • Izzie
    In reply to
    Drake Lazarus

  • I just got a prompt to update my Jellyfin Media Player to the latest version, but when I do so the home page is blank. No Movies, TV, nothing. Is this a known issue? Favourites tab still works.
  • Need to upgrade your Jellyfin server to the latest version
  • Drake Lazarus
    Ah okay, thank you!
  • I did that the other day, but either it didn't work correctly or perhaps I need to do it again.
  • FrugalityMajor
    J
    So, I tried to install skinmanager and the skins don't load correctly. Much of the admin menu screen is loading at weird sizes. I disabled the CSS in JF's settings and tried to uninstall the app but I just get a spinning ring and it doesn't uninstall.
  • Sofyill
    im having issues with the skip intro plug in? (the newer version from the repository) is there a way to get the button to show up?
  • mog
    In reply to
    mog

  • is there a workaround to the port 5000 error thats happening ? https://github.com/dotnet/core/issues/948 after upgrading to 10.9 it wont start because 5000 is currently being used by my docker daemon. is there a way i can configure dotnet to use a diff port?
  • deleting my network.xml seemed to fix it
  • Drake Lazarus
    In reply to
    Izzie

  • Need to upgrade your Jellyfin server to the latest version
  • Unfortunately after upgrading the server version, the Media Player on my laptop can no longer connect to that server. I will try restarting and various other generic fixes. Thank you for the fast response, by the way!
  • personwhodoessomething
    something weird happened: my jellyfin has randomly downloaded the metadata of a show named "Mom For Rent"
  • what in the heck happened
  • did someone hack me
  • ozrocks
    is there a way to reset the server to wizard?
  • personwhodoessomething
    In reply to
    personwhodoessomething

  • something weird happened: my jellyfin has randomly downloaded the metadata of a show named "Mom For Rent"
  • nowhere can i find the metadata for it either
  • there's just a random movie called "Mom For Rent" with no data
  • ozrocks
    how much ks she?
  • ts
  • personwhodoessomething
    i would love to know lol
  • personwhodoessomething
    it looks like the metadata grabbing of a show messed up
  • okayguysdan
    if im not logged into my ubuntu machine will jf still run?
  • okayguysdan
    like if i just have the machine set to 'sleep' to where its not logged in does the jf server stay running?
  • jab416171
    J
    If it suspends, no
  • vextryyn
    V
    welp, im a little bummed out, JMP no longer has a button for intro skipper
  • actally is it possible to clear the jmp cache
  • Izzie
    In reply to
    V
    vextryyn

  • welp, im a little bummed out, JMP no longer has a button for intro skipper
  • Like the plugin is broken?
  • vextryyn
    V
    well, i got jumoog's fork installed, but now i dont have a button
  • Izzie
    Is the plugin enabled in settings?
  • vextryyn
    V
    yea
  • jab416171
    J
    Did you run the job to scan for intros to skip?
  • vextryyn
    V
    its not working on the browser either
  • Seto MerzA
    try enabling auto skip intros and see if that works first
  • vextryyn
    V
    yup, multiple times, tried deleteing and rescanning all
  • i mean when i do chapter marker, it def does chapter marker
  • oh well i guess its not skipping at all
  • autoskip is on and it aint autoskipping
  • aotearoasteve
    J
    I have just encountered some interesting behaviour in regrads to search functionality. I have the 2013 movie "her" in my movie library which contains a total of 5123 items. I can find it in the alphabetical list, I can serrch it on my lined jellyseer instance and hit the "play on jellyfin" link and it will oprn the movie page in jellyfin.
    What I can't seem to do is search it our, as the string "her" appears in too many other titles (wHERe, HERe, etc). I have tried searching "her" "Her" "her 2013" "her (2013) and so on but I can't get it to appear in the results. I'm guessing the search functionality could be improved a bit to favour exact matches over partiual string matches? Any thoughts here?
  • vextryyn
    V
    so it might be doing something now, im not sure what is considered a large library, but i turned off cache episode fingerprints and the task is now doing what i think i was expecting?(moving slowly) maybe 6000 items is a lot and cache was hindering something?
  • 😀

    FYI I just had to migrate user watch data from one server to another but I only had the database files-- here's the SQL I ran to do it:

    -- First, to check for any mismatches when joining on `key`
    SELECT
      A_ud.key,
      A_tbi.UserDataKey,
      A_tbi.Name as archive_name,
      B_tbi.Name as cur_name
    FROM A.UserDatas A_ud
    INNER JOIN A.TypedBaseItems A_tbi
      ON A_ud.key = A_tbi.UserDataKey
    INNER JOIN B.TypedBaseItems B_tbi
      ON A_tbi.UserDataKey = B_tbi.UserDataKey
    WHERE A_tbi.Name <> B_tbi.Name
    ;
    
    -- Then to update the actual data
    INSERT INTO B.UserDatas
    SELECT * FROM A.UserDatas
    ;```
  • (just a disclaimer i only had one user lol)
  • vextryyn
    V
    this may prove quite useful
  • vextryyn
    V
    In reply to
    V
    vextryyn

  • so it might be doing something now, im not sure what is considered a large library, but i turned off cache episode fingerprints and the task is now doing what i think i was expecting?(moving slowly) maybe 6000 items is a lot and cache was hindering something?
  • That seems to have done it
  • Sez
    is there an option somewhere, or a way to make jellyfin auto generate movie nfos as <filename>.nfo rather than movie.nfo? since the update it's been doing movie.nfo and i'd like to change it back if possible
  • Sofyill

    i got this error for the skip intro plug in? does anyone know how to fix it?
    * Jellyfin version: 10.9.1
    * Plugin version: 0.2.0+8f60bc2948ad
    * Queue contents: 11586 episodes, 742 seasons
    * Warnings: UnableToAddSkipButton
    * FFmpeg: okay

    FFmpeg version:

    ffmpeg version 6.0.1-Jellyfin Copyright (c) 2000-2023 the FFmpeg developers
    built with gcc 13-win32 (GCC)
    configuration: --prefix=/opt/ffmpeg --arch=x86_64 --target-os=mingw32 --cross-prefix=x86_64-w64-mingw32- --pkg-config=pkg-config --pkg-config-flags=--static --extra-version=Jellyfin --disable-ffplay --disable-debug --disable-doc --disable-sdl2 --disable-ptx-compression --disable-w32threads --enable-pthreads --enable-shared --enable-lto --enable-gpl --enable-version3 --enable-schannel --enable-iconv --enable-libxml2 --enable-zlib --enable-lzma --enable-gmp --enable-chromaprint --enable-libfreetype --enable-libfribidi --enable-libfontconfig --enable-libass --enable-libbluray --enable-libmp3lame --enable-libopus --enable-libtheora --enable-libvorbis --enable-libopenmpt --enable-libwebp --enable-libvpx --enable-libzimg --enable-libx264 --enable-libx265 --enable-libsvtav1 --enable-libdav1d --enable-libfdk-aac --enable-opencl --enable-dxva2 --enable-d3d11va --enable-amf --enable-libvpl --enable-ffnvcodec --enable-cuda --enable-cuda-llvm --enable-cuvid --enable-nvdec --enable-nvenc
    libavutil      58.  2.100 / 58.  2.100
    libavcodec     60.  3.100 / 60.  3.100
    libavformat    60.  3.100 / 60.  3.100
    libavdevice    60.  1.100 / 60.  1.100
    libavfilter     9.  3.100 /  9.  3.100
    libswscale      7.  1.100 /  7.  1.100
    libswresample   4. 10.100 /  4. 10.100
    libpostproc    57.  1.100 / 57.  1.100
    
  • thornbill
    Probably a better question for the people that develop the plugin
  • Spider_
    My subtitles are constantly off. I check them in Subtitle Edit, and they match perfectly well, even when I load them against the MKV file
  • But they are always off by a few seconds when actaully being played on JellyFin
  • * But they are always off by a few seconds when actually being played on JellyFin
  • Is this an issue with MKV files?
  • cptn
    In reply to
    J
    aotearoasteve

  • I have just encountered some interesting behaviour in regrads to search functionality. I have the 2013 movie "her" in my movie library which contains a total of 5123 items. I can find it in the alphabetical list, I can serrch it on my lined jellyseer instance and hit the "play on jellyfin" link and it will oprn the movie page in jellyfin.
    What I can't seem to do is search it our, as the string "her" appears in too many other titles (wHERe, HERe, etc). I have tried searching "her" "Her" "her 2013" "her (2013) and so on but I can't get it to appear in the results. I'm guessing the search functionality could be improved a bit to favour exact matches over partiual string matches? Any thoughts here?
  • It's a known issue.
    https://github.com/jellyfin/jellyfin/issues/5283
    https://github.com/jellyfin/jellyfin/issues/9731
    https://github.com/jellyfin/jellyfin/issues/9943
    I get around it in my personal custom build.
    My mod conflicts with the base jellyfin build though.
    If i can simplify the code to not conflict with other files then i might try putting in a PR again.
  • * It's a known issue.
    https://github.com/jellyfin/jellyfin/issues/5283
    https://github.com/jellyfin/jellyfin/issues/9731
    https://github.com/jellyfin/jellyfin/issues/9943
    I get around it in my personal custom build.
    My mod conflicts with the base jellyfin build though.
    If i can simplify the code to not conflict with other files then i might try putting in a PR again.
  • * It's a known issue.
    https://github.com/jellyfin/jellyfin/issues/5283
    https://github.com/jellyfin/jellyfin/issues/9731
    https://github.com/jellyfin/jellyfin/issues/9943
    I get around it in my personal custom build.
    My mod conflicts with the base jellyfin build though.
    If i can simplify the code to not conflict with other files then i might try putting in a PR again.
  • Spider_
    Even the built-in subtitles don't match
  • It seems to be worst when skipping around a bit
  • suresh
    Is the jellyfin scan going 24*7 in the latest update? I entirely disabled scanning new libraries, however when I add new movies/series, they appear in jellyfin immediately, even if the scan is disabled.
  • cvium
    You have disabled file monitoring?
  • suresh
    No i didn't
  • slddl
  • Any fixes for sync play just killing itself after 30s?
  • And also the nav bar
  • okayguysdan
    When I’m watching the screen will randomly go white and i have to close it out. I’m assuming it’s a crash
  • here is a pastbin of the logs
  • Sez

    was there a solution to this warning?:

    [17:18:05] [WRN] xx.xx.xx.xx: External request received, no matching external bind address found, trying internal addresses.
    [17:18:05] [WRN] xx.xx.xx.xx: External request received, but no external interface found. Need to route through internal network.
    

    it doesn't actually seem to affect me, like my connection from a remote IP works fine, i only get those 2 messages twice during the initial connection and then never again, movies play fine, etc

    it only started with the update, but i'm not sure if that's because the new jellyfin server might show that warning whereas the other didn't and i always had whatever it is that's causing that

  • im using nginx, and i can't remember if i had anything filled out in the jellyfin network section before in the GUI, but now theres only the local http and https port numbers filled in, known proxies filled in as 127.0.0.1 and allow remote connections, and enable ipv4 both ticked
  • palpatine

    unstable is testing tag ?

    services:
      jellyfin:
        image: jellyfin/jellyfin:unstable
        container_name: jellyfin-beta
    
  • Ghost
    In reply to
    Sez

  • was there a solution to this warning?:

    [17:18:05] [WRN] xx.xx.xx.xx: External request received, no matching external bind address found, trying internal addresses.
    [17:18:05] [WRN] xx.xx.xx.xx: External request received, but no external interface found. Need to route through internal network.
    

    it doesn't actually seem to affect me, like my connection from a remote IP works fine, i only get those 2 messages twice during the initial connection and then never again, movies play fine, etc

    it only started with the update, but i'm not sure if that's because the new jellyfin server might show that warning whereas the other didn't and i always had whatever it is that's causing that

  • It'll be silenced in the next update
  • In reply to
    palpatine

  • unstable is testing tag ?

    services:
      jellyfin:
        image: jellyfin/jellyfin:unstable
        container_name: jellyfin-beta
    
  • yes
  • palpatine
    okay thx, was not sure about beta and unstable. Want test new parantcontroll feature
  • Ghost
    that's already in the current stable
  • palpatine
    Really ? Oh im to slow 😅
  • Okay thx i Check 🙂
  • Kylian
    Hello when i try to cast to a chromecast jellyfin connects to chromecast, but nothing happens when trying to play media. I can press play on anything but nothing happends. any idea how to fix this?
  • palpatine

    I Just See "Block content with Tag" and Not "allow content with Tag"

    version: '3.8'
    services:
      jellyfin:
        image: jellyfin/jellyfin
        container_name: jellyfin
    
    
        network_mode: "bridge"
        ports:
          - 8096:8096
          - 7359:7359/udp # Server finden
          - 8920:8920 # optional
          - 1900:1900/udp # Optional
        volumes:
          - /home/docker-projects/jellyfin/volumes/config:/config
          - /home/docker-projects/jellyfin/volumes/cache:/cache
          - /home/nas/Filme:/media/Filme
          - /home/nas/Serien:/media/Serien
          - /dev/shm:/data/transcode # Offload transcoding to RAM if you have enough RAM
          - /home/rene/jellyfin-intro-skipper/dist:/jellyfin/jellyfin-web:ro # intro skipper
        environment:
          - TZ=Europe/Berlin
        restart: always
    #    labels:
    #      - "com.centurylinklabs.watchtower.enable=true"
    
  • image0.jpg
  • Groot Directory
    Is it just on my end or is the apt repository missing 10.9+?
    using sudo apt update and sudo apt upgrade don't update Jellyfin to 10.9 or 10.9.1, and rerunning the automatic installation gives the message: jellyfin is already the newest version (10.8.13-1).
  • * Is it just on my end or is the apt repository missing 10.9+ (Ubuntu)?
    using sudo apt update and sudo apt upgrade don't update Jellyfin to 10.9 or 10.9.1, and rerunning the automatic installation gives the message: jellyfin is already the newest version (10.8.13-1).
  • * Is it just on my end or is the apt repository missing 10.9+ (Ubuntu 23.04)?
    using sudo apt update and sudo apt upgrade don't update Jellyfin to 10.9 or 10.9.1, and rerunning the automatic installation gives the message: jellyfin is already the newest version (10.8.13-1).
  • Ghost
    Which OS are you using? We dropped support for non-LTS ubuntu
  • Groot Directory
    23.04
  • Ghost
    Upgrade to 24.04 and it will work
  • Groot Directory
    alright thanks
  • I previously had issues with 24, but it should be fine
  • Ghost
    Well if you want the new JF version you need to upgrade
  • Groot Directory
    * 23.10
  • * Is it just on my end or is the apt repository missing 10.9+ (Ubuntu 23.10)?
    using sudo apt update and sudo apt upgrade don't update Jellyfin to 10.9 or 10.9.1, and rerunning the automatic installation gives the message: jellyfin is already the newest version (10.8.13-1).
  • yeah i'm doing it
  • thanks for the help and the quick response
  • rcv11x (Alex)
    someone would be so kind to help me to configure nginx proxy manager in jellyfin? i am desperate because i can't get it, the nginx proxy manager is already installed, the problem is that if i install the package “python3-certbot-nginx” in debian it joins with the nginx.conf file that i have when i install nginx proxy manager and gives an error.
  • image.png
  • Which option should I choose?
  • jimmygle
    it's trying to update the mime types
  • cvium
    if you haven't made any changes, I would just take the package maintainers
  • jimmygle
    look at the diff
  • cvium
    you can always reinstall it 🤷‍♀️
  • rcv11x (Alex)
    In reply to
    jimmygle

  • it's trying to update the mime types
  • of course, the problem is that when I do nginx -t I get an error in the file, I don't understand why.
  • jimmygle
    In reply to
    rcv11x (Alex)

  • of course, the problem is that when I do nginx -t I get an error in the file, I don't understand why.
  • Did you look at the diff between the config files?
  • rcv11x (Alex)
    In reply to
    cvium

  • you can always reinstall it 🤷‍♀️
  • it's no use, it's the same, I created the NPM with a tteck script from proxmox.
  • image.png
  • jimmygle
    installing ngninx proxy manager added all those mimetypes?
  • seems weird
  • is there anything else to that diff (scroll down)?
  • looks like the new config is just removing a bunch of relatively standard mime types
  • rcv11x (Alex)
    image.png
  • I can't send everything
  • pu to the N or Y?
  • jimmygle
    oh that's lame, it's a conflict because an additional tab was used lol
  • rcv11x (Alex)
    oh that's lame, it's a conflict because an additional tab was used lol
  • I hit the N to keep the version installed?
  • jimmygle
    ultimately it probably doesn't matter
  • you can comb through it to see if the new config actually adds any new mime types
  • but it looks like it's probably purely a formatting thing
  • makakam6868
    J
    Anyone has an issue with Tizen app stopping playback and freezing the server until one restarts the container? This has happened to me three times on the latest version but never on the older ones.
  • I can't see any errors in the logs when it happens
  • jimmygle
    also
    J
    rcv11x (Alex)
    look into docker ;)
  • these aren't problems with docker generally
  • rcv11x (Alex)
    In reply to
    jimmygle

  • ultimately it probably doesn't matter
  • okay, and this?
  • image.png
  • image.png
  • In reply to
    jimmygle

  • also
    J
    rcv11x (Alex)
    look into docker ;)
  • I've never used Docker, I have no idea what it's like
  • jimmygle
    i imagine nginx proxy manager has made a lot of updates to the nginx.conf file, so i'd keep the existing one
  • that merge looks like a mess
  • actually i don't know
  • certbot probably does too
  • are you following a guide to install these together? i thought nginx proxy manager had its own certbot tools that came packaged with it
  • Ithiloneth

    I just updated my Docker image for jellyfin/jellyfin:latest and it seems to still be in v10.8.11.
    Meaning the new Jellyfin Media Player isn't working with it since it requires 10.9.1.

    Am I on the wrong image?

  • palpatine
    Version: 10.9.1 where i find > Add "Allowed Tags" to Parental Controls [PR #9139], by @Jpuc1143 ?
    https://github.com/jellyfin/jellyfin/pull/9139#issuecomment-2061242953
  • image.png
  • * Version: 10.9.1 where i find > Add "Allowed Tags" to Parental Controls [PR #9139], by @Jpuc1143 ?
    https://github.com/jellyfin/jellyfin/pull/9139#issuecomment-2061242953
  • In reply to
    Ithiloneth

  • I just updated my Docker image for jellyfin/jellyfin:latest and it seems to still be in v10.8.11.
    Meaning the new Jellyfin Media Player isn't working with it since it requires 10.9.1.

    Am I on the wrong image?

  • how you update your container? maybe you buld from cahce. you need to pull last image
  • Ithiloneth
    I updated by downloading the new image.
    The container manager warned that the relevant containers would get a new image, and the download was successful.
  • I can't seem to find any info (in the image itself) as to what version it is.
  • palpatine
    jellyfin:
        image: jellyfin/jellyfin
        container_name: jellyfin
    

    you dont need:latest it is a default if no tag is set

  • can you pls show how you update? portainer? or cli ?
  • Ithiloneth
    JFMP dash says this:
  • image.png
  • In reply to
    palpatine

  • can you pls show how you update? portainer? or cli ?
  • I use Synology Container Manager to pull the image and host the container.
  • image.png
  • The image creation date seems to match nicely with the release of 10.9.1
  • Here is the Docker Hub page:
    https://registry.hub.docker.com/r/jellyfin/jellyfin/
  • palpatine

    ah okay, i have no synology for that but did you read about the right way?
    https://mariushosting.com/synology-how-to-update-containers-in-container-manager/

    the container tag latest should be right

  • *

    ah okay, i have no synology for that but did you read about the right way?
    https://mariushosting.com/synology-how-to-update-containers-in-container-manager/

    the container tag latest should be right

  • Ithiloneth
    I've updated before; usually is no problem.
  • I'll give that a read!
  • palpatine
    okay, sorry for wasting your time i cant help you for that. i can jsut say the image looks right
  • Ithiloneth
    Is Marius Hosting working for you?
  • I can' access the page.
  • Tried to read another one today, and that didn't work either.
  • (On SSL certs)
  • Gonna hit my cmputer with a reboot, hopefully the problem is ont he Client end and nothe the server.
  • Ithiloneth
    For anyone reading this later, that did not work.
    Home is still blank and dashboard still reports server version as 10.8.11.
  • Ithiloneth
    Using my phone I can confirm access works fine, playback too, from its client (android).
    So server seems fine and I'm going to see if I can find a discord for JellyfinMediaPlayer support for Windows.
  • Phone also says server version is 10.8.11 on the dashboard of the client... odd.
  • Nevaran
    confirmed the newest jellyfin player breaks my playing, for some reason it will play 7 episodes beforehand on one show- tried it on android with findroid; plays it fine
  • * confirmed the newest jellyfin player breaks my playing, for some reason it will play 7 episodes back on one show- tried it on android with findroid; plays it fine
  • Ithiloneth
    I Googled how to check Jellyfin server version, and found I could get it by visiting a url on the server domain.
    There too I am told server version is 10.8.11.
  • Am I going crazy over here?
    I just updated the darn thing, and the version is the same as it was before the update.
  • Ithiloneth
    r
  • Nevaran
    J
    Ithiloneth
    did you...stop the server before updating?
  • now another issue; it wont load through a browser
  • image.png
  • damn this update is something
  • rcv11x (Alex)
    In reply to
    jimmygle

  • i imagine nginx proxy manager has made a lot of updates to the nginx.conf file, so i'd keep the existing one
  • ok I'll tell you, I hit N and now it's finished, certbot was indeed installed with the Nginx proxy manager however the package “python3-certbot-nginx” is not installed, this I was doing now was to install that package, well that said it's finished and now when I do nginx -t it gives me this error which is what I told you
  • image.png
  • Llama
    This reply could not be found.
    A user had this issue on my server turned out to be cloudflare caching
  • ilm
    J
    In reply to
    Ithiloneth

  • Am I going crazy over here?
    I just updated the darn thing, and the version is the same as it was before the update.
  • For some reason I had the same problem with docker.io. I suspected a fault on my own, so I installed from the new ghcr repo which worked
  • I'm using podman
  • Ithiloneth
    Thanks ilm, I don't know how to pull an image from another source (nor how to compile my own), but I'll keep that in mind if none of what I attempt works.
  • ilm
    J
    perhaps just delete the local image to be sure
  • and repull
  • (or turn it off and on again 🙂 )
  • Ithiloneth
    That's what I ended up doing.
    Had to delete my container to do so (Synology being silly?) but it worked!
  • I used Container Manager's export function (settings only) before deleting container and image.
    Then imported it again once image was re-downloaded.
  • All good now (aside from the many, many, errors and warnimgs in my logs that I usually ignore 🙈😇).
  • W1LM3R
    Should I go back for now? xD
  • image.png
  • nah atleast I know what the problem was for me so its all good. I geuss I better not downgrade and wait for a while
  • Berger🍔
    In reply to
    Llama

  • A user had this issue on my server turned out to be cloudflare caching
  • Awesome do you know what caching settings you had to disable to fix that?
  • Shaked
    after upgrading my client version my home screen shows nothing.
    and on my android phone everything is normal
  • image.png
  • W1LM3R
    In reply to
    Shaked

  • after upgrading my client version my home screen shows nothing.
    and on my android phone everything is normal
  • css?
  • Maybe delete jellyfin folders in appdata local
  • Tim 🤘
    Hi, I use Jelly since 1y and I want to add collections for Netflix movies, Disney +... like I had before on Plex like this screen below.
    Do you have any idea to do this ? Maybe with TMDB box set but how ?
  • 98cxywldr8b71.png
  • Shaked
    In reply to
    W1LM3R

  • css?
  • meaning?
    its the windows client jellyfin media player 1.10.0
  • the thing is its the same on 2 of my windows computers (not working)
    but on phone it works
  • FintasticMan
    F
    In reply to
    Shaked

  • after upgrading my client version my home screen shows nothing.
    and on my android phone everything is normal
  • have you updated your server to 10.9.1?
  • Shaked
    In reply to
    F
    FintasticMan

  • have you updated your server to 10.9.1?
  • no I haven't found a installer for the server so I don't really know how to update without exe installer
  • image.png
  • W1LM3R
    In reply to
    Shaked

  • no I haven't found a installer for the server so I don't really know how to update without exe installer
  • yeah install with exe
  • Shaked
    I haven't found exe file
  • for windows
  • W1LM3R
  • Shaked
  • W1LM3R
  • Shaked
  • it doesn't have exe file in it
  • image.png
  • it seems like portable version
  • Lexi
    In reply to
    Tim 🤘

  • Hi, I use Jelly since 1y and I want to add collections for Netflix movies, Disney +... like I had before on Plex like this screen below.
    Do you have any idea to do this ? Maybe with TMDB box set but how ?
  • The good news is: there is already a Studios tag & functionality built-in, and you can tag movies & TV as such (if they're not already tagged by it), and it'll show up on the item details page (where you can click on them to see the rest of the studio's works)

    The bad news is: they're only visible as a grid in the TV shows library, not movie libraries — click the "TV Networks" tab at the top of a shows library to see it

    Would love to see it added as an option to the movies library too (ideally I'd like to see a way to differentiate between networks/distributors and studios/production companies too, but that's harder when to my knowledge no metadata source provides this)

  • Shaked
    how do I use this to install the update for the server
  • arm version doesn't have installer
  • only the AMD one does
  • or am I missing something
  • oh ok I just used the installer from the amd64 path seems to be working fine now
  • palpatine
    In reply to
    palpatine

  • Version: 10.9.1 where i find > Add "Allowed Tags" to Parental Controls [PR #9139], by @Jpuc1143 ?
    https://github.com/jellyfin/jellyfin/pull/9139#issuecomment-2061242953
  • unstable is shown the new feature the latest not. That is the reason
  • eppesuig
    E
    Hello,
    I've just update Jellyfin to 10.9.1 on a debian box, and now I cannot connect anymore to the web interface. I tried both direct connection to the 8096 port, and indirect connection on port 443 using nginx forward proxy already working with previous version before the upgrade.
    Now, the page keeps loading and stays completely black.
    On the jellyfin log I found messages like this: "CustomAuthentication" was not authenticated. Failure message: "Invalid token."
    On firefox console I found that http://192.168.222.120:8096/Sessions/Capabilities/Full gives error 401
  • Berger🍔
    In reply to
    Llama

  • A user had this issue on my server turned out to be cloudflare caching
  • So I think I got it working. I had to set the caching level to "No query string" under the Caching -> Configuration page.
    Then I built a cache rule of host name equals jf.mydomin.com/* with the option of 'Bypass cache'.
  • * So I think I got scrubbing videos with the directional buttons working. I had to set the caching level to "No query string" under the Caching -> Configuration page.
    Then I built a cache rule of host name equals jf.mydomin.com/* with the option of 'Bypass cache'.
  • eppesuig
    E
    In reply to
    E
    eppesuig

  • Hello,
    I've just update Jellyfin to 10.9.1 on a debian box, and now I cannot connect anymore to the web interface. I tried both direct connection to the 8096 port, and indirect connection on port 443 using nginx forward proxy already working with previous version before the upgrade.
    Now, the page keeps loading and stays completely black.
    On the jellyfin log I found messages like this: "CustomAuthentication" was not authenticated. Failure message: "Invalid token."
    On firefox console I found that http://192.168.222.120:8096/Sessions/Capabilities/Full gives error 401
  • And, using Firefox in anonymous, it works.
  • chrisWA
    sounds like a cache issue. try clearing cache and deleting cookie
  • eppesuig
    E
    In reply to
    chrisWA

  • sounds like a cache issue. try clearing cache and deleting cookie
  • I did it, but I cannot connect. Does the jellyfin web site store permanent data?
  • * I did it, but I cannot connect. Does the jellyfin web site store permanent data in the browser?
  • ebmar
    I got a new box, i copied metadata and cache over (was hoping to save time). The drives have different paths now. When I add them to the library, they get duplicated. I have tried to rescan the whole library, deleted metadata and cache to rebuild everything. Done everything I could know. Is it possible to purge everything and start from scratch?
  • gnattu
    You cannot move folders like that
  • If you ever want to move them, you have to make sure the path is the same currently
  • ebmar
    So, the best way is to uninstall, remove all remaining files (if there's any), reinstall and start from scratch?
  • eppesuig
    E
    In reply to
    E
    eppesuig

  • I did it, but I cannot connect. Does the jellyfin web site store permanent data?
  • OK, I found the way to completely remove stored data of a single web site from firefox: https://superuser.com/questions/173210/how-can-i-clear-a-single-site-from-the-cache-in-firefox
    And this solved the problem.
  • Talem84
    J
    is there a super noob guide to do remote access?
  • クリス Gari
    (˘・_・˘) I see no changes in my MPV shim when editing the mpv config
  • W1LM3R
    In reply to
    J
    Talem84

  • is there a super noob guide to do remote access?
  • You mean to watch when outside of home?
  • Talem84
    J
    In reply to
    W1LM3R

  • You mean to watch when outside of home?
  • yes
  • W1LM3R
    open port
  • Talem84
    J
    port is open though
  • W1LM3R
    Then check it with public ip
  • Talem84
    J
    ... i can access other docker containers fine with the port open
  • W1LM3R
    Which is outside of the network?
  • Talem84
    J
    what do you mean?
  • W1LM3R
    You want to reach the site when not in the local network right
  • Talem84
    J
    yes correct
  • W1LM3R
    Then double check if the http or htpps port is open with the public ip you own
  • you should be able to reach it that way I geus
  • Talem84
    J
    ive opened it thoug through my lan
  • W1LM3R
    Yes so localip:port but you want publicip:port
  • Probably that
  • Talem84
    J
    how do i figure that out?
  • i said very noob friendly lol
  • iownyrface

    Getting Trickplay Error with HW QSV

    Any known issues with Unraid and That?

  • Cloud9_Development
    In reply to
    J
    Talem84

  • how do i figure that out?
  • Google "what is my public ip" While on your local network. One of the results (probably the top) will give you your public IP address.

    Then, when you are away from home (assuming everything is default on your jellyfin setup), you'll do:

    http://<PUBLIC_IP>:8096

  • Talem84
    J
    In reply to
    Cloud9_Development

  • Google "what is my public ip" While on your local network. One of the results (probably the top) will give you your public IP address.

    Then, when you are away from home (assuming everything is default on your jellyfin setup), you'll do:

    http://<PUBLIC_IP>:8096

  • i mean i know my server ip , its on a completly different computer with ubuntu server on it and running casaos
  • Cloud9_Development
    server IP doesn't matter.. OS doesn't matter. You cannot access your server away from home with your local IP. You need the Public (public facing) IP that points to your home network from the world wide web
  • Talem84
    J
    right but my router doesnt allow me to forward my public ip ports
  • chrisWA
    In reply to
    E
    eppesuig

  • OK, I found the way to completely remove stored data of a single web site from firefox: https://superuser.com/questions/173210/how-can-i-clear-a-single-site-from-the-cache-in-firefox
    And this solved the problem.
  • sorry mate. glad you figured it out!
  • Cloud9_Development
    In reply to
    J
    Talem84

  • right but my router doesnt allow me to forward my public ip ports
  • Okay, let me list the steps you need to do. Maybe that'll clear it up:

    1. forward your port in your router (this will be 8096 AND the local IP/server IP that you are talking about)
    2. get public IP address for your network (http://ipv4.icanhazip.com/ is what I use)
    3. go to http://<PUBLIC_IP>:8096

    You now access outside your network

  • iownyrface
    at Jellyfin.Server.Implementations.Trickplay.TrickplayManager.CreateTiles(List`1 images, Int32 width, TrickplayOptions options, String outputDir)
    at Jellyfin.Server.Implementations.Trickplay.TrickplayManager.RefreshTrickplayDataInternal(Video video, Boolean replace, Int32 width, TrickplayOptions options, CancellationToken cancellationToken)
    [2024-05-16 11:25:11.002 -03:00] [INF] [18] Jellyfin.Server.Implementations.Trickplay.TrickplayManager: Creating trickplay files at 320 width, for "/data/movies/Seal Team Eight Behind Enemy Lines (2014)/Seal Team Eight Behind Enemy Lines (2014) {imdb-tt2992552} [Bluray-1080p][DTS 5.1][x264]-ROVERS.mkv" [ID: 77b9af01-c968-338f-1033-6c2e716d3b0f]
  • Cloud9_Development
    *

    Okay, let me list the steps you need to do. Maybe that'll clear it up:

    1. forward your port in your router (this will be 8096, assuming default, AND the local IP/server IP that you are talking about)
    2. get public IP address for your network (http://ipv4.icanhazip.com/ is what I use)
    3. go to http://<PUBLIC_IP>:8096

    You now access outside your network

  • *

    Okay, let me list the steps you need to do. Maybe that'll clear it up:

    1. forward your port in your router (this will be 8096, assuming default, AND the local IP/server IP that you are talking about)
    2. get public IP address for your network (http://ipv4.icanhazip.com/ is what I use)
    3. go to http://<PUBLIC_IP>:8096

    You now access outside your network

    NOTE: This is not the most secure thing to do, you should do extra steps to secure the traffic. That said, this is the bare minimum you need to do for external access

  • makakam6868
    J
    This is what I got in logs when JF becomes unreachable: https://pastebin.com/gnM2ZQML Anyone has any idea why it happens on the latest version?
  • * This is what I got in logs when JF becomes unreachable: https://pastebin.com/gnM2ZQML Anyone has any idea why it happens on the latest version?
  • Talem84
    J
    In reply to
    Cloud9_Development

  • Okay, let me list the steps you need to do. Maybe that'll clear it up:

    1. forward your port in your router (this will be 8096 AND the local IP/server IP that you are talking about)
    2. get public IP address for your network (http://ipv4.icanhazip.com/ is what I use)
    3. go to http://<PUBLIC_IP>:8096

    You now access outside your network

  • nope doesnt work
  • Cloud9_Development
    If you have everything configured correctly, Could be your ISP has you double NATed , in which case, I'm not sure how to get around that. Others here may have some solution, but I do not
  • In reply to
    J
    Talem84

  • nope doesnt work
  • If you have everything configured correctly, Could be your ISP has you double NATed , in which case, I'm not sure how to get around that. Others here may have some solution, but I do not
  • Talem84
    J
    Hey! Did you just switch to Comcast? I used to have a local provider and switched to Comcast. The feature is called NAT Loopback and Comcast does not provide it. That is, Comcast (and many other providers) doesn’t allow you to join an external IP from the same IP.
  • ebmar
    I just uninstalled jellyfin. I'm trying to reinstall it, but it says it has dected the one I uninstalled and want to use the old config. I don't want it to use the old config. Any ideas?
  • Removed everything in program files, program data, %appdata%. Did registry cleaner..
  • Jose
    Hi all, I was trying to build the arch jellyfin-server package (it's not hit the official repos yet and I was impatient). I noticed that between version 10.8 and 10.9 both the fedora and debian build artifacts have dropped from the git repo. I'm sure this was likely discussed already, can someone point me to either the discussion or what the thinking is for dropping them is. Right now the Arch package won't build without the fedora folder or changing the Arch package build artifacts. Thanks in advance.
  • Resident Unraid Hater
    Pretty sure arch package is community maintained
  • You'll have to go ask whoever maintains it
  • Arturas Arturas
    A
    Hello, yesterday i upgraded my server to 10.9.1 version and now i can connect only to local host addresses (127.0.0.1:8096 or localhost:8096). On the same server 192.168.1.2:8096 is unreachable. If i try to do binding to local address 192.168.1.2, server become unreachable even to localhost addresses. I am using Windows 11, Jellyfin server is running as a service with virtual network adapter. Firewall disabling does nothing. Maybe anyone had similar problem like mine and can help?
  • Ghost
    Set <IgnoreVirtualInterfaces>false</IgnoreVirtualInterfaces> in your network.xml and restart Jellyfin
  • Arturas Arturas
    A
    In reply to
    Ghost

  • Set <IgnoreVirtualInterfaces>false</IgnoreVirtualInterfaces> in your network.xml and restart Jellyfin
  • I tried this, but it changes back to "true" after i restart jellyfin. Maybe there is another place i can change it?
  • Discord bridge bot for Jellyfin
    In reply to
    Ghost

  • Set <IgnoreVirtualInterfaces>false</IgnoreVirtualInterfaces> in your network.xml and restart Jellyfin
  • ⚠ Your message was not bridged: can't create thread without being logged into Discord
  • slddl
    Amy fix for syncplay not working latest ver
  • * Any fix for syncplay not working latest ver
  • * Any fix for syncplay not working latest ver
  • Its the only reason I use jellyfin and it stopped working
  • AshipaEk0
    [AVHWDeviceContext @ 0x5c467b010500] No VA display found for any default device. Device creation failed: -22. Failed to set value 'vaapi=va:,kernel_driver=i915,driver=iHD' for option 'init_hw_device': Invalid argument Error parsing global options: Invalid argument
  • Please what do i do?
  • Arturas Arturas
    A
    In reply to
    Ghost

  • Set <IgnoreVirtualInterfaces>false</IgnoreVirtualInterfaces> in your network.xml and restart Jellyfin
  • Thank you! It worked. I needed to stop my server, restart Windows, change setting to false and start service.
  • Discord bridge bot for Jellyfin
    In reply to
    Ghost

  • Set <IgnoreVirtualInterfaces>false</IgnoreVirtualInterfaces> in your network.xml and restart Jellyfin
  • ⚠ Your message was not bridged: can't create thread without being logged into Discord
  • AshipaEk0
    file
  • Screenshot_2024-05-16_165945.png
  • Sryously
    Welp, my Jellyfin is really fked up now
  • image.png
  • Sryously
    My Skin Manager has been screwed up for a while, can't fix it, some skins are bugged and it's showing version 1.5.0.0 even after I supposedly updated to 2.0.0...but it was working normally on some other skins, till now. Anyone have the skin Manager installed on the newest Jellyfin update and it's not screwed up?
  • This is what I see on the desktop client AND the web client!
  • Arturas Arturas
    A
    In reply to
    A
    Arturas Arturas

  • Hello, yesterday i upgraded my server to 10.9.1 version and now i can connect only to local host addresses (127.0.0.1:8096 or localhost:8096). On the same server 192.168.1.2:8096 is unreachable. If i try to do binding to local address 192.168.1.2, server become unreachable even to localhost addresses. I am using Windows 11, Jellyfin server is running as a service with virtual network adapter. Firewall disabling does nothing. Maybe anyone had similar problem like mine and can help?
  • Fixed: Thanks to @Ghost: Set <IgnoreVirtualInterfaces>false</IgnoreVirtualInterfaces> in your network.xml and restart Jellyfin
  • Discord bridge bot for Jellyfin
    In reply to
    A
    Arturas Arturas

  • Hello, yesterday i upgraded my server to 10.9.1 version and now i can connect only to local host addresses (127.0.0.1:8096 or localhost:8096). On the same server 192.168.1.2:8096 is unreachable. If i try to do binding to local address 192.168.1.2, server become unreachable even to localhost addresses. I am using Windows 11, Jellyfin server is running as a service with virtual network adapter. Firewall disabling does nothing. Maybe anyone had similar problem like mine and can help?
  • ⚠ Your message was not bridged: can't create thread without being logged into Discord
  • Tim (GrandDynamo)
    Please don't use threads
  • It doesn't get bridged 
  • Allegra
    In reply to
    AshipaEk0

  • [AVHWDeviceContext @ 0x5c467b010500] No VA display found for any default device. Device creation failed: -22. Failed to set value 'vaapi=va:,kernel_driver=i915,driver=iHD' for option 'init_hw_device': Invalid argument Error parsing global options: Invalid argument
  • i think this is related to hardware acceleration, is that enabled and have you verified that's set up correctly?
  • AshipaEk0
    In reply to
    Allegra

  • i think this is related to hardware acceleration, is that enabled and have you verified that's set up correctly?
  • its enabled

    i'm trying to follow the docs now to see if there's some step i missed

  • i'm using docker so i'm not very clear on if the setup on the host will work
  • Allegra
    i just got hardware acceleration working in docker (via truenas scale), the step i had missed previously was adding the user jellyfin runs to the render group. it needs this group to access the hardware
  • AshipaEk0
    problem is i used portainer to install jellyfin and i'm lost as to where i should add that
  • Mute
    when doing ls -l /dev/dri I get (among other things) crw-rw---- 1 root _ssh 226, 128 May 14 21:34 renderD128 that should be root render or root video, right?
  • LXC on proxmox, fyi
  • Allegra
    In reply to
    AshipaEk0

  • problem is i used portainer to install jellyfin and i'm lost as to where i should add that
  • have you seen this section of the docs? https://jellyfin.org/docs/general/administration/hardware-acceleration/intel#configure-with-linux-virtualization that should tell you what you need to do, then maybe the portainer community could provide some advice for how to achieve it in your setup
  • * have you seen this section of the docs? https://jellyfin.org/docs/general/administration/hardware-acceleration/intel#configure-with-linux-virtualization that should tell you what you need to do, then maybe the portainer community could provide some advice for how to achieve it in your setup
  • AshipaEk0
    heh. learning i should have just gone with native install
  • Allegra
    that might be easier if it's an option for you, but some googles show other people doing hw acceleration on portainer. i don't have any portainer experience unfortunately so i think that's all the help i can offer 🙂
  • In reply to
    Mute

  • when doing ls -l /dev/dri I get (among other things) crw-rw---- 1 root _ssh 226, 128 May 14 21:34 renderD128 that should be root render or root video, right?
  • I can confirm for you that mine says render instead of _ssh, but i am not on proxmox
  • Mute
    i didnt dare change that, it seems to work now that I checked "HW decoding", dunno exactly what that does, but
  • I kept getting [av1_qsv @ 0x60931324d940] Selected ratecontrol mode is unsupported [av1_qsv @ 0x60931324d940] Current frame rate is unsupported [av1_qsv @ 0x60931324d940] Current picture structure is unsupported [av1_qsv @ 0x60931324d940] Current resolution is unsupported [av1_qsv @ 0x60931324d940] Current pixel format is unsupported [av1_qsv @ 0x60931324d940] some encoding parameters are not supported by the QSV runtime. Please double check the input parameters. [vost#0:0/av1_qsv @ 0x609313278680] Error initializing output stream: Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height [libfdk_aac @ 0x609313264780] 2 frames left in the queue on closing Conversion failed!
  • sorry, not "decode", i unchecked "enable hardware encoding"
  • Mute
    god damn I love linux, rsync -avz folder to user@computer(even if it is a container on my now, brand spanking new closet server) and its off!
  • Allegra
    In reply to
    Mute

  • i didnt dare change that, it seems to work now that I checked "HW decoding", dunno exactly what that does, but
  • turning off hw acceleration certainly fixes any problems with it! if you want to give it another shot some time, it looks like you may have to do some kind of group mapping https://forum.proxmox.com/threads/privilegied-lxc-dev-dri-renderd128-in-a-strange-group.135571/
  • * turning off hw acceleration certainly fixes any problems with it! if you want to give it another shot some time, it looks like you may have to do some kind of group mapping https://forum.proxmox.com/threads/privilegied-lxc-dev-dri-renderd128-in-a-strange-group.135571/
  • Mute
    so just chown renderD128 root:video (or render?)
  • my container is privileged btw, so it shouldn't remap to those ultrahigh numbers(havent checked yet)
  • image.png
  • Yaman Rawat
    Hey guys are there any additional steps for using hw decoding on jellyfin?
  • I have an amd cpu with amd vega 8 integrated gpu
  • Cody Robibero
    In reply to
    Yaman Rawat

  • Hey guys are there any additional steps for using hw decoding on jellyfin?
  • Have you tried looking at the docs?
    https://jellyfin.org/docs/general/administration/hardware-acceleration/amd
  • Allegra
    In reply to
    Mute

  • so just chown renderD128 root:video (or render?)
  • the post said when they tried chown renderD128 root:render it actually changed it to root:_ssh like you have now, but i don't know anything about portainer, just found a similar problem to yours on google
  • Mute
    ah, thanks for looking! I tried chown root:render, didnt change anything
  • ill leave hw encoding off for now, it works
  • byorun
    is something brocken with the watch party in the new version ? as soon as you try to watch something while in a party jellyfin stops the playback after a few seconds and in the activity jellyfin reports that the episode was finished
  • Tim (GrandDynamo)
    In reply to
    byorun

  • is something brocken with the watch party in the new version ? as soon as you try to watch something while in a party jellyfin stops the playback after a few seconds and in the activity jellyfin reports that the episode was finished
  • Yes
  • byorun
    ah thank you
  • Sryously
    Hey man, sorry to hear you're having the same issues. Did yours bug out too that you couldn't figure out how to go back to default skin?
  • vetrix
    Hey, I updated to 10.9.1 from 10.8.13 and jellyfin forces remuxing. I have a low end server and I always use direct playback, but after updating, every movie I want to play on my lg tv is remuxing. Is that a known problem or is it new?
  • Sryously
    * Hey man, sorry to hear you're having the same issues. Did yours bug out too that you couldn't figure out how to go back to default skin? Edit: I just got it back to useable by switching ULTRACHROMIC from my phone where it wasn't completely bugged! I thought I'd check Kaleidochromic too while I was at it and THAT ONE bugged out my phone too! LOL I just happen to have the settings page open on desktop so I could switch it back to Ultrachromic before I completely screwed myself over.
  • * Hey man, sorry to hear you're having the same issues. Did yours bug out too that you couldn't figure out how to go back to default skin? Edit: I just got it back to useable by switching the skin to ULTRACHROMIC from my phone where it wasn't completely bugged! I thought I'd check Kaleidochromic too while I was at it and THAT ONE bugged out my phone too! LOL I just happen to have the settings page open on desktop so I could switch it back to Ultrachromic before I completely screwed myself over.
  • Cloud9_Development
    In reply to
    slddl

  • Amy fix for syncplay not working latest ver
  • I haven't tried it since the update, but got any logs?
  • SauceageTF
    Roku app seems busted in some way
  • Most movies I download now just straight up don’t play for some reason
  • It creates no logs
  • After pressing play, it just hangs the player on a black screen with the time on the top right until what I’m assuming is a timeout where it force closes
  • Again, no logs are created
  • Cloud9_Development
    No logs on server or client?
  • SauceageTF
    But in my activity tab, it shows that something was logged
  • In reply to
    Cloud9_Development

  • No logs on server or client?
  • How can I check Roku client logs?
  • Cloud9_Development
    great question, lol. I THINK there's a way, but I don't know Roku, so I'm not 100% 😅
  • SauceageTF
    What’s weird is that movies that used to work before
  • Now do the same thing
  • I think this started maybe a couple months ago
  • Cloud9_Development
    so before the 10.9 update?
  • SauceageTF
    It has to be a comparability error I’m assuming
  • In reply to
    Cloud9_Development

  • so before the 10.9 update?
  • No I just recently updated actually just yesterday. This issue has persisted for months
  • Maybe the last three months I’d say
  • Cloud9_Development
    That's what I mean, the issue has been going on for you since before 10.9 was released
  • SauceageTF
    Yeah
  • Cloud9_Development
    hmm.. I assume you've checked for updates on roku? (jellyfin app updates and/or roku updates)
  • SauceageTF
    Yeah it says it’s all up to date
  • Cloud9_Development
    Tried uninstalling the roku jellyfin app and re-installing it?
  • SauceageTF
    I’ll try it right now
  • Jimi
  • Cloud9_Development
    And this issue doesn't happen on other playback methods (browser, mobile app, etc)?
  • SauceageTF
    In reply to
    Cloud9_Development

  • And this issue doesn't happen on other playback methods (browser, mobile app, etc)?
  • Nothing like that
  • Jimi
    Logs on the Roku 👆️
  • SauceageTF
    In reply to
    Jimi

  • Logs on the Roku 👆️
  • I’ll try that after reinstalling if it doesn’t work
  • Im seriously gonna have an aneurysm
  • It works now
  • Reinstalling fixed it
  • Jimi
    tenor_gif5196857633416794231.gif
  • vetrix
    In reply to
    vetrix

  • Hey, I updated to 10.9.1 from 10.8.13 and jellyfin forces remuxing. I have a low end server and I always use direct playback, but after updating, every movie I want to play on my lg tv is remuxing. Is that a known problem or is it new?
  • anyone?
  • SauceageTF
    I should’ve known
  • Allegra
    In reply to
    vetrix

  • anyone?
  • doesn't happen for me, I can still do direct play
  • vetrix
    In reply to
    Allegra

  • doesn't happen for me, I can still do direct play
  • on lg webos?
  • iownyrface
    Trying to play Remote on my Phone getting the following errro and fatal playback error Think I have HW Setup correctly endabled in Setting and Mapped to container
  • * Trying to play Remote on my Phone getting the following errro and fatal playback error Think I have HW Setup correctly enabled in Setting and Mapped to container
  • Allegra
    In reply to
    vetrix

  • on lg webos?
  • no on the web client, don't have an LG tv to check I'm afraid
  • vetrix
    In reply to
    Allegra

  • no on the web client, don't have an LG tv to check I'm afraid
  • web and windows client works fine for me too, only lg tv has problems
  • Allegra
    In reply to
    vetrix

  • web and windows client works fine for me too, only lg tv has problems
  • are you using the webOS client or a web browser?
  • vetrix
    client ofc
  • Sryously
    * Hey man, sorry to hear you're having the same issues. Did yours bug out too that you couldn't figure out how to go back to default skin? Edit: I just got it back to useable by switching the skin to DEFAULT from my phone where it wasn't completely bugged! I thought I'd check Kaleidochromic too while I was at it and THAT ONE bugged out my phone too! LOL I just happen to have the settings page open on desktop so I could switch it to Ultrachromic before I completely screwed myself over which looked fine but it actually bugged out also, so use DEFAULT if you can get to the page from a phone or something. Not sure if it'd look different in like a compact mode or something and give you access to the page.
  • Allegra
    it seems it's not a server issue because the other clients work, but maybe the webOS client needs an update to deal with the new server version. I don't see anything about this reported on github, maybe you should submit a bug report to the webOS client repo?
  • vetrix
    but that's just the wrapper around the web interface
  • so i think it's server-sided
  • Jose
    In reply to
    Resident Unraid Hater

  • Pretty sure arch package is community maintained
  • Totally get that, I was looking at jellyfin's git repo and between 10.8 and 10.9 both the fedora and debian folders have been removed. The Arch PKGBUILd file referenced a file in the fedora folder. I was wondering about why there were removed.
  • scampower3
    In reply to
    vetrix

  • Hey, I updated to 10.9.1 from 10.8.13 and jellyfin forces remuxing. I have a low end server and I always use direct playback, but after updating, every movie I want to play on my lg tv is remuxing. Is that a known problem or is it new?
  • What type of media is remuxing?
  • makakam6868
    J
    I'm on 10.9.1 and my JF container has been freezing from time to time and becoming unreachable until I wait for some time or restart the container. This is what I get in logs when this happens: https://pastebin.com/DpyNa4gk
  • * I'm on 10.9.1 and my JF container has been freezing from time to time and becoming unreachable until I wait for some time or restart the container. This is what I get in logs when this happens: https://pastebin.com/DpyNa4gk
  • vetrix
    In reply to
    scampower3

  • What type of media is remuxing?
  • mkv
  • scampower3
    Does the mkv files have dovi metadata?
  • vetrix
    how to check that?
  • i also created an issue on github https://github.com/jellyfin/jellyfin/issues/11681
  • * i also created an issue on github https://github.com/jellyfin/jellyfin/issues/11681
  • scampower3
    Check the mediainfo for the video
  • vetrix
    yes it does
  • DOVIWithHDR10
  • scampower3
    It should remux if there is dovi metadate in the mkv file cuz lg tv can only use the dovi metadata in mp4 format
  • vetrix
    but it played with hdr on 10.8.13 without remuxing
  • Cloud9_Development
    In reply to
    SauceageTF

  • Reinstalling fixed it
  • 🙃
  • scampower3
    If u want to disable the remux, uncheck the prefer fmp4-hls under the playback settings in profile
  • In reply to
    vetrix

  • but it played with hdr on 10.8.13 without remuxing
  • It's a feature added in 10.9.0
  • vetrix
    no way
  • ima check rn
  • scampower3
    * It should remux if there is dovi metadata in the mkv file cuz lg tv can only use the dovi metadata in mp4 format
  • megashinyserperior
    Hi there, I'm using the jellyfin-ldap auth provider for SSO, on updating to 10.9.1, all of my settings related to authentication providers have disappeared in the webui, and the server logs keep saying... User SoandSo was found with invalid/missing Authentication Provider Jellyfin.Plugin.LDAP_Auth.LdapAuthenticationProviderPlugin. Assigning user to InvalidAuthProvider until this is corrected. but I can't exactly correct the issue as the authentication settings on the individual users have disappeared.
  • image.png
  • Where'd it go?
  • vetrix
    In reply to
    scampower3

  • If u want to disable the remux, uncheck the prefer fmp4-hls under the playback settings in profile
  • it changes nothing, still remuxing
  • scampower3
    That's weird. It's not remuxing on my lg tv
  • Have u saved the changed setting on your lg tv?
  • vetrix
    yeah, just restared the jellyfin
  • scampower3
    Hmm wait it's remuxing for me too
  • vetrix
    something's wrong
  • but it plays hdr content correctly using mkv so i don't get it why should it remux
  • maybe lg fixed it?
  • scampower3
    Rn it will always remux profile 8 dovi
  • ElTerrorista
    In reply to
    J
    makakam6868

  • I'm on 10.9.1 and my JF container has been freezing from time to time and becoming unreachable until I wait for some time or restart the container. This is what I get in logs when this happens: https://pastebin.com/DpyNa4gk
  • they probably found the issue and will be included in 10.9.2
  • * they probably found the issue and will be included in 10.9.2 https://github.com/jellyfin/jellyfin/pull/11670
  • * they probably found the issue and will be included in 10.9.2 https://github.com/jellyfin/jellyfin/pull/11670
  • makakam6868
    J
    In reply to
    ElTerrorista

  • they probably found the issue and will be included in 10.9.2
  • thanks, great news
  • PsychicSubset
    Before the update I knew that most of my media had to be transcoded like when using my iPad or watching on chrome but since the update I’ve noticed pretty much no use of my gpu and all my content playing via direct stream. Even for HDR content on non hdr display
  • megashinyserperior
    In reply to
    megashinyserperior

  • Hi there, I'm using the jellyfin-ldap auth provider for SSO, on updating to 10.9.1, all of my settings related to authentication providers have disappeared in the webui, and the server logs keep saying... User SoandSo was found with invalid/missing Authentication Provider Jellyfin.Plugin.LDAP_Auth.LdapAuthenticationProviderPlugin. Assigning user to InvalidAuthProvider until this is corrected. but I can't exactly correct the issue as the authentication settings on the individual users have disappeared.
  • I'm stupid, needed to update a plugin. How do I manually remove a plugin if the server cant remove it itself?
  • Cody Robibero
    M
    megashinyserperior
    Disable your custom CSS and you should be able to do what you want
  • megashinyserperior
    Nope, issue was the plugin was out of date
  • For once, CSS wasn't the issue!
  • ElTerrorista
    In reply to
    megashinyserperior

  • I'm stupid, needed to update a plugin. How do I manually remove a plugin if the server cant remove it itself?
  • delete it from data/plugins
  • Cody Robibero
    huh I thought the dropdown would still exist even with just 1 provider- guess I was wrong
  • There were a lot of issues with custom css + 10.9 so that is the go-to
  • megashinyserperior
    In reply to
    ElTerrorista

  • delete it from data/plugins
  • Huh. WTF. The new plugin shows doesn't show up, only the old version... but checking the file system, the new plugin is the only one installed
  • image.png
  • image.png
  • Any ideas
    J
    ElTerrorista
    ?
  • 0x473
    Hello guys,
    My Jellyfin server is not working properly, <it is not working after boot, not without restarting the service>, I have <tried disabling and enabling the service again>. The logs look pretty clean and doesn't seem to show errors.
  • In reply to
    megashinyserperior

  • Huh. WTF. The new plugin shows doesn't show up, only the old version... but checking the file system, the new plugin is the only one installed
  • having the same issue as well
  • ElTerrorista
    In reply to
    megashinyserperior

  • Huh. WTF. The new plugin shows doesn't show up, only the old version... but checking the file system, the new plugin is the only one installed
  • don't use skinmanager. last update was 2 years ago. follow this if you want some themes: https://github.com/awesome-jellyfin/awesome-jellyfin/blob/main/THEMES.md and add to custom css code
  • * don't use skinmanager. last update was 2 years ago. follow this if you want some themes: https://github.com/awesome-jellyfin/awesome-jellyfin/blob/main/THEMES.md and add to custom css code
  • * don't use skinmanager. last update was 2 years ago. follow this if you want some themes: https://github.com/awesome-jellyfin/awesome-jellyfin/blob/main/THEMES.md and add to custom css code or from forum: https://forum.jellyfin.org/f-themes-styles
  • * don't use skinmanager. last update was 2 years ago. follow this if you want some themes: https://github.com/awesome-jellyfin/awesome-jellyfin/blob/main/THEMES.md and add to custom css code or from forum: https://forum.jellyfin.org/f-themes-styles
  • megashinyserperior
    Ah
  • Good to know
  • 0x473
    * Hello guys,
    My Jellyfin server is not working properly after update, <it is not working after boot, not without restarting the service>, I have <tried disabling and enabling the service again>. The logs look pretty clean and doesn't seem to show errors.
  • drevartan
    J
    Is there any way to generate Trickplay images for custom media libraries? I was using Jellyscrub before the most recent update (which was working), and I'm now able to enable trickplay image extraction without the plugin for my Movies and Shows Libraries after the update. That said, I also have a media library that I created called Streams, but there are no settings related to Trickplay shown when I manage that library.
  • merdealors
    In reply to
    0x473

  • Hello guys,
    My Jellyfin server is not working properly, <it is not working after boot, not without restarting the service>, I have <tried disabling and enabling the service again>. The logs look pretty clean and doesn't seem to show errors.
  • I just got an issue today on a jammy vm being stuck at boot without network, using up one full cpu, I couldn't debug properly as I'm using passthrough on proxmox (and it makes it hard to get real time logs when the vm doesn't have network).
    I went the quick way and restored a backup, then removed linux-image-virtual-hwe-22.04 because I originally thought it was an issue with the legacy nvidia drivers and linux 6.5 (but in reality it's not the exact reason as my 1060 is still supported in the mainline drivers).
    At least it's working now and I'm back on 5.15 with 550.54 drivers
  • Talem84
    J
    So still having issues making my jellyfin remote with xfinity
  • Is there a place witha free ISP I can get and attach it to
  • Tim (GrandDynamo)
    free internet?
  • 0x473
    In reply to
    merdealors

  • I just got an issue today on a jammy vm being stuck at boot without network, using up one full cpu, I couldn't debug properly as I'm using passthrough on proxmox (and it makes it hard to get real time logs when the vm doesn't have network).
    I went the quick way and restored a backup, then removed linux-image-virtual-hwe-22.04 because I originally thought it was an issue with the legacy nvidia drivers and linux 6.5 (but in reality it's not the exact reason as my 1060 is still supported in the mainline drivers).
    At least it's working now and I'm back on 5.15 with 550.54 drivers
  • so you are saying that 535.161.08 drivers can cause this issue ?
  • merdealors
    In reply to
    0x473

  • so you are saying that 535.161.08 drivers can cause this issue ?
  • It's what i thought initially (and it probably is if you have a legacy card like a GTX 550 Ti), and the steps fixed my unknown issue but that's about all I know 😄
  • In reply to
    J
    Talem84

  • So still having issues making my jellyfin remote with xfinity
  • Have you tried using a vpn or similar between you client and jellyfin? If you don't have too many users it can be very useful. I did this for a while through tailscale
  • * Have you tried using a vpn or similar between your client and jellyfin? If you don't have too many users it can be very useful. I did this for a while through tailscale
  • In reply to
    0x473

  • so you are saying that 535.161.08 drivers can cause this issue ?
  • That's the bug I thought I had https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-390/+bug/2051436
  • 0x473
    thank you!
  • merdealors
    you're welcome!
  • PsychicSubset
    In reply to
    PsychicSubset

  • Before the update I knew that most of my media had to be transcoded like when using my iPad or watching on chrome but since the update I’ve noticed pretty much no use of my gpu and all my content playing via direct stream. Even for HDR content on non hdr display
  • ???
  • Tim (GrandDynamo)
    it is true that 10.9 tries to direct play more now. But i am not sure if it tries to detect hdr
  • if a client is even capable on detecting that
  • PsychicSubset
    hmm okay i mean its pretty cool most of my media loads faster, but i do notice buffering tho while direct playing, ohh and on my host machine (linux) it direct plays but on my main windows pc it direct streams but im assuming this will get fixed uo more with the upcoming updates
  • Tim (GrandDynamo)
    the difference between direct play and direct stream is just remuxing
  • are you using the same client on both machines?
  • Ferron
    F
    Hi, I've enabled my gpu within kubernetes to allow hardware acceleration. I've verified everything is working as it should by following this https://jellyfin.org/docs/general/administration/hardware-acceleration/intel/#configure-on-linux-host

    From what I understand I should have transcoding options within my playback options. But they don't show up. Any ideas?
  • * Hi, I've enabled my gpu within kubernetes to allow hardware acceleration. I've verified everything is working as it should by following this https://jellyfin.org/docs/general/administration/hardware-acceleration/intel/#configure-on-linux-host. I'm using the jellyfin provided docker image.
    From what I understand I should have transcoding options within my playback options. But they don't show up. Any ideas?
  • PsychicSubset

    yeah using chrome on my unbuntu machine and on my windows machine, i even tried my mac book

    the only one that transcoded was via chrome on linux, the rest were direct streams, i get the occasional direct play

    jellyfin ios is the same nothing transcodes since the update which im assuming is good its either direct play or direct stream but i do notice when seeking ahead of the movie it can take some time to load in comparison to when it was actually being transcoded, another quirk i noticed on jellyfin ios even tho its not "transcoding" if i enable AVI encoding 4k HDR content will fail to play

    ooh and side mark in regards to the HDR-SDR tone mapping it looks beautiful even tho it does not show its actively transcoding per what i see

  • Clownstyle
    I've got a really strange issue with Jellyfin. I went to my landing page today and all I see is this, the top of the icons. It's the same on web version or using the client app. Has anyone else seen this before? I restarted my container and updated to the latest release, still hasn't resolved the issue.
  • image.png
  • Fallenbagel
    Looks like an issue with custom css
  • Try disabling custom css
  • Clownstyle
    In reply to
    Fallenbagel

  • Try disabling custom css
  • Thanks Tim, where do I disable that?
  • Tim (GrandDynamo)
    🗿 i am tim
  • Clownstyle
    General settings looks like this
  • image.png
  • Fallenbagel
    Try avatar > display > disable custom css
  • Then go to general
  • Clownstyle
    In reply to
    Tim (GrandDynamo)

  • 🗿 i am tim
  • Surprising fact, I am also Tim
  • Tim (GrandDynamo)
    :gigachadhandshake:
  • In reply to
    Clownstyle

  • General settings looks like this
  • something at the bottom
  • somewhere
  • Fallenbagel
    The disable server provided custom css code option in display
  • Enable that
  • Clownstyle
    Click avatar just get this:
  • image.png
  • Fallenbagel
    Then you can remove the custom css from dashboard
  • In reply to
    Clownstyle

  • Click avatar just get this:
  • 🗿
  • Okay new plan
  • Stop jellyfin
  • Go to config folder
  • You should see a file called branding.xml
  • Remove the custom css from that
  • Tim (GrandDynamo)
    he was not capping 🗿
  • image.png
  • Clownstyle
    <BrandingOptions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
      <LoginDisclaimer />
      <CustomCss>@import url('https://cdn.jsdelivr.net/gh/prayag17/JellySkin/addons/Gradients/sunsetGradient.css');
    @import url('https://cdn.jsdelivr.net/npm/jellyskin@latest/dist/main.css');</CustomCss>
      <SplashscreenEnabled>false</SplashscreenEnabled>
    </BrandingOptions>```
  • Tim (GrandDynamo)
    make the part between <customcss></customcss> empty
  • Clownstyle
  • Fallenbagel
    Yes remove inside the <customcss> tag
  • Clownstyle
    hmm, still the same
  • image.png
  • Fallenbagel
    Oh you have jellyskin plugin
  • Stop jellyfin once again
  • Remove that plugintoo
  • Tim (GrandDynamo)
    🗿 yeet plugin from plugin folder
  • Fallenbagel
    Yeet the plugin and the custom css
  • And you should be good
  • Make sure to clear browser cache after restarting
  • Tim (GrandDynamo)
    please dont ask the difficult question where that folder is. i only know that on windows :chad:
  • on docker its probably in config or data somewhere
  • Fallenbagel
    I know where it is in linux
  • Clownstyle
    I've got skin manager, don't see anything for jellyskin
  • Fallenbagel
    And docker
  • In reply to
    Clownstyle

  • I've got skin manager, don't see anything for jellyskin
  • Yes that is the plugin I'm talking about
  • Remove it
  • Clownstyle
    In reply to
    Fallenbagel

  • Remove it
  • Ahh yes that's much better
  • Tim (GrandDynamo)
  • your feeling rn
  • Clownstyle
    My first thought was someone has been on my jellyfin and borked it.. which should be pretty hard but not impossible. I'm running a reverse proxy with swag and geo-blocking so it should be ok I think
  • Guess it was just the plugin being a pain
  • Tim (GrandDynamo)
    someone doesnt go to the effort to just mess up styling
  • Clownstyle
    hah true..
  • Fallenbagel
    In reply to
    Clownstyle

  • Guess it was just the plugin being a pain
  • Plugin hasn't been updated in 2 years I believe 🤔
  • Clownstyle
    Thanks to many Tims I am now in a world of peace
  • Tim (GrandDynamo)
    :Dorime:
  • In reply to
    Fallenbagel

  • Plugin hasn't been updated in 2 years I believe 🤔
  • which wasnt needed i guess because jellyfin wasnt either :Kek:
  • Fallenbagel
    In reply to
    Clownstyle

  • Thanks to many Tims I am now in a world of peace
  • (Disclaimer: I'm not really tim) but yes welcome tim!
  • Clownstyle
  • Thank you regardless 😁
  • Tim (GrandDynamo)
    another sidenote
  • some of us have a habbit of spamming a 🗿 everywere
  • Gigadoc 2
    Hi, the 10.9 update changed something about how mixed libraries work, right? My anime library became kind of weird, and I recreated it as a "shows" library, but now that is probably not good for my movies in there, and also now every Show has exactly one "Season 1" because I use the AniDB provider (and I think I approve of the "no seasons" thing?).
  • I guess what I am asking is how you organize anime content with 10.9? It feels kind of weird to me to split up movies and shows into separate libraries for anime, it just overlaps a lot
  • Cody Robibero
    I have my movies and tv split into different libraries
  • sjorge
    I just have mine as shows, anidb has s1e1 complete movie, dor movies
  • Gigadoc 2
    In reply to
    sjorge

  • I just have mine as shows, anidb has s1e1 complete movie, dor movies
  • If that still fetches the metadata it sounds good
  • Though I just realized that I have some actuall errors as well, getting empty XML back as it seems. Maybe I've run into their rate-limit already?
  • sjorge
    Yeah they get metadata for me
  • After about 15 shows i get banned, and had to stop jf for a day
  • Repeat, it to me about 4 months to get everything
  • Gigadoc 2
    Yeah OK, that'd explain it
  • OK, having deleted the empty cache files (and only the empty ones), I can now selectively refresh shows and that fetches the metadata, though now for some reason it also fetches the AniDB images, even though I have only the TVDB provider enabled for images?
  • I know that the mismatch of season handling will cause problems with TVDB as an image provider for any show that has more than one "season", but pulling the images from AniDB if that provider is disabled seems a weird outcome of that?
  • I am somewhat motivated to switch over to the TVDB provider entirely, but I like the romanized titles of anidb a lot 😅
  • Unfortunately Jellyfins search does also not transliterate, so if I just fetch japanese titles from the TVDB I can't search for anything without first turning on fcitx^^
  • Talem84
    J
    In reply to
    merdealors

  • Have you tried using a vpn or similar between you client and jellyfin? If you don't have too many users it can be very useful. I did this for a while through tailscale
  • Sadly talescale doesn't work on roku boxes a d stuff
  • K3nnst3r
    So I am running jellyfin-androidtv 0.16.10 on an Nvidia shield pro. I have the latest jellyfin running in a docker on Ubuntu 24.04. everything worked fine until the update now I get freezing in my shows like buffing. But occasionally I gotta restart jellyfin server because it won't connect or just crashes. Losing connection mostly happening if I use the desktop client. Any ideas
  • Talem84
    J
    Trying to figure out Gluetun but having issues setting it up
  • Gigadoc 2
    In reply to
    Gigadoc 2

  • I know that the mismatch of season handling will cause problems with TVDB as an image provider for any show that has more than one "season", but pulling the images from AniDB if that provider is disabled seems a weird outcome of that?
  • Eh, nevermind, after reloading a few times the library settings now do indeed show that anidb is reenabled as an image provider, weird
  • Arimil
    Is there a way to see how much storage trickplay thumbnails are consuming?
  • Talem84
    J
    anyone have any experiance getting gluetun to work?
  • merdealors
    In reply to
    J
    Talem84

  • Sadly talescale doesn't work on roku boxes a d stuff
  • Using exit node feature you should be able to bypass that
  • There are a lot of things to do but it's going to depend mostly on your setup
  • Talem84
    J
    In reply to
    merdealors

  • Using exit node feature you should be able to bypass that
  • any tutorials?
  • K3nnst3r
    In reply to
    J
    Talem84

  • anyone have any experiance getting gluetun to work?
  • What OS?
  • merdealors
    In reply to
    J
    Talem84

  • any tutorials?
  • I don't have any on hand but if you detail your setup we can discuss it
  • Talem84
    J
    In reply to
    K3nnst3r

  • What OS?
  • ubuntu server using casaos
  • so docker
  • K3nnst3r
    For docker I prefer hotio.dev dockers all of them can easily have a VPN built in and use wire guard super fast for my qBit.
  • Talem84
    J
    In reply to
    K3nnst3r

  • For docker I prefer hotio.dev dockers all of them can easily have a VPN built in and use wire guard super fast for my qBit.
  • never heard of it
  • cameronN
    Im getting absolutely tanked cpu usage when streaming with jellyfin, on unraid. It spikes to 100% on over 10 cores and media starts freezing, ffmpeg is normally the culprit but not sure why since i am direct playing or hw transcoding, any help would be great
  • K3nnst3r
    In reply to
    J
    Talem84

  • never heard of it
  • J
    Talem84
    what's the docker for jellyfin I'm assuming and you want it on a VPN?
  • Talem84
    J
    In reply to
    K3nnst3r

  • J
    Talem84
    what's the docker for jellyfin I'm assuming and you want it on a VPN?
  • i installed Jellyfin on Ubuntu server directly
  • In reply to
    K3nnst3r

  • J
    Talem84
    what's the docker for jellyfin I'm assuming and you want it on a VPN?
  • well that and my makemkv
  • merdealors
    J
    Talem84
    Have a look here for a quick presentation, basically tailscale is a mesh network and you can exit through any node, so you could have tailscale on a device at home and use this as a bridge to connect to your roku box (but I may have got your needs wrong, it's just an example) https://tailscale.com/kb/1103/exit-nodes
  • *
    J
    Talem84
    Have a look here for a quick presentation, basically tailscale is a mesh network and you can exit through any node, so you could have tailscale on a device at home and use this as a bridge to connect to your roku box (but I may have got your needs wrong, it's just an example) https://tailscale.com/kb/1103/exit-nodes
  • *
    J
    Talem84
    Have a look here for a quick presentation, basically tailscale is a mesh network and you can exit through any node, so you could have tailscale on a device at home and use this as a "bridge"/"gateway" to connect to your roku box (but I may have got your needs wrong, it's just an example) https://tailscale.com/kb/1103/exit-nodes
  • Talem84
    J
    lol have no idea what im doing
  • Talem84
    J
    yeah its not working lol
  • tailscale doesnt work
  • Talem84
    J
    okay got it to work with casaos but how do i put it into the jellyfin server thats installed on ubuntu
  • merdealors
    Probably a better link for your use case: https://tailscale.com/kb/1019/subnets
  • * Probably a better link for your use case: https://tailscale.com/kb/1019/subnets
  • cocobrah
    C
    Hey guys, I just upgraded my server to 10.9.1 and now I can't connect to my server via JMP (1.10), Jellyfin Android (2.6.1), Findroid (0.14.2), or through any web client. Whenever I try to connect it just gives me the default can't connect message, however if I try to play media on the server directly via the web client it works just fine. Any ideas?
  • cptn
    For JMP, i remember seeing that 1.10 is broken and some people rolling back to 1.9.1 for now.
    For the others, perhaps try logout/login, or better yet uninstall/reinstall to remove any cache before logging in.
  • Allegra
    In reply to
    J
    Talem84

  • anyone have any experiance getting gluetun to work?
  • i've used gluetun for other docker apps but i don't use a gluetun vpn to access my server remotely, i use tailscale for that
  • Talem84
    J
    In reply to
    Allegra

  • i've used gluetun for other docker apps but i don't use a gluetun vpn to access my server remotely, i use tailscale for that
  • Yeah trying to figure out since I installed jellyfin on the ubuntu server and didn't use the docker on how to get the Ubuntu server jellyfin to use talescale
  • cocobrah
    C

  • Thanks for the advice. I tried your suggestions but I'm still getting the same error. Here's my log file starting at the upgrade till now.
  • Allegra
    In reply to
    J
    Talem84

  • Yeah trying to figure out since I installed jellyfin on the ubuntu server and didn't use the docker on how to get the Ubuntu server jellyfin to use talescale
  • yeah so some device on your lan needs to be running tailscale (i use the same server running jellyfin), then you give that tailscale node a subnet for your lan that includes your jellyfin server. then any device on your tailnet can access your lan
  • vibuz
    I just upgraded Jellyfin to the latest version, imported a few videos, and every view shows a different set of videos from the latest import now. Can I safely downgrade Jellyfin?
  • Talem84
    J
    and now casaos and jellyfin server dont run haha
  • Miku <3
    Are there any fixes for this besides using an external player?
  • IMG_2208.png
  • cptn
    In reply to
    vibuz

  • I just upgraded Jellyfin to the latest version, imported a few videos, and every view shows a different set of videos from the latest import now. Can I safely downgrade Jellyfin?
  • No you can't downgrade.
    You should have had a backup before upgrading.
    You'll have to rollback to that backup.
  • Talem84
    J
    everything says its running but i cant access anything
  • Miku <3
    In reply to
    Miku <3

  • Are there any fixes for this besides using an external player?
  • Last fix was upgrading to 10.8 from what I can see, but I'm on Version: 10.8.11 and it's fully broken.
  • vibuz
    In reply to
    cptn

  • No you can't downgrade.
    You should have had a backup before upgrading.
    You'll have to rollback to that backup.
  • Aight.
  • Miku <3
    In reply to
    Miku <3

  • Last fix was upgrading to 10.8 from what I can see, but I'm on Version: 10.8.11 and it's fully broken.
  • (ill try upgrading to 10.91 now though)
  • jkboy
    In reply to
    Miku <3

  • Last fix was upgrading to 10.8 from what I can see, but I'm on Version: 10.8.11 and it's fully broken.
  • Do make sure to make a backup.
  • As vibuz and I myself have learned recently there is no easy revert
  • Learn from our mistakes 😅
  • vibuz
    Yeah, we love learning things the hard way. 😆
  • Miku <3
    Are there any primary things to backup? Or just search for jellyfin using everything and backup all of that
  • cptn
    There's a bunch of separate pieces depending on your platform.
    It's why i like using docker for stuff like this. Very easy to just backup a single folder and tar it up.
    And also easy to upgrade/downgrade
  • cocobrah
    C
    Well I kinda fixed my issue. I reinstalled Jellyfin Server 10.9.1 and I'm able to connect using my custom URL (using JMP 1.10 and chrome web client), but for some reason it just won't connect via direct local IP. I did install the DLNA plugin but didn't do any other configuring, could that be the issue?
  • Miku <3
    In reply to
    cptn

  • There's a bunch of separate pieces depending on your platform.
    It's why i like using docker for stuff like this. Very easy to just backup a single folder and tar it up.
    And also easy to upgrade/downgrade
  • I'm using windows right now, the main parts I can see are proogram data and program files
  • * I'm using windows right now, the main parts I can see are program data and program files
  • cptn
    main pieces are config files, data folder (has library.db, jellyfin.db, collections, playlists, etc), and metadata folders
  • Miku <3
    yuh, i'm p sure that is what programdata has in windows
  • image.png
  • cptn
    that looks like it might be right. But i'll let someone else confirm it for windows.
    "cache" can usually be skipped if you want to save space on the zip/tar
  • vibuz
    I managed to fix the problem without resetting the cache. The problem probably arised from having the database on a network filesystem. I'm just guessing here, but since the old Jellyfin handled this just fine, I'm guessing the new Jellyfin has some new database calls where errors aren't handled properly.
  • * I managed to fix the problem without resetting the installation. The problem probably arised from having the database on a network filesystem. I'm just guessing here, but since the old Jellyfin handled this just fine, I'm guessing the new Jellyfin has some new database calls where errors aren't handled properly.
  • Talem84
    J
    what happened to my jellyfin server?!!
  • Miku <3
    In reply to
    Miku <3

  • (ill try upgrading to 10.91 now though)
  • ok my installation didn't get fucked $$$
  • jkboy
    In reply to
    Miku <3

  • ok my installation didn't get fucked $$$
  • Yay
  • Miku <3
    but this bug still exists
  • image.png
  • gonna cryu
  • jkboy
    In reply to
    J
    Talem84

  • what happened to my jellyfin server?!!
  • You should be able to access your logs on the server side
  • In reply to
    Miku <3

  • but this bug still exists
  • What is the bug exactly?
  • Miku <3
    the green screen
  • only happens on hdr10 videos
  • jkboy
    hmmmm
  • TrueBankai416
    does anyone know how to do custom CSS? i added it but nothing changed.
  • MetaCerberus
    seems sync play is completely broken after the update.
  • jkboy
    In reply to
    Miku <3

  • only happens on hdr10 videos
  • You using hardware enabled acceleration?
  • Miku <3
    yuh
  • jkboy
  • You check the chart here to see if it is supported?
  • Miku <3
    im using an intel arc a380 rn
  • Talem84
    J
    In reply to
    jkboy

  • You should be able to access your logs on the server side
  • i cant access anything at all
  • Miku <3
    shouldn't be any issues
  • jkboy
    In reply to
    TrueBankai416

  • does anyone know how to do custom CSS? i added it but nothing changed.
  • I've not done anything with it but maybe a server restart is needed?
  • In reply to
    J
    Talem84

  • i cant access anything at all
  • What os is your server set up on?
  • iownyrface
    In reply to
    Miku <3

  • im using an intel arc a380 rn
  • That looks like DovI not being albe to play
  • Is that all files?
  • Miku <3
    all hdr10 files at least
  • iownyrface
    Do you have Tone Mapping on
  • Miku <3
    and yes
  • Talem84
    J
    In reply to
    jkboy

  • What os is your server set up on?
  • ubuntu server with casaos
  • jkboy
    Right
  • Talem84
    J
    casa os i cant access any more
  • everything says its running
  • jkboy
    are you ssh ing into the server?
  • iownyrface
    Does your Device Support HDR?
  • Talem84
    J
    yes
  • iownyrface
    Cause thats typically a Color Profile Issue
  • jkboy
    cd into the appdata folder for your server hosting
  • Miku <3
    In reply to
    iownyrface

  • Does your Device Support HDR?
  • Not personally, I'm just on a windows 1080p monitor right now.
  • Talem84
    J
    i have no idea where that is lol
  • jkboy
    you should be able to access the logs from there and download them.
  • Miku <3
    But tone mapping should be coming into effect to prevent that no?
  • Talem84
    J
    or where to even start using the command
  • jkboy
    where did you install the server with your commands?
  • iownyrface
    Depends gfreatly on the file
  • jkboy
    new to linux?
  • iownyrface
    Send a Screenshot of the file listing
  • Talem84
    J
    In reply to
    jkboy

  • where did you install the server with your commands?
  • just straight onto the ubuntu server
  • iownyrface
    in Jelly
  • jkboy
    In reply to
    J
    Talem84

  • just straight onto the ubuntu server
  • still needs an install location
  • did you specify root (/)
  • or did you go deeper
  • Talem84
    J
    In reply to
    jkboy

  • still needs an install location
  • sorry i dont know the install location lol
  • ii assume root
  • iownyrface

    You cant Tone Map DoVI

    Needs to have Fallback

  • Not all files have both all the time
  • Miku <3
    Ah okay, so you think that's the issue?
  • iownyrface
    If you are acquiring files without consideration for compatility
  • This isnt a unique to Jelly issue
  • Miku <3
    I understand, just asking for future reference
  • iownyrface
    Maybe
  • Send a Screenshot
  • of the movie listing
  • like the screen before play
  • jkboy
    so i'm assuming your instance of linux has something like user@servername:~#
  • Talem84
    J
    casaos is unaccesable also but the containers are
  • chrisWA
    media info might be more helpful. it's profile 8.1 that has the fallback right?
  • jkboy
    if you are in the terminal
  • iownyrface

    yeah certain profiles do I think

    alot of DOVI cant be Tonemapped
    It needs base HDR layer to Tonemap to SDR

  • Plex has same issues
  • jkboy
    In reply to
    J
    Talem84

  • casaos is unaccesable also but the containers are
  • ugh um I would recommend a video on how to navigate linux using the terminal. I am also essentially a novice and don't know if I have the time to help you tonight
  • iownyrface
    Its less Server More Content
  • jkboy
    can you get to a terminal bc I might be able to get you to harvest a log if we at least get there
  • iownyrface
    In reply to
    jkboy

  • ugh um I would recommend a video on how to navigate linux using the terminal. I am also essentially a novice and don't know if I have the time to help you tonight
  • Its why a gui is nice for new folks
  • Talem84
    J
    In reply to
    jkboy

  • ugh um I would recommend a video on how to navigate linux using the terminal. I am also essentially a novice and don't know if I have the time to help you tonight
  • lol doesnt help
  • jkboy
    Yeah
  • is your gui up?
  • Talem84
    J
    again no
  • jkboy
    for casaos?
  • Talem84
    J
    lol
  • jkboy
    ugh
  • um do you have access to your terminal?
  • Talem84
    J
    no i keep saying it says running but isnt allowing me to access it
  • yes
  • jkboy
    ok type in the command cd /
  • Talem84
    J
    ive reinstalled casaos and nothing
  • jkboy
    from there we can look for the file location of your jellyfin server
  • iownyrface

    Wait

    You Reinstalled?
    So Like

  • Wouldnt that nuke ... Things?
  • Talem84
    J
    In reply to
    jkboy

  • from there we can look for the file location of your jellyfin server
  • okay
  • jkboy
    I would assume so
  • When you reinstalled casaos did you also reinstall jf?
  • Talem84
    J
    no i didnt reinstall jellyfin
  • jkboy
    ok then this won't help.
  • Talem84
    J
    i have a huge TB mountain drive with all my movies
  • iownyrface
    This is a Cart before the horse
  • and you have no cart
  • Talem84
    J
    if i reinstall jellyfin wouldnt that nuke my movies?
  • jkboy
    I would probably reinstall it again making sure to enable the gui
  • no
  • your movies are in a sep place
  • do you have a separate drive for your movies?
  • Talem84
    J
    yes
  • okay how do i fully reinstall Jellyfin then
  • jkboy
    ok reinstall casaos making sure to enable the gui. I would recommend following the tutorial closely so its there.
  • From there I would reinstall jf
  • so you can see the filesystem gui
  • cause if you can't access the gui sounds like the install went bad
  • Talem84
    J
    In reply to
    jkboy

  • ok reinstall casaos making sure to enable the gui. I would recommend following the tutorial closely so its there.
  • i did reinstall casaos remember i just said
  • it didnt work
  • jkboy
    I know
  • iownyrface
    Talem you need to be a little more accepting
  • That this isnt google
  • Nor a Jelly issue
  • jkboy
    yeah
  • iownyrface
    Hes tyrying to give solid advice
  • Talem84
    J
    it is if i cant access my jellyfin server at all
  • jkboy
    jf isnt on the server
  • iownyrface
    Cause you wiped it
  • jkboy
  • so I can not take up the chat
  • Talem84
    J
    im trying to understand what you want me to dso
  • jkboy
    move to the offtopic discord channel
  • vibuz
    I'm getting a lot of "External request received, no matching external bind address found, trying internal addresses." warnings in the logs now but there's no obvious problem. Is there a way to silence it?
  • ysilla
    I'm getting a very weird error since I updated to 10.9, when playing from any playlist:
    - if I click "next" on the OSD, it goes to the next movie (as expected)
    - if I press "next" using the keyboard button, it also goes to the next movie (as expected), but it also shows an error popup over the movie 😖
    I've always only used the keyboard buttons to do this on previous versions, and having to grab a mouse to close a popup every time I change movie/episode makes the version pretty much unusable for me, any idea what could cause this? (same thing happens with previous, but pause/play works as expected)
  • Capture.webp
  • image.png
  • * I'm getting a very weird error since I updated to 10.9 (client+server), when playing from any playlist:
    - if I click "next" on the OSD, it goes to the next movie (as expected)
    - if I press "next" using the keyboard button, it also goes to the next movie (as expected), but it also shows an error popup over the movie 😖
    I've always only used the keyboard buttons to do this on previous versions, and having to grab a mouse to close a popup every time I change movie/episode makes the version pretty much unusable for me, any idea what could cause this? (same thing happens with previous, but pause/play works as expected)
  • nyanmisaka
  • Talem84
    J
    jellyfin.service - Jellyfin Media Server
    Loaded: loaded (/lib/systemd/system/jellyfin.service; enabled; vendor preset: enabled)
    Drop-In: /etc/systemd/system/jellyfin.service.d
    └─jellyfin.service.conf
    Active: failed (Result: exit-code) since Fri 2024-05-17 02:44:16 UTC; 15min ago
    Main PID: 4813 (code=exited, status=200/CHDIR)
    CPU: 5ms
  • keep getting htis
  • * keep getting this
  • ysilla
    * I'm getting a very weird error since I updated to 10.9 (client+server), when playing from any playlist:
    - if I click "next" on the OSD, it goes to the next movie (as expected)
    - if I press "next" using the keyboard button, it also goes to the next movie (as expected), but it also shows an error popup over the movie 😖
    I've always only used the keyboard buttons to do this on previous versions, and having to grab a mouse to close a popup every time I change movie/episode makes the version pretty much unusable for me, any idea what could cause this? (same thing happens with previous, but pause/play works as expected)
    edit: from the server side there's absolutely no difference in logs between the 2 (both in generic log and transcode logs), so I'd guess it's a client issue?
  • Talem84
    J
    May 17 03:07:02 jellyfin systemd[1]: jellyfin.service: Scheduled restart job, restart counter is at 5.
    May 17 03:07:02 jellyfin systemd[1]: Stopped Jellyfin Media Server.
    May 17 03:07:02 jellyfin systemd[1]: jellyfin.service: Start request repeated too quickly.
    May 17 03:07:02 jellyfin systemd[1]: jellyfin.service: Failed with result 'exit-code'.
    May 17 03:07:02 jellyfin systemd[1]: Failed to start Jellyfin Media Server.
  • cptn

    As someone else mentioned above, it looks like it's not a jellyfin issue.
    It seems like a system config issue that's preventing you from starting the service correctly.
    You mention using casaos.

    You should go through the casaos docs and support to see how to get jellyfin started and working.
    You first want to get a fresh jellyfin install working.

    Then you can move your backups into that fresh install and work from there.

  • TideHunter
    I've got a bunch of media that is .mp4, .avi & .mkv but none of them show up in the list when I add them.
  • image.png
  • image.png
  • jkboy
    Gotta have your files named per this https://jellyfin.org/docs/general/server/media/movies
  • * Gotta have your files named per this https://jellyfin.org/docs/general/server/media/movies
  • Might help if the date is at the end
  • also the folder name if you have the media in its own folder make sure it matches the movie name.
  • phmg701
    Hello, on MacOS/Intel I jus updated Jellyfin Media Player to 1.10 and it stopped working.
    None of the clickable links can be clicked, I attach both the screenshot and the log as suggested.
    Thanks!
  • image.png
  • Resident Unraid Hater
    macOS version?
  • phmg701
    14.4, it's buried in the log 😅
  • gnattu
    Will be fixed in the next point release of JMP
  • Use dev builds if you cannot wait
  • This version will not be signed so gatekeeper will warn you about that
  • ysilla
    In reply to
    ysilla

  • I'm getting a very weird error since I updated to 10.9, when playing from any playlist:
    - if I click "next" on the OSD, it goes to the next movie (as expected)
    - if I press "next" using the keyboard button, it also goes to the next movie (as expected), but it also shows an error popup over the movie 😖
    I've always only used the keyboard buttons to do this on previous versions, and having to grab a mouse to close a popup every time I change movie/episode makes the version pretty much unusable for me, any idea what could cause this? (same thing happens with previous, but pause/play works as expected)
  • also I can confirm I get the same issue on multiple browsers (tested FF and edge) and multiple devices (even without media key on keyboard, using autohotkey to send Media_Next input), same error message pops up when using the key, but not with OSD buttons 🤔
  • oh, looks like there's an issue for it here https://github.com/jellyfin/jellyfin-web/issues/5523
  • * oh, looks like there's an issue for it here https://github.com/jellyfin/jellyfin-web/issues/5523
  • gnattu
    In reply to
    ysilla

  • also I can confirm I get the same issue on multiple browsers (tested FF and edge) and multiple devices (even without media key on keyboard, using autohotkey to send Media_Next input), same error message pops up when using the key, but not with OSD buttons 🤔
  • I think I might know what the problem is, and probably this only happens on windows
  • On windows that hotkey is handled twice by two event handlers
  • one of the succeeded and navigates to the next track
  • the other one just failed
  • phmg701
    In reply to
    gnattu

  • Will be fixed in the next point release of JMP
  • Thanks, I could have waited but I wanted to test this anyway. I can confirm the problem is solved!
  • manwithpowers
    M

    This message is being deleted…

  • ysilla
    In reply to
    gnattu

  • On windows that hotkey is handled twice by two event handlers
  • I'd guess it's something like this yes, looking at the js console I see "playing next track" twice when using the key, but just once when using OSD
  • ysilla
    also yes just tested from mac and linux, no issue there on ff or chrome
  • gnattu
    Only browsers on windows sent both the media session event and the raw key events to the web page
  • and we have a handler for both
  • macOS and Linux browsers only send the media session event, not the raw key event
  • araly
    hello, I installed jellyfin yesterday on my desktop computer (using the arch extra packages) and i can now the few test movies i put on there on that computer

    I tried to access the jellyfin instance from the local network (steam deck and my phone) using the apps (from flathub and android). none of that works

    I'm really confused about how the local network works. I have syncthing on my steam deck and phone, which never has any issues connecting. I have a Valetudo (open source robot cleaner thingy) that sometimes i can access, sometimes not. and i have a VPN on my computer and phone, that sometimes i need to disable to access valetudo, but sometimes not. (never effects syncthing though)

    what could be wrong here ? anyone has an idea on what to do ? all I ever find from searching "jellyfin local network" is the windows firewall causing issue, but there's no windows here
  • Miku <3
    Is it just me or can I not connect to jellyfin from an outside network?
  • octe
    I was organizing my libraries and either after a rename or delete i managed to get a ghost library. It shows up in the home view, is scanned with "scan all libraries" (failing). But it doesn't show up under Libraries in the administration. How can i delete this?
  • Miku <3
    I upgraded to 10.9.1 today, and 10.8.1 was doing fine
  • In reply to
    Miku <3

  • Is it just me or can I not connect to jellyfin from an outside network?
  • Any fixes for this? Or is right now just a me issue
  • Hmm, odd. It seems only my firefox instance is messed up please ignore my previous statements
  • Miku <3
        "content": "{{MentionType}}",
        "avatar_url": "{{AvatarUrl}}",
        "username": "{{BotUsername}}",
        "embeds": [
            {   
                "author": {
                    {{#if_equals ItemType 'Season'}}
                        "name": "Season Added • {{{SeriesName}}} {{{Name}}}",
                    {{/if_equals}}
    
                    {{#if_equals ItemType 'Episode'}}
                        "name": "Episode Added • {{{SeriesName}}} S{{SeasonNumber00}}E{{EpisodeNumber00}} ~ {{{Name}}}",
                    {{/if_equals}}
    
                    {{#if_equals ItemType 'Movie'}}
                        "name": "Movie Added • {{{Name}}}",
                    {{/if_equals}}
    
                    "url": "{{ServerUrl}}/web/index.html#!/details?id={{ItemId}}&serverId={{ServerId}}"
                },
                
    
                "thumbnail":{
                    "url": "{{ServerUrl}}/Items/{{ItemId}}/Images/Primary"
                },
    
                "description": "
                {{~#if_exist Overview~}}
                    > {{{Overview}}}\n\n
                {{~/if_exist~}}
    
                {{~#if_exist ServerUrl~}}
                    [**Watch Now** ]({{ServerUrl}}/web/index.html#!/details?id={{ItemId}}&serverId={{ServerId}})
                {{~/if_exist~}}
    
                {{~#if_exist Provider_imdb~}}
                    • [**IMDb** ](https://www.imdb.com/title/{{Provider_imdb}}/)
                {{~/if_exist~}}
                
                {{~#if_exist Provider_tmdb~}}
                    {{~#if_equals ItemType 'Movie'~}}
                        • [**TMDb** ](https://www.themoviedb.org/movie/{{Provider_tmdb}})
                    {{~else~}}
                        • [**TMDb** ](https://www.themoviedb.org/tv/{{Provider_tmdb}})
                    {{~/if_equals~}}
                {{~/if_exist~}}
    
                {{~#if_exist Provider_tvmaze~}}
                    {{~#if_equals ItemType 'Episode'~}}
                        • [**TVMaze** ](https://www.tvmaze.com/episodes/{{Provider_tvmaze}})
                    {{~/if_equals~}}
    
                    {{~#if_equals ItemType 'Series'~}}
                        • [**TVMaze** ](https://www.tvmaze.com/shows/{{Provider_tvmaze}})
                    {{~/if_equals~}}
                {{~/if_exist~}}
    
                {{~#if_exist Provider_audiodbartist~}}
                    • [**AudioDb** ](https://theaudiodb.com/artist/{{Provider_audiodbartist}})
                {{~/if_exist~}}
    
                {{~#if_exist Provider_musicbrainzartist~}}
                    • [**MusicBrainz** ](https://musicbrainz.org/artist/{{Provider_musicbrainzartist}})
                {{~/if_exist~}}
    
                {{~#if_exist Provider_musicbrainztrack~}}
                    • [**MusicBrainz Track** ](https://musicbrainz.org/track/{{Provider_musicbrainztrack}})
                {{~/if_exist~}}
    
                {{~#if_exist Provider_musicbrainzalbum~}}
                    • [**MusicBrainz Album** ](https://musicbrainz.org/release/{{Provider_musicbrainzalbum}})
                {{~/if_exist~}}
    
                {{~#if_exist Provider_theaudiodbalbum~}}
                    • [**TADb Album** ](https://theaudiodb.com/album/{{Provider_theaudiodbalbum}})
                {{~/if_exist~}}
                ",
    
                "color": "3381759",
    
                "footer": {
                    "text": "{{{ServerName}}} ",
                    "icon_url": "{{AvatarUrl}}"
                },
    
                "timestamp": "{{Timestamp}}"
            }
        ]
    }```
    
    I was using this before in the old update and it worked fine for me (sending discord notifs when I added new stuff) but now it isn't working, any clues on why that could be?
  • gnattu
    In reply to
    octe

  • I was organizing my libraries and either after a rename or delete i managed to get a ghost library. It shows up in the home view, is scanned with "scan all libraries" (failing). But it doesn't show up under Libraries in the administration. How can i delete this?
  • Which version and how was the library created? (like created newly or migrated from an old install)
  • This really should not happen with 10.9.1
  • But is was a problem in early unstable
  • Teo
    Hello! Getting this error after transcoding with unmanic.
    [mp4 @ 0x62ee1b64bb40] Packet duration: -16 / dts: 6135984 is out of range
  • Allegra
    In reply to
    Miku <3

  •     "content": "{{MentionType}}",
        "avatar_url": "{{AvatarUrl}}",
        "username": "{{BotUsername}}",
        "embeds": [
            {   
                "author": {
                    {{#if_equals ItemType 'Season'}}
                        "name": "Season Added • {{{SeriesName}}} {{{Name}}}",
                    {{/if_equals}}
    
                    {{#if_equals ItemType 'Episode'}}
                        "name": "Episode Added • {{{SeriesName}}} S{{SeasonNumber00}}E{{EpisodeNumber00}} ~ {{{Name}}}",
                    {{/if_equals}}
    
                    {{#if_equals ItemType 'Movie'}}
                        "name": "Movie Added • {{{Name}}}",
                    {{/if_equals}}
    
                    "url": "{{ServerUrl}}/web/index.html#!/details?id={{ItemId}}&serverId={{ServerId}}"
                },
                
    
                "thumbnail":{
                    "url": "{{ServerUrl}}/Items/{{ItemId}}/Images/Primary"
                },
    
                "description": "
                {{~#if_exist Overview~}}
                    > {{{Overview}}}\n\n
                {{~/if_exist~}}
    
                {{~#if_exist ServerUrl~}}
                    [**Watch Now** ]({{ServerUrl}}/web/index.html#!/details?id={{ItemId}}&serverId={{ServerId}})
                {{~/if_exist~}}
    
                {{~#if_exist Provider_imdb~}}
                    • [**IMDb** ](https://www.imdb.com/title/{{Provider_imdb}}/)
                {{~/if_exist~}}
                
                {{~#if_exist Provider_tmdb~}}
                    {{~#if_equals ItemType 'Movie'~}}
                        • [**TMDb** ](https://www.themoviedb.org/movie/{{Provider_tmdb}})
                    {{~else~}}
                        • [**TMDb** ](https://www.themoviedb.org/tv/{{Provider_tmdb}})
                    {{~/if_equals~}}
                {{~/if_exist~}}
    
                {{~#if_exist Provider_tvmaze~}}
                    {{~#if_equals ItemType 'Episode'~}}
                        • [**TVMaze** ](https://www.tvmaze.com/episodes/{{Provider_tvmaze}})
                    {{~/if_equals~}}
    
                    {{~#if_equals ItemType 'Series'~}}
                        • [**TVMaze** ](https://www.tvmaze.com/shows/{{Provider_tvmaze}})
                    {{~/if_equals~}}
                {{~/if_exist~}}
    
                {{~#if_exist Provider_audiodbartist~}}
                    • [**AudioDb** ](https://theaudiodb.com/artist/{{Provider_audiodbartist}})
                {{~/if_exist~}}
    
                {{~#if_exist Provider_musicbrainzartist~}}
                    • [**MusicBrainz** ](https://musicbrainz.org/artist/{{Provider_musicbrainzartist}})
                {{~/if_exist~}}
    
                {{~#if_exist Provider_musicbrainztrack~}}
                    • [**MusicBrainz Track** ](https://musicbrainz.org/track/{{Provider_musicbrainztrack}})
                {{~/if_exist~}}
    
                {{~#if_exist Provider_musicbrainzalbum~}}
                    • [**MusicBrainz Album** ](https://musicbrainz.org/release/{{Provider_musicbrainzalbum}})
                {{~/if_exist~}}
    
                {{~#if_exist Provider_theaudiodbalbum~}}
                    • [**TADb Album** ](https://theaudiodb.com/album/{{Provider_theaudiodbalbum}})
                {{~/if_exist~}}
                ",
    
                "color": "3381759",
    
                "footer": {
                    "text": "{{{ServerName}}} ",
                    "icon_url": "{{AvatarUrl}}"
                },
    
                "timestamp": "{{Timestamp}}"
            }
        ]
    }```
    
    I was using this before in the old update and it worked fine for me (sending discord notifs when I added new stuff) but now it isn't working, any clues on why that could be?
  • known bug, already fixed and will be in the next release of webhooks https://github.com/jellyfin/jellyfin-plugin-webhook/issues/232
  • * known bug, already fixed and will be in the next release of webhooks https://github.com/jellyfin/jellyfin-plugin-webhook/issues/232
  • Miku <3
    In reply to
    Allegra

  • known bug, already fixed and will be in the next release of webhooks https://github.com/jellyfin/jellyfin-plugin-webhook/issues/232
  • Alright, thank you for disclosing.
  • araly
    In reply to
    araly

  • hello, I installed jellyfin yesterday on my desktop computer (using the arch extra packages) and i can now the few test movies i put on there on that computer

    I tried to access the jellyfin instance from the local network (steam deck and my phone) using the apps (from flathub and android). none of that works

    I'm really confused about how the local network works. I have syncthing on my steam deck and phone, which never has any issues connecting. I have a Valetudo (open source robot cleaner thingy) that sometimes i can access, sometimes not. and i have a VPN on my computer and phone, that sometimes i need to disable to access valetudo, but sometimes not. (never effects syncthing though)

    what could be wrong here ? anyone has an idea on what to do ? all I ever find from searching "jellyfin local network" is the windows firewall causing issue, but there's no windows here
  • I fixed all my issues.

    I enabled the jellyfin service on my active zone in firewalld

    and I enabled LAN connections on my VPN (mullvad)

  • araly
    i'm able to connect to my jellyfin server without issues on firefox, but i installed the jellyfin media player through flatpak, and on that app i can't access my server
  • i'm on my local network, anyone knows if i need to enable something for the flatpak app to access the local network ?
  • Thedinotamer
    How do I get transcoding to work with the linuxserver.io docker container on unraid? I have tried adding "--device=/dev/dri" and "--device=/dev/dri:/dev/dri" in extra parameters and when that didn't work I also added /dev/dri as a device instead. All that with no result. I also have the Intel_GPU_TOP plugin and GPU Statistics plugin installed
  • * How do I get hardware acceleration to work with the linuxserver.io docker container on unraid? I have tried adding "--device=/dev/dri" and "--device=/dev/dri:/dev/dri" in extra parameters and when that didn't work I also added /dev/dri as a device instead. All that with no result. I also have the Intel_GPU_TOP plugin and GPU Statistics plugin installed
  • * How do I get hardware acceleration to work with the linuxserver.io docker container on unraid? I have tried adding
    "--device=/dev/dri" and "--device=/dev/dri:/dev/dri" in extra parameters and when that didn't work I also added /dev/dri as a device instead. All that with no result. I also have the Intel_GPU_TOP plugin and GPU Statistics plugin installed
  • rcv11x (Alex)

    Is it normal that when I play a media above the url appears like this?

    shouldn't the url be longer?

  • image.png
  • if I remember correctly, a much longer url used to appear before.

You're viewing a snapshot of events from 2024-05-17. Use a Matrix client to start chatting in this room.

May 2024

  1. Sun
  2. Mon
  3. Tue
  4. Wed
  5. Thu
  6. Fri
  7. Sat
  8. 1
  9. 2
  10. 3
  11. 4
  12. 5
  13. 6
  14. 7
  15. 8
  16. 9
  17. 10
  18. 11
  19. 12
  20. 13
  21. 14
  22. 15
  23. 16
  24. 17
  25. 18
  26. 19
  27. 20
  28. 21
  29. 22
  30. 23
  31. 24
  32. 25
  33. 26
  34. 27
  35. 28
  36. 29
  37. 30
  38. 31

Troubleshooting for the Jellyfin project.  See the space for more rooms: #jellyfinorg:matrix.org

This room is accessible because it was set to world readable by @anthonylavado:bonifacelabs.ca on 2020-04-07.

This room is being indexed by search engines (more info).

Developer options

Toggles

Backend timing

todo: window.tracingSpansForRequest

Room ID

!YjAUNWwLVbCthyFrkz:bonifacelabs.ca