You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd like something that's like the "random track" favourite that's a sort of dynamic playlist, but for newly added tracks (not albums).
For instance, I might drop a few things in to $cfg['misc_tracks_misc_artists_folder'] and re-run the main update.
There's no easy way to find these recent non-album additions.
Currently, I have a favourite called "New" and each night I run
deletefrom favoriteitem
where favorite_id =21
;
insert into favoriteitem
(track_id,position,favorite_id)
select track_Id,@rownum := @rownum +1,21from track t
-- create variablecross join (select @rownum :=0) r
order by updated desclimit50
I'm wondering if this would be useful to anyone else, and if so if it's best done as an (non-editable ?) playlist, and the update process takes care of re-running the above ?
The text was updated successfully, but these errors were encountered:
I'd like something that's like the "random track" favourite that's a sort of dynamic playlist, but for newly added tracks (not albums).
For instance, I might drop a few things in to
$cfg['misc_tracks_misc_artists_folder']
and re-run the main update.There's no easy way to find these recent non-album additions.
Currently, I have a favourite called "New" and each night I run
I'm wondering if this would be useful to anyone else, and if so if it's best done as an (non-editable ?) playlist, and the update process takes care of re-running the above ?
The text was updated successfully, but these errors were encountered: