Kodi Community Forum
Release GlobalSearch Script - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27)
+---- Forum: Program Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=151)
+---- Thread: Release GlobalSearch Script (/showthread.php?tid=109301)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42


RE: [Release] GlobalSearch Script - ronie - 2017-12-24

should be fixed now


RE: [Release] GlobalSearch Script - braz - 2017-12-25

(2017-12-24, 15:23)ronie Wrote: should be fixed now
 Great, thanks!


RE: [Release] GlobalSearch Script - lepoilu - 2018-02-10

Hello,

I meet a problem with research, for all that is a search by name, Actor, Artist, Producer etc.
If for example I search harrison ford, I will find Harrisson Ford.
If on the other hand I search Harrisson Ford, I can not find anything.
The voice search writes Harrisson Ford and inevitably finds nothing.

It would be preferable that the search does not make any difference with lower and upper case, since in the end it found a first name in this form Harrisson Ford.

Thank you


RE: [Release] GlobalSearch Script - ronie - 2018-02-12

the search is case-insensitive, no idea why it doesn't work for you.


RE: [Release] GlobalSearch Script - lepoilu - 2018-02-12

If I go to the actors folder and use Kodi's search directly, whether it's Harrisson Ford or harrisson ford it works, unless I use Global Search...

I do not understand.


RE: [Release] GlobalSearch Script - d3mncln3r - 2018-03-05

hi, if I search for, say, an album and I want to play the whole album, how do I do this? Clicking the result drills into the album and allows me to play one song at a time. Context menu doesn't display when I press 'c' so I cannot choose 'play all' or something. Using Libreelec on RPI3, thanks.


RE: [Release] GlobalSearch Script - ronie - 2018-03-09

thx for the heads-up. i'll fix the context menu (it's currently broken) and add an option to play albums.


RE: [Release] GlobalSearch Script - lepoilu - 2018-03-11

(2018-02-10, 23:15)lepoilu Wrote: Hello,

I meet a problem with research, for all that is a search by name, Actor, Artist, Producer etc.
If for example I search harrison ford, I will find Harrisson Ford.
If on the other hand I search Harrisson Ford, I can not find anything.
The voice search writes Harrisson Ford and inevitably finds nothing.

It would be preferable that the search does not make any difference with lower and upper case, since in the end it found a first name in this form Harrisson Ford.

Thank you
I was using an Shield Android TV and on the keyboard of PC it's the same, capital letters are problematic.
On the other hand for the search of film, no problem with capital letters or not
I forgot to mention that it's on Kodi Leia. I do not know if it's a kodi problem or Global Search and where to post the problem ...

Sorry.

Thank you


RE: [Release] GlobalSearch Script - ronie - 2018-03-11

yup, sorry... you're correct.
don't know why i previously thought it was working correctly, as it's obviously not.

will address tehe problem in the next version.


RE: [Release] GlobalSearch Script - lepoilu - 2018-03-12

Hello,

Great, thank you very much !


RE: [Release] GlobalSearch Script - Silki - 2018-03-12

DELETED


RE: [Release] GlobalSearch Script - Silki - 2018-03-14

ronie,

The AURA Beta skin uses "id="8"" on a button to search within music window, he seems unsure what it uses to search, guess it your wonderful script ?

I have found this post which assume what ID 8 is Huh https://forum.kodi.tv/showthread.php?tid=97601

You helped before and I use a script ran from the context menu where I pass a term from the Track that is selected (xbmc.executebuiltin("RunScript(script.globalsearch,searchstring=%s)" % (xbmc.getInfoLabel("ListItem.Title"))) )

Is there anyway of using the ID="8" and pass my terms to the keyboard that pops up ??


RE: [Release] GlobalSearch Script - ronie - 2018-03-14

nope, the button with id="8" triggers kodi's builtin search functionallity.
you can not change it to use the globalsearch addon instead.


RE: [Release] GlobalSearch Script - jurialmunkey - 2018-03-15

@Silki - I don't know where you are getting the idea that I am "unsure" of what the button does (in my own skin no less). I've already told you twice that it calls an INBUILT kodi function and NOT globalsearch.
The only way to call the inbuilt music search function is with SendClick(8). There is no specific command like there is with VideoLibrary.Search

You can send text to the keyboard dialog via jsonrpc using the Input.SendText method.
Have a look at how plugin.program.autocompletion does it:
https://github.com/phil65/plugin.program.autocompletion

If you need help with python and jsonrpc you should ask in the Add-on Development subforum:
https://forum.kodi.tv/forumdisplay.php?fid=26


RE: [Release] GlobalSearch Script - Silki - 2018-03-22

" I don't know where you are getting the idea that I am "unsure" of what the button does (in my own skin no less)"

Think I was referring to :

"@Silki - It is a button with id="8" built-in to the library windows. I don't know of a way to call the music library search outside of sending a click to the button - e.g. SendClick(8)"

Did not mean to cause offence Smile ... I rate your skin you know that I have been providing a lot of feedback.

Ill take a look at the links as that may be the answer I've been looking for

What are the main differences between the built in Search and the Global search then ?