AIMP Forum

AIMP for Android => Вопросы / Questions => Topic started by: Auré on July 22, 2023, 22:47:50

Title: Change speed / tempo + global search function ?
Post by: Auré on July 22, 2023, 22:47:50
Hello,

I discovered this player recently on Windows. Among proprietary softs, this is currently my favorite ;)

- But on the android version, can we change (quickly) the speed or the tempo please ?
- Is there a global search function ? like searching in the index of all files ; cause when I use the search, it displays only the results of the current folder


Moreover, I think searching should be more accurate ( see this topic : https://www.aimp.ru/forum/index.php?topic=69936.msg429499#msg429499 (https://www.aimp.ru/forum/index.php?topic=69936.msg429499#msg429499) )
the algorithm is pretty simple :

Code: [Select]
words = explode the search string with space delimiter " " ; it returns array/list of words

foreach (songs_indexed as song) {
  matchedWords = 0;

  foreach (words as word) {
    if (word exist in song) { // regex test or whatever
      matchedWords++;
    }
  }

  if (matchedWords === words.length) {
    push song or songs[i] in search results array
  }

}

Thanks in advance for your answer !  :D
Title: Re: Change speed / tempo + global search function ?
Post by: Artem on July 23, 2023, 08:46:34
can we change (quickly) the speed or the tempo please ?

Sure, speed control is placed below playback control buttons

Is there a global search function ? like searching in the index of all files ; cause when I use the search, it displays only the results of the current folder

I've no idea what current folder is. Search works in current view (music library or playlist)