Jellyfin Forum
TV Show Episodes Not Showing Up - Printable Version

+- Jellyfin Forum (https://forum.jellyfin.org)
+-- Forum: Support (https://forum.jellyfin.org/f-support)
+--- Forum: General Questions (https://forum.jellyfin.org/f-general-questions)
+--- Thread: TV Show Episodes Not Showing Up (/t-tv-show-episodes-not-showing-up)



TV Show Episodes Not Showing Up - Psychological-Tap834 - 2024-06-07

I am trying to add Breaking Bad to my server (it is an Ubuntu server, jellyfin is not running in docker or anything). I got the episodes in mp4 format. I uploaded the files to my server into my shows folder with the recommended folder scheme. I checked on both the website and media player app if it works but no episodes show up under the show. When I hit the play button for the entire series, I got the error "Unable to find a valid media source to play." I thought this could be a problem with the mp4 format but I have other shows in the format that work. Please help! I can share any more info if needed.


RE: TV Show Episodes Not Showing Up - TheDreadPirate - 2024-06-07

Can you share your jellyfin log via pastebin?

/var/log/jellyfin

Does jellyfin have permission to read the files and folder?


RE: TV Show Episodes Not Showing Up - Psychological-Tap834 - 2024-06-07

(2024-06-07, 07:38 PM)TheDreadPirate Wrote: Can you share your jellyfin log via pastebin?

/var/log/jellyfin

Does jellyfin have permission to read the files and folder?

The pastebin is here. I found a line about it removing the Series in it but the listing is still on Jellyfin just without and episodes. I think it is because Jellyfin has no write access to any of my folders.


RE: TV Show Episodes Not Showing Up - TheDreadPirate - 2024-06-07

Is the pastebin link correct?


RE: TV Show Episodes Not Showing Up - Psychological-Tap834 - 2024-06-07

(2024-06-07, 09:20 PM)TheDreadPirate Wrote: Is the pastebin link correct?

Oh sorry it is this. I had the wrong capitalization on a letter. Sorry.


RE: TV Show Episodes Not Showing Up - TheDreadPirate - 2024-06-07

What is the output of this command?

Code:
sudo ls -ld /media /media/myfiles /media/myfiles/movies /media/myfiles/shows /media/myfiles/shows/Breaking\ bad
sudo ls -l /media/myfiles/shows/Breaking\ bad/



RE: TV Show Episodes Not Showing Up - Psychological-Tap834 - 2024-06-07

(2024-06-07, 09:37 PM)TheDreadPirate Wrote: What is the output of this command?

Code:
sudo ls -ld /media /media/myfiles /media/myfiles/movies /media/myfiles/shows /media/myfiles/shows/Breaking\ bad
sudo ls -l /media/myfiles/shows/Breaking\ bad/

For context minicheef99 is my account on the server

The ls -ld:

drwxr-xr-x 3 root        root        4096 May  7 23:49  /media
drwxr-xr-x 7 minicheef99 minicheef99 4096 Jun  7 18:51  /media/myfiles
drwxr-xr-x 2 minicheef99 minicheef99 4096 May  7 23:57  /media/myfiles/movies
drwxr-xr-x 4 minicheef99 minicheef99 4096 Jun  7 19:02  /media/myfiles/shows
drwxrwx--- 8 minicheef99 minicheef99 4096 Jun  7 21:41 '/media/myfiles/shows/Breaking Bad'

The ls -l

total 24
drwxrwx--- 2 minicheef99 minicheef99 4096 Jun  7 19:09 'Season 01'
drwxrwx--- 2 minicheef99 minicheef99 4096 Jun  7 19:14 'Season 02'
drwxrwx--- 2 minicheef99 minicheef99 4096 Jun  7 19:16 'Season 03'
drwxrwx--- 2 minicheef99 minicheef99 4096 Jun  7 18:55 'Season 04'
drwxrwx--- 2 minicheef99 minicheef99 4096 Jun  7 18:56 'Season 05'
drwxr-xr-x 2 minicheef99 minicheef99 4096 Jun  7 19:01  Specials



RE: TV Show Episodes Not Showing Up - TheDreadPirate - 2024-06-07

sudo chmod -R 755 '/media/myfiles/shows/Breaking Bad'


RE: TV Show Episodes Not Showing Up - Psychological-Tap834 - 2024-06-07

(2024-06-07, 09:47 PM)TheDreadPirate Wrote: sudo chmod -R 755 '/media/myfiles/shows/Breaking Bad'

It works. Thank you.