Search the Community
Showing results for tags 'movies'.
-
Why are some of my media folders getting classified as tv shows when they are movies?
- 5 replies
-
- classifing
- tv shows
-
(and 5 more)
Tagged with:
-
Ability to search movies on server while watching live TV
The Mad Titan posted a topic in Feature Requests
One feature that I like in Emby is that I can view my guide for live TV and even set DVR while I am watching one of my shows or movies on demand. Now, I would love if you guys can figure out how to do vice versa. Wjen I am watching live TV I can go through my Emby catalog without having to leave live TV. Thank You for reading. -
Hello, I'm currently looking for a system that would automatically send an e-mail each time a film is added to Emby. I know there's the Email Notifications extension, but it just sends a plain text message with the name of the new movie, and that's all, and it's not pretty at all... (see photo) Is there another way to send an Email notification each time a film is added to Emby, but with the image of the film poster for example? Thanks in advance
-
Thanks for a great plug in Auto Organize works well for TV series but i cannot get it to work for movies There is no prompt for a 'movie library' unless I enable "auto detect for movies" And while there is a library prompt I cannot access the input Let me know if you need me to enable 'debug' and or upload a log file
-
First crack at this... using powershell for now since it's my native language. Attempting to create a composite movie rating leveraging the standard set of ratings sources, while adding weighting measures to various community ratings. Definitely some more conditions and logic will be needed for scenarios where subsets of ratings sources are available, but the weighting math should hopefully mitigate a chunk of that. Feedback welcome! $moviename = "Monty Python and the Holy Grail" $rtaudiencerating = 95 $rtaudiencecount = 645107 $rtcriticrating = 98 $rtcriticcount = 82 $tmdbrating = 7.8 $tmdbcount = 5028 $traktrating = 8.3 $traktcount = 11089 $metacriticrating = 91 $imdbrating = 8.2 $imdbcount = 547137 $ratings = @{} $null = $ratings.Add('tomatometerallaudience',@{'MaxValue'=100;'rating'=$rtaudiencerating;'weight'=10;'votecount'=$rtaudiencecount } ) $null = $ratings.Add('tomatometerallcritics',@{'MaxValue'=100;'rating'=$rtcriticrating;'weight'=10;'votecount'=$rtcriticcount} ) $null = $ratings.Add('themoviedb',@{'MaxValue'=10;'rating'=$tmdbrating;'weight'=20;'votecount'=$tmdbcount} ) $null = $ratings.Add('trakt',@{'MaxValue'=10;'rating'=$traktrating;'weight'=20;'votecount'=$traktcount} ) $null = $ratings.Add('metacritic',@{'MaxValue'=100;'rating'=$metacriticrating;'weight'=20;'votecount'=0} ) $null = $ratings.Add('imdb',@{'MaxValue'=10;'rating'=$imdbrating;'weight'=20;'votecount'=$imdbcount} ) $community = @{} $totalcommunityvotes = $ratings['imdb'].votecount + $ratings['trakt'].votecount + $ratings['themoviedb'].votecount + $ratings['tomatometerallaudience'].votecount $imdbpercentvotes = [math]::Round( $ratings['imdb'].votecount / $totalcommunityvotes,3) $traktpercentvotes = [math]::Round( $ratings['trakt'].votecount / $totalcommunityvotes,3) $tmdbpercentvotes = [math]::Round( $ratings['themoviedb'].votecount / $totalcommunityvotes,3) $rtpercentvotes = [math]::Round( $ratings['tomatometerallaudience'].votecount / $totalcommunityvotes,3) $communitysum = $imdbpercentvotes + $traktpercentvotes + $tmdbpercentvotes + $rtpercentvotes if ( $communitysum -gt 1 ) { $rtpercentvotes = $rtpercentvotes - ($communitysum - 1) } elseif ( $communitysum -lt 1 ) { $imdbpercentvotes = $imdbpercentvotes + (1 - $communitysum) } $adjtraktcount = 1; if ( $traktpercentvotes -eq 0 -and $ratings['trakt'].votecount -ne 0 ) { $adjtraktcount = 100 } elseif ( $traktpercentvotes -lt 0.002 ) { $adjtraktcount = 100 } elseif ( $traktpercentvotes -lt 0.004 ) { $adjtraktcount = 80 } elseif ( $traktpercentvotes -lt 0.006 ) { $adjtraktcount = 60 } elseif ( $traktpercentvotes -lt 0.008 ) { $adjtraktcount = 50 } elseif ( $traktpercentvotes -lt 0.010 ) { $adjtraktcount = 30 } elseif ( $traktpercentvotes -lt 0.100 ) { $adjtraktcount = 10 } $adjtmdbcount = 1; if ( $tmdbpercentvotes -eq 0 -and $ratings['themoviedb'].votecount -ne 0 ) { $adjtmdbcount = 100 } elseif ( $tmdbpercentvotes -lt 0.002 ) { $adjtmdbcount = 100 } elseif ( $tmdbpercentvotes -lt 0.004 ) { $adjtmdbcount = 80 } elseif ( $tmdbpercentvotes -lt 0.006 ) { $adjtmdbcount = 60 } elseif ( $tmdbpercentvotes -lt 0.008 ) { $adjtmdbcount = 50 } elseif ( $tmdbpercentvotes -lt 0.010 ) { $adjtmdbcount = 30 } elseif ( $tmdbpercentvotes -lt 0.100 ) { $adjtmdbcount = 10 } $adjtotalcommunityvotes = $ratings['imdb'].votecount + ($ratings['trakt'].votecount*$adjtraktcount) + ($ratings['themoviedb'].votecount*$adjtmdbcount) + $ratings['tomatometerallaudience'].votecount $adjimdbpercentvotes = [math]::Round( $ratings['imdb'].votecount / $adjtotalcommunityvotes,3) $adjtraktpercentvotes = [math]::Round( ($ratings['trakt'].votecount * $adjtraktcount) / $adjtotalcommunityvotes,3) $adjtmdbpercentvotes = [math]::Round( ($ratings['themoviedb'].votecount * $adjtmdbcount) / $adjtotalcommunityvotes,3) $adjrtpercentvotes = [math]::Round( $ratings['tomatometerallaudience'].votecount / $adjtotalcommunityvotes,3) $adjcommunitysum = $adjimdbpercentvotes + $adjtraktpercentvotes + $adjtmdbpercentvotes + $adjrtpercentvotes if ( $adjcommunitysum -gt 1 ) { $adjrtpercentvotes = $adjrtpercentvotes - ($adjcommunitysum - 1) } elseif ( $adjcommunitysum -lt 1 ) { $adjimdbpercentvotes = $adjimdbpercentvotes + (1 - $adjcommunitysum) } $null = $community.Add('imdb',@{'votecount'=$ratings['imdb'].votecount;'percentage'=$imdbpercentvotes;'adjpercent'=$adjimdbpercentvotes } ) $null = $community.Add('trakt',@{'votecount'=$ratings['trakt'].votecount;'percentage'=$traktpercentvotes;'adjpercent'=$adjtraktpercentvotes } ) $null = $community.Add('themoviedb',@{'votecount'=$ratings['themoviedb'].votecount;'percentage'=$tmdbpercentvotes;'adjpercent'=$adjtmdbpercentvotes } ) $null = $community.Add('tomatometerallaudience',@{'votecount'=$ratings['tomatometerallaudience'].votecount;'percentage'=$rtpercentvotes;'adjpercent'=$adjrtpercentvotes } ) $communityweight = 70; if ( !$ratings.ContainsKey('metacritic') ) { $communityweight = $communityweight + 20 } if ( !$ratings.ContainsKey('tomatometerallcritics') ){ $communityweight = $communityweight + 10 } $scoring = @{}; $scoringtable = New-Object System.Collections.ArrayList $ratings.GetEnumerator() | ForEach-Object { $current = $_; $source = $current.Name $sourcetype = $null; if ( $source -in ('tomatometerallcritics','metacritic') ) { $sourcetype = "Critic" } else { $sourcetype = "Community" } $sourcerating = $current.Value.rating $sourcemax = $current.Value.MaxValue if ( $sourcemax -eq 5 ) { $adjustedmax = $sourcemax*20; $adjustedrating = $sourcerating*20 } elseif ( $sourcemax -eq 10 ) { $adjustedmax = $sourcemax*10; $adjustedrating = $sourcerating*10 } else { $adjustedmax = $sourcemax; $adjustedrating = $sourcerating } $sourcevotecount = $current.Value.votecount $communitylookup = $null; $communitylookup = $community[$source] $communityvotepercent = $communitylookup.percentage $communityadjvotepercent = $communitylookup.adjpercent $weighting = 0; if ( $sourcetype -eq "Community" ) { $weighting = $communityadjvotepercent * $communityweight } else { $weighting = $current.Value.weight } $newcompositerating = ($adjustedrating * ($weighting/100 ) ) $null = $scoring.Add($source,@{'SourceType'=$sourcetype;'SourceVoteCount'=$sourcevotecount;'SourceRating'=$sourcerating;'SourceMax'=$sourcemax;'AdjustedRating'=$adjustedrating;'AdjustedMax'=$adjustedmax;'CommunityVotePrc'=$communityvotepercent;'AdjCommunityVotePrc'=$communityadjvotepercent; 'Weight'=$weighting; 'NewRating'= $newcompositerating } ) $null = $scoringtable.Add([pscustomobject]@{'Source' =$source;'SourceType'=$sourcetype;'SourceVoteCount'=$sourcevotecount;'SourceRating'=$sourcerating;'SourceMax'=$sourcemax;'AdjustedRating'=$adjustedrating;'AdjustedMax'=$adjustedmax;'CommunityVotePrc'=$communityvotepercent;'AdjCommunityVotePrc'=$communityadjvotepercent; 'Weight'=$weighting; 'NewRating'= $newcompositerating } ) } #$highestweight = $scoringtable | Sort-Object Weight -Descending | Select-Object -First 1 if ( ($scoringtable.Weight | Measure-Object -Sum).Sum -gt 100.1 ) { Write-Warning "Weighting calculated over 100.1%" } elseif ( ($scoringtable.Weight | Measure-Object -Sum).Sum -lt 99.9 ) { Write-Warning "Weighting calculated under 99.9%" } $NewRating = [math]::Round( (($scoringtable.NewRating | Measure-Object -Sum).Sum/10),1) Write-Output "","" Write-Output "Current movie is $($moviename)." Write-Output "Rotten Tomatoes Critic rating is $($rtcriticrating) out of 100." Write-Output "Rotten Tomatoes Community rating is $($rtaudiencerating) out of 100." Write-Output "Metacritic rating is $($metacriticrating) out of 100." Write-Output "Trakt community rating is $($traktrating) out of 10." Write-Output "IMDB community rating is $($imdbrating) out of 10." Write-Output "The MovieDB rating is $($tmdbrating) out of 10." Write-Output "","New composite rating is $($NewRating) out of 10."
-
Would be nice if there was a feature just like the into skip, however instead of skipping the intro of TV Shows skip the end credits of movies and automatically load next movie or skip to next movie. Read somewhere someone saying plex is working on something similar. Figured with the way intro skip is setup it wouldn't be that hard to implement into movie credit skip etc
- 1 reply
-
- introskip
- intro skip
-
(and 1 more)
Tagged with:
-
Hi guys, since the last update (4.8.0.15 or 16 i don't remember) movies are very long to start. before last update of ffmpeg on synology (4.4.3-47) i had a subtitle problem but it is now ok. But, movies are very long to start, near a minute on 4k movies, seems that emby server loops on detecting LG app device profile. Start a movies in full HD is "correct". in fact everything is fine and works as espected but it is very long. except NOT IME TO DIE which crash whereas server detect direct play on dashboard here are fresh logs tv is LG OLED65C9 emby Version 4.8.0.17 beta thanks hardware_detection-63804930799.txt ffmpeg-remux-834f259f-8ab1-41b3-ab1f-d6f78be6cc94_1.txt ffmpeg-transcode-a332ba4c-52ae-46fb-8a21-17af98016c6a_1.txt embyserver-63804931200.txt ffmpeg-remux-1254c3e4-5d7a-4df8-853a-3c8650d0fd26_1.txt ffmpeg-transcode-e2bac43f-38cb-4555-bb84-661fbe69629d_1.txt ffmpeg-transcode-e608863d-3060-4dde-82e1-840557f373f0_1.txt ffmpeg-transcode-c8201c8c-6374-40b1-8bb3-bfc510e1f46d_1.txt ffmpeg-transcode-32ca8979-8f5f-42e5-ab50-63d718d6208f_1.txt ffmpeg-transcode-0655524d-ab64-4bf2-a421-4a335561952f_1.txt ffmpeg-transcode-918a95a7-3b80-45b6-b9e6-77b88a12d291_1.txt ffmpeg-transcode-0642fec3-f6e9-4caf-8e59-75290869d3f1_1.txt ffmpeg-transcode-89d00bc7-ced0-4881-b7d1-0fd1b7cb0498_1.txt ffmpeg-transcode-8c214ba7-cbc9-4ac3-aec5-0cbc1f84540b_1.txt ffmpeg-transcode-e8b0448f-eeba-44b1-b2bc-a9a8fef3f3aa_1.txt ffmpeg-remux-889ff01c-deed-44f6-8cb1-8315f214d13a_1.txt ffmpeg-transcode-b86072c5-d520-4c25-bf6c-6851609dc52d_1.txt ffmpeg-transcode-78d54dfc-3eb1-45f2-97cf-291d77fdce78_1.txt ffmpeg-transcode-a18087f7-8af5-4e78-9b0d-07c8c272d464_1.txt ffmpeg-transcode-a5c8317e-9c8c-4f32-96cf-463a983de6c5_1.txt ffmpeg-transcode-3662ceff-9379-474f-b43f-ae24addbc83f_1.txt ffmpeg-transcode-1c890f74-31f9-4bb3-9453-5fe38bd359d5_1.txt ffmpeg-transcode-f9865e23-24b4-4e93-a7b0-98289c3a2913_1.txt ffmpeg-transcode-b359816a-1548-4c35-b6c7-549031d271d2_1.txt ffmpeg-transcode-490e0a27-b58d-41d6-b6f8-438c939bded4_1.txt ffmpeg-transcode-1a39f25b-efcf-41e6-aee6-00aa0347eb31_1.txt embyserver.txt
-
For example, I have all Terminator's movies, when i pick one (for example T2), I want to see in "More like this", in first place, all movies in the "Terminator" franchise. Actually, I create news Genre called "Terminator" and "Franchise" for this. But, "Terminator" its not a genre, and in the tab "Genre" is unorganizated. Additionaly, I create a Tag called "Terminator", but this dont work for offer all Terminator's movies in "More like this"
-
Hello! I can't download any movie by clicking on the download button of any movie. As soon as I click on download on the movie of my choice, I go to the "manage" tab to follow the progress and after waiting 30 min it remains on 0%... all users have the same problem including me who is the administrator. I am Emby first and my Emby is on Linux. Can you help me? Traduit avec DeepL (https://www.deepl.com/app/?utm_source=ios&utm_medium=app&utm_campaign=share-translation
-
I was wondering why there is no support for matching movies with the TVDB. I have The Oscars 2020, which is available in The TVDB but not The MovieDb. In the metadata sources, The TVDB doesn't show up for movies.
-
After we watching a movie, we frequently base our "next watch" upon what actors are in that movie and then doing a search by clicking on the actor icon. I did several searches and realized, after ordering several movies, that I already had them after finding DUPICATES pop up in the suggested movies afterwards. We also use the EMBY search feature for actors and we found that actors that I had many movies for (there's tons of them), but only had 12 according to EMBY in my libraries. Is 12 an (artificial) limitation? Imagine having friends over and doing a search on "Christmas" movie titles and coming back with only 12 movies! Does this make sense? No this is insane.. Is there a hidden option for changing the number of movies that I'm not aware of? Do I have to go and create separate libraries for my many favorite actors and Movie types for them all to display completely? @LukePlease help or enlighten me!!! Thanks! (Feel like - Desperately Seeking Susan (1985)! Don't blame me. I like the odies!!) Running the most current release of EMBY. Windows client. Windows 10 64-bit, lots of processing power memory and huge storage etc..
- 11 replies
-
- search
- limitations
-
(and 2 more)
Tagged with:
-
Hallo, Ich habe die Emby Server Version von 4620 auf 4640 erneuert. Dies habe ich über Portainer gemacht. Nun sehe ich aber nur meine Musiksammlung. Bei den Fotos und Filmen kann Emby keine Elemente finden. Ein Scan brachte keine neuen Ergebnisse. Auch an den Einstellungen wurde nichts verändert. Das Thema hat sich erledigt. Es war eine Servereinstellung meinerseits. Habe in Portainer das falsche Verzeichnis der Daten angegeben
-
Hi Emby I logged this problem a while ago, can I please have my "Favorites" back on the Movies collection? I use this a lot and am frustrated it has been "bumped" off in place of "TAGS" etc on the Theatre pp. Favorites works in TV shows and on the Web App and the IOS app just not on Theater. Can I please have this back? Cheers guys Rob
-
Hey Guys, sorry if this is already been mentioned somewhere else. I would like to know if it would be possible to have the option to disable the trailer, folders and episodes tab within the emby movies and tv shows section ? Onyx
-
Hi, I have the movie Gimme Shelter and several extras on my PC as such: f:\video\movies\gimme shelter (directory) gimme shelter.mp4 is a file in the above directory A sub-directory exists called Extras. In the Extras directory are the following files: Gimme Shelter Outtakes.mp4 Gimme Shelter Re-Release Trailer.mp4 Gimme Shelter Theatrical Trailer 1.mp4 Gimme Shelter Theatrical Trailer 2.mp4 When I click on Gimme Shelter in the Movies library of Emby, the movie is available as is the Outtakes extra but the trailer extras are not showing. Does anyone have any ideas as to why that is and what I should do to rectify it? Thanks. Best, Bruce
-
Hello,yesterday I setup emby but on port 80 since my router cant port forward 8096 beause of a security thing everything was working and I added the m3u so some movies appeard on my ip:80 but when I went to the live tv I saw it needed subscription,I bought it. I enterm 3u and when I go on my ip : 80 I see no channels and not any movies anymore how can I fix that? I tried a file/m3u link neither did work Also I tried the iptv plugin but its not stable and also I can only add channels one by one
-
Hello, I've named all my files and folders according to the movie naming guide for emby. But some titles do not get recognized, especially (but not exclusively) non-english titles. And non of them seem to be quite unusual or hard to detect. For example: Movies/Es (2017)/Es (2017) - 1080p.mkv [OT: It (2017)] -> identified as: Körper und Seele (2017) Movies/Oben (2009)/Oben (2009) - 1080p.mkv [OT: Up (2009)] -> identified as: Das Allgäu von oben (2009) Movies/Die Fliege (1986)/Die Fliege (1986) - 720p.mkv [OT: The Fly (1986)] -> identified as: Millowitsch Theater - Die spanische Fliege (1986) Movies/James Bond 007 (03) - Goldfinger (1964)/James Bond 007 - Goldfinger (1964) - 1080p.mp4 [OT: Goldfinger (1964)] -> identified as: James Bond 007 - Feuerball (1965) Berserk - Das goldene Zeitalter (2012), Berserk - Das goldene Zeitalter II (2012), Berserk - Das goldene Zeitalter III (2013) -> all three identified as: Berserk - Das goldene Zeitalter III (2013) english titles identified wrong are e.g.: Movies/The Raid (2011)/The Raid (2011) - 1080p.mkv -> identified as: Code Name: Geronimo(2012) Movies/Train to Busan (2016)/Train to Busan (2016) - 1080p.mkv -> identified as: Untitled Train To Busan Remake Also it was unable to detect 'Star Gate (1994)' because of that whitespace in the middle (like in 'Star Trek' ). After renaming to 'Stargate (1994)' it was fine. These are only examples. I know that identification is not trivial, therefore my question is: Can I name them better for emby, so that the auto detection has better results (without rename every movie to its english title)? I want to add something off topic: A while ago I identified every wrongly assigned movie by hand and added a sort title to almost every movie. Then I change the folder structure from '[mountpoint]/Movies/[all Movies]' to '[mountpoint]/Media/Movies/[all Movies]' and changed the path in the movie library (by removing the old and adding the new, because there is no edit/change functionality). Therefore all identifications were repeated, all identifications by hand and all sort titles were gone. I thought that emby would detect that it is still the exactly same folder with same content, only one layer deeper. I suggest that emby save some kind of folder hashes to be able to recognize that nothing changed in such cases.
-
Hola, Alguien sabe, como agregar o mostrar "Estudios" en la barra de menú de Películas ? En Tv shows, esto si se muestra, se puede también para las películas? Gracias.
-
I currently have all my movies in one folder and it works fine with Emby. However, in order to get things to work correctly with the movie themes plugin, the movies have to be in their own individual folders. Can someone recommend software or a method of automatically creating folders for each of the movies and puting the movie into the folder, along with the files that go along with them e.g. image files, nfo files, etc? Manually creating folders for around 3000 movies would be a pain to do!
-
Way to create unofficial movie collections or "box sets" in one of the meta-data databases out there?
Video Enthusiast posted a topic in General/Windows
Hi, So I am building a media library of workout videos. While many of them should really be entered as TV series (and behind the scenes I am making progress to let TVDB allow them), I was working a lot making entries at moviedb first. At moviedb for a long time they officially have supported this media type as long as one enters each workout video individually (as if it is standalone), but marked as a video. This works OK and you do get a nice poster for each video that people will photoshop to in a title to say what day it is (e.g. Leg day) - but it does mean that in Emby I have to set up a (movie) collection for each workouts series, and add each individual workout video into that collection (e.g. A Little Obsessed has 5 workouts). But when you get to something like 80 Day Obsession which has 80 videos, even though someone has entered them all individually in MovieDB, it is proving to be a PITA to manually create a collection in Emby for each of these. Since I'm planning on switching my Emby server from Windows (test box) to the Nvidia shield (in a few weeks, as my main Emby server) - I'd like to just create a collection in one of these 3rd party metadata database sites, and have Emby pull it all from there nice and clean. I did install the "Box Set Plugin" in Emby and I notice that it automatically put all the Star Wars movies into a collection without having me having to do anything! This is cool - except - Moviedb does not allow people to create "collections" in their database for anything but genuine movies themselves, and genuine sequels that are well known (e.g. Star wars 1-9). People who want to make a collection for things like all Marvel Universe movies have the same problem as I do. Moviedb says they are working on a solution for the Marvel Universe problem but it may take some time and even then it may only be allowed for genuine movies? Sorry for the long introduction to explain the problem, but does do any of you have a similar problem and an easy solution? is there some sort of "box-set" like plugin that doesn't rely on moviedb, or maybe somebody else runs an "unofficial" collections database that The Box Set / Collections plugin can link into?- 1 reply
-
- emby
- collections
-
(and 3 more)
Tagged with:
-
For some of my movies I have both an 1080p and a 4k Version saved into the same folder. Emby groups the files together properly and allows me to pick the version I want to watch. It seems that there are a few movies that just refuse to be added into a Collection when I do this. My John Wick movies show in a collection and have both 4K and HD in the same file. As will my Pacific Rim Movies. My Matrix Movies, will not go into a collection (even if I try to add them manually), The Incredibles will also not allow me to add them to a collection. I use the same file name structure for all of my movies.
- 99 replies
-
- Movies
- Collection
-
(and 3 more)
Tagged with:
-
Hi, Last week sometime my movies started all being matched as "Teens Titans Go". My tv series from Sonarr work fine so it's something specific to movies. Some background, I have Emby running on Centos 7, it updates every time there is a new stable version (currently 4.4.0.40). I have a SMB share to which I copy the new movies and then Emby picks it up from there. I can still click on movie -> Identify, copy and paste the movie name to the "Name" field and it will match correctly, but previously it would match it correctly from the get go. Any suggestions? Thanks. Warren.
-
Movie metadata for live TV (IMDB rating, movie runtime, link to trailer...etc)
NeilD7744 posted a topic in Feature Requests
A feature i would find really useful would be to see additional metadata when looking through "on now" and "upcoming movies" for live TV. In particular the ability to click on the "on now / upcoming" movie poster & where the options are to watch / record / more... have additional data such as IMDB & rotten tomatoes ratings, movie runtime & a link to be able to watch the movie trailer prior to setting a recording. Would this ever be considered / possible? -
Hey peeps, Just a quick post as i am new to emby and in the middle of changing over from plex. when starting to add my movies to emby i have noticed that they is no tab for "newly released movies". when showing my family our new emby they all was asking the same and im very shocked this hasn't been already done, i have seen a lot of threads about this but i dont think people know what they are on about to a certain degree. ei sorting movie by date, using a plugin or spotlight etc, as you can see in the photo below from my plex server, i have NEWLY released movie and RECENTLY added movies, im not going to be buying emby just yet as i would like to test it for a bit first to see what its like. i love the amount of customization you can do along with the tv mode, these types of things smash plex outta the water. i would like to have my media server a bit like Netflix and emby is starting to do that very well but little things can go along way and really hope this gets added and maybe movie genres tabs too.
-
Hey Guys, I am still trying out emby and in the middle of changing over from plex. my question is to find out why my libraries are not showing up properly. i have 2 main folders (movies) and (tv shows) these both work fine how ever i have another folder within my movies directory (movies 4k) which isn't working properly, no movies are showing up but the folder icon on the top show there are movies there. really stuck on how to fix this as i want 1 main library for all movies and then sub folders to other types like 4k movies etc. any help would be grateful. thanks guys