external players - path rule / attribute
#1
Hi guys,

any chance of adding an extra attribute to the external players rules so that it uses a certain player for certain folders?

for example, id like all my movies to play in the default dvdplayer app, and all my tv shows to play with mpvplayer. So it would be something like \\Movies\ all subfolders for dvdplayer and \\TV\ all subfolders for MPVplayer.

Because the library is so varied with filetypes, naming rules etc, none of the current rules fit correctly.

Cheers
Reply
#2
I'm pretty sure you can already do this:


Code:
filename=".*\Movies\.*"
for movies

Code:
filename=".*\TV\.*"
for TV shows

The .* is from regular expressions, and simply catches "zero or more of any character."
Reply
#3
thanks eirki,

will try that!
Reply

Logout Mark Read Team Forum Stats Members Help
external players - path rule / attribute0