Unoffical empeg BBS

Quick Links: Empeg FAQ | RioCar.Org | Hijack | BigDisk Builder | jEmplode | emphatic
Repairs: Repairs

Topic Options
#119594 - 07/10/2002 07:37 jEmplode wish: query structured playlists
image
old hand

Registered: 28/04/2002
Posts: 770
Loc: Los Angeles, CA
as a result of me diving into the world of php/mysql this weekend, i would LOVE to see this implemented. i would like to see playlists defined using the advanced search logic.

i.e. i'd love to have all songs produced by dj tiesto including remixes in one playlist... in the playlist definition, i would use "title=tiesto || artist=tiesto". the playlist would also autoupdate if i were to add any songs matching the query.

i'm sure that this would be an easy addition to emplode because the query language is already implemented, but the fact that feature additions aren't a priority at the moment makes jEmplode 42 the prime canidate for this.

what do you guys think?

Top
#119595 - 08/10/2002 02:47 Re: jEmplode wish: query structured playlists [Re: image]
tms13
old hand

Registered: 30/07/2001
Posts: 1115
Loc: Lochcarron and Edinburgh
I read your message several times, but failed to see what you're asking for. What needs adding to the on-player soups in jEmplode 42 to make it do what you want?
_________________________
Toby Speight
030103016 (80GB Mk2a, blue)
030102806 (0GB Mk2a, blue)

Top
#119596 - 08/10/2002 07:45 Re: jEmplode wish: query structured playlists [Re: tms13]
image
old hand

Registered: 28/04/2002
Posts: 770
Loc: Los Angeles, CA
sorry, i wasn't aware that the custom soups in jEmplode 42 was able to do boolean. i'll research and see.

Top
#119597 - 08/10/2002 23:48 Re: jEmplode wish: query structured playlists [Re: image]
image
old hand

Registered: 28/04/2002
Posts: 770
Loc: Los Angeles, CA
okay. had time to mess with the on-empeg soup playlists. it CAN do boolean, and everything else i need. but theres a catch.

my goal is to have a soup for each of the major electronica artists (i.e. tiesto, ferry, oakenfold, armin van buuren, etc.). the problem is, i want to include all their remixes AND aliases. so, for example, the search string for tiesto is:

((artist like "a3") or (title like "a3") or (artist like "Alibi") or (title like "Alibi") or (artist like "Allure") or (title like "Allure") or (artist like "Clear View") or (title like "Clear View") or (artist like "Control Freaks") or (title like "Control Freaks") or (artist like "Drumfire") or (title like "Drumfire") or (artist like "Gouryella") or (title like "Gouryella") or (artist like "Hammock Brothers") or (title like "Hammock Brothers") or (artist like "Kamaya Painters") or (title like "Kamaya Painters") or (artist like "Major League") or (title like "Major League") or (artist like "Roze") or (title like "Roze") or (artist like "Straydog") or (title like "Straydog") or (artist like "T-Scanner") or (title like "T-Scanner") or (artist like "tiesto") or (title like "tiesto") or (artist like "Vimana") or (title like "Vimana") or (artist like "Wild Bunch") or (title like "Wild Bunch")) and (not (source like "liveset" or source like "full album"))

the above in a jemplode only soup works great. but if i put it on the player, named DJ Tiesto, then an infinite loop is created because the title of the soup is matched. i hope that a check can be implemented somewhere to prevent this. maybe i'm just asking too much from my empeg.

Top
#119598 - 09/10/2002 00:48 Re: jEmplode wish: query structured playlists [Re: image]
Roger
carpal tunnel

Registered: 18/01/2000
Posts: 5680
Loc: London, UK
Er, type="tune" and .... ?
_________________________
-- roger

Top
#119599 - 09/10/2002 06:35 Re: jEmplode wish: query structured playlists [Re: Roger]
image
old hand

Registered: 28/04/2002
Posts: 770
Loc: Los Angeles, CA
duh.

Top
#119600 - 09/10/2002 21:47 Re: jEmplode wish: query structured playlists [Re: Roger]
image
old hand

Registered: 28/04/2002
Posts: 770
Loc: Los Angeles, CA
is there anyway to do a "whole word only" while still using the like operator?

one of the aliases is "eon", and i'm catching all words that contain that word.

Top
#119601 - 10/10/2002 03:03 Re: jEmplode wish: query structured playlists [Re: image]
Roger
carpal tunnel

Registered: 18/01/2000
Posts: 5680
Loc: London, UK
artist like "* word *" or artist like "word *" or artist like "* word"

Note the spaces. Also note that this isn't perfect, because it doesn't cope with punctuation. You can add clauses to cope with that, but it'll get more and more unwieldy.


Edited by Roger (10/10/2002 03:05)
_________________________
-- roger

Top
#119602 - 11/10/2002 22:49 Re: jEmplode wish: query structured playlists [Re: Roger]
mschrag
pooh-bah

Registered: 09/09/2000
Posts: 2303
Loc: Richmond, VA
I don't think jEmplode supports * matching in that parser (if his question was still related to jEmplode). Chalk another in your Emplode column

Top
#119603 - 12/10/2002 10:17 Re: jEmplode wish: query structured playlists [Re: mschrag]
image
old hand

Registered: 28/04/2002
Posts: 770
Loc: Los Angeles, CA
i dont even think that it matters. "* word *" is only useful in a == test. he was using the like operator.

it would be great if someone looked at an open source word processing application and saw how they do a whole word only search. also maybe a list generator so i dont have to do this by hand.

Top