[PROBLEM] (or not) with random mode ? - Printable Version +- Moode Forum (https://moodeaudio.org/forum) +-- Forum: moOde audio player (https://moodeaudio.org/forum/forumdisplay.php?fid=3) +--- Forum: Support (https://moodeaudio.org/forum/forumdisplay.php?fid=7) +--- Thread: [PROBLEM] (or not) with random mode ? (/showthread.php?tid=5421) |
(or not) with random mode ? - El bubar - 03-08-2023
RE: (or not) with random mode ? - Tim Curtis - 03-08-2023 When you say "the "auto-refresh" in playlistview doesn't work" do you mean that the next track that auto-shuffle queues up does not appear in the Queue? RE: (or not) with random mode ? - El bubar - 03-09-2023 (03-08-2023, 01:14 PM)Tim Curtis Wrote: When you say "the "auto-refresh" in playlistview doesn't work" do you mean that the next track that auto-shuffle queues up does not appear in the Queue? Bonjour oui it's exactly that. the next track does not appear automatically in the queue. Bonne journée. RE: (or not) with random mode ? - Tim Curtis - 03-09-2023 I can repro. It looks like the the launch param "--queue-buffer 1" is what causes the odd behavior. If you want to try without the parameter in the launch string do the following. 1. Edit the file /var/www/inc/music-library.php 2. In the function startAudoShuffile make the following change to the last line Existing: Code: sysCmd($filter . '/usr/bin/ashuffle --queue-buffer 1 ' . $mode . $file . ' > /dev/null 2>&1 &'); Change by removing --queue-buffer 1 Code: sysCmd($filter . '/usr/bin/ashuffle ' . $mode . $file . ' > /dev/null 2>&1 &'); 3. Save the file and reboot I'll add to the TODO list for a future release to have this configuration as an option. RE: (or not) with random mode ? - El bubar - 03-15-2023 bonjour Tim et merci. the change is working fine. It's ok for me. one some info though : in "random" mode if I uncheck the 'consume' option in the menu "..." the following page is displayed : []images/default-cover-v6.svg. but not always :-) RE: (or not) with random mode ? - Tim Curtis - 03-15-2023 (03-15-2023, 10:24 AM)El bubar Wrote: bonjour Tim et merci. Nice :-) When I get to coding that option I'll investigate any odd behavior that shows up. |