Issues with movies that have files names with Disc 1 and Part 1
#2
That's a known bug that I'm working on. Atm Ember does not check if there are more parts in the same folder if the file name has "Part" inside. I hope can fix that in the next Alpha release.

As workaround, if you don't have any multidisk, you can add this line to AdvancedSettings.xml in your .\Ember Media Manager\Profile\PROFILENAME folder:
Code:
<Setting Section="*EmberAPP" Content="None" Name="FileStacking" DefaultValue="">(.*?)([ _.-]*(?:cd|dvd|dis[ck])[ _.-]*[0-9]+)(.*?)(\.[^.]+)$</Setting>

Default includes "p(ar)t":
Code:
<Setting Section="*EmberAPP" Content="None" Name="FileStacking" DefaultValue="">(.*?)([ _.-]*(?:cd|dvd|p(?:ar)?t|dis[ck])[ _.-]*[0-9]+)(.*?)(\.[^.]+)$</Setting>


FYI: Kodi needs stacked file names to work properly with newer versions, but only if there is a second part, e.g.:
Avatar.part.1.HDTV.mkv
Avatar.part.2.HDTV.mkv
Avatar.HDTV-fanart.jpg
Avatar.HDTV-poster.jpg
Reply


Messages In This Thread
RE: Issues with movies that have files names with Disc 1 and Part 1 - by DanCooper - 2016-09-27, 13:31
Logout Mark Read Team Forum Stats Members Help
Issues with movies that have files names with Disc 1 and Part 10