Hello @
Tim Curtis ,
It is in this file ./www/command/index.php right ?
I think a new command should be implemented playalbum_next ? may be? What is your advise / Thanks / Phil
case 'playitem_next':
$item = trim(getArgs($cmd));
$sock = getMpdSock();
// Turn off auto-shuffle
_openSessionReadOnly($dbh);
if ($_SESSION['ashuffle'] == '1') {
turnOffAutoShuffle($sock);
}
// Search the Queue for the item
$search = strpos($item, 'RADIO') !== false ? parseDelimFile(file_get_contents(MPD_MUSICROOT . $item), '=')['File1'] : $item;
$result = findInQueue($sock, 'file', $search);
if (isset($result['Pos'])) {
// Play already Queued item
sendMpdCmd($sock, 'play ' . $result['Pos']);
$resp = readMpdResp($sock);
} else {
// Otherwise play the item after adding it to the Queue
$status = getMpdStatus($sock);
$cmds = array(addItemToQueue($item));
if ($cmd[0] == 'play_item_next') {
$pos = isset($status['song']) ? $status['song'] + 1 : $status['playlistlength'];
array_push($cmds, 'move ' . $status['playlistlength'] . ' ' . $pos);
} else {
$pos = $status['playlistlength'];
}
array_push($cmds, 'play ' . $pos);
chainMpdCmds($sock, $cmds);
}
echo json_encode(array('info' => 'OK'));
break;