2021-07-06, 10:53
I've been able to properly split my UHD and HD/SD movies using either a custom library node or a smart playlist. That's worked out flawlessly, especially since I can split it based on resolution size. I cannot, however, get my TV episodes to behave the same way. I've tried multiple methods, and each time I keep getting the TV episodes in either my HD/SD category or I get them in the UHD category. I cannot keep them separated, and it's really frustrating. I'm using a MySQL DB backend, as I have multiple clients I want this connecting to. This is what my current Smart Playlists look like:
Things I've done:
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="tvshows">
<name>4K TV Shows</name>
<match>all</match>
<rule field="path" operator="doesnotcontain">
<value>nfs://192.168.1.18/mnt/media/tv/</value>
</rule>
<rule field="playlist" operator="isnot">
<value>TV Shows</value>
</rule>
<order direction="ascending">sorttitle</order>
</smartplaylist>
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="tvshows">
<name>TV Shows</name>
<match>all</match>
<rule field="path" operator="doesnotcontain">
<value>nfs://192.168.1.18/mnt/media/uhd/tv/</value>
</rule>
<rule field="playlist" operator="isnot">
<value>4K TV Shows</value>
</rule>
<order direction="ascending">sorttitle</order>
</smartplaylist>
Things I've done:
- Created custom library nodes for both libraries using either resolution or path.
- Created Smart Playlists, as seen above.
- Changed from TheTVDb to The TVDb (New) for either of the libraries.
- Tried refreshing both libraries for each of the TV shows that are in both UHD and HD/SD.
- Wiping MySQL Video DB and starting over.