Kodi Community Forum
v19 Doing plot search outside MyVideoNav.xml - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32)
+--- Forum: Skinning (https://forum.kodi.tv/forumdisplay.php?fid=12)
+--- Thread: v19 Doing plot search outside MyVideoNav.xml (/showthread.php?tid=362185)



Doing plot search outside MyVideoNav.xml - bsoriano - 2021-04-20

Hello all,

When you do a search from MyVideoNav.xml (button 8), Kodi searches also plot content. Is there any way to do this search of plot content outside of myvideonav.xml? Any db path or library path or xsp path to do this type of search?

I am trying to replicate all of the functionality of the search button from MyVideoNav.xml in a custom dialog, but I am missing plot content search.

Any help is greatly appreciated.

Regards,

Bart


RE: Doing plot search outside MyVideoNav.xml - mardukL - 2021-04-21

did you tried the xsp method by using

code:
{"rules":{"or":[{"field":"plot","operator":"contains","value":["YOUR FILTER VALAUE, LABEL OR SKINSTRING"]}]},"type":"movies"}

for getting the results in a given window?

or did i misunderstood.


RE: Doing plot search outside MyVideoNav.xml - bsoriano - 2021-04-21

(2021-04-21, 00:26)mardukL Wrote: did you tried the xsp method by using

code:
{"rules":{"or":[{"field":"plot","operator":"contains","value":["YOUR FILTER VALAUE, LABEL OR SKINSTRING"]}]},"type":"movies"}

for getting the results in a given window?

or did i misunderstood.

@mardukL, thanks! I have not tried that.  I will test, I didn't even think that I could use plot as a field  like that.

Regards,

Bart


RE: Doing plot search outside MyVideoNav.xml - mardukL - 2021-04-21

(2021-04-21, 13:06)bsoriano Wrote:
(2021-04-21, 00:26)mardukL Wrote: did you tried the xsp method by using

code:
{"rules":{"or":[{"field":"plot","operator":"contains","value":["YOUR FILTER VALAUE, LABEL OR SKINSTRING"]}]},"type":"movies"}

for getting the results in a given window?

or did i misunderstood.

@mardukL, thanks! I have not tried that.  I will test, I didn't even think that I could use plot as a field  like that.

Regards,

Bart


i just take a look here...

https://kodi.wiki/view/Smart_playlists/Rules_and_groupings
may that help. Wink


RE: Doing plot search outside MyVideoNav.xml - bsoriano - 2021-04-23

(2021-04-21, 18:49)mardukL Wrote:
(2021-04-21, 13:06)bsoriano Wrote:
(2021-04-21, 00:26)mardukL Wrote: did you tried the xsp method by using

code:
{"rules":{"or":[{"field":"plot","operator":"contains","value":["YOUR FILTER VALAUE, LABEL OR SKINSTRING"]}]},"type":"movies"}

for getting the results in a given window?

or did i misunderstood.

@mardukL, thanks! I have not tried that.  I will test, I didn't even think that I could use plot as a field  like that.

Regards,

Bart


i just take a look here...

https://kodi.wiki/view/Smart_playlists/Rules_and_groupings
may that help. Wink
@mardukL , thank you! That certainly helps. 

Regards,

Bart