Page 1 of 1

ASYNC trouble

Posted: 22 Nov 2018 14:36
by moogwill
Hi bernd,

It seems an old issue is back,

here's the commands used on the event streaming/on songtitle changed


EXEC_WRITE_FILE d:\baseplayloud\nowplaying\nowonair.txt|nd|${artist} - ${title}
EXEC_WRITE_JPEG_FILE d:\baseplayloud\nowplaying\now.jpg|0|300
ASYNC
EXEC_SEND_MIDI_SYSEXMSG 0x90 0x46 0x64
SLEEP 10000
EXEC_SEND_MIDI_SYSEXMSG 0x90 0x46 0x64

as we did change this using async in the past, everything went fine for a long time but now, all command buttons from airence mixdesk are useless until sleep time is over (that was the original issue) is this comes from the last update?

Re: ASYNC trouble

Posted: 22 Nov 2018 14:58
by moogwill
it seems I maybe found a working solution by myself using this, correct me if I'm wrong

EXEC_WRITE_FILE d:\baseplayloud\nowplaying\nowonair.txt|nd|${artist} - ${title}
EXEC_WRITE_JPEG_FILE d:\baseplayloud\nowplaying\now.jpg|0|300
EXEC_ASYNC EXEC_SEND_MIDI_SYSEXMSG 0x90 0x46 0x64${CRLF}SLEEP 10000${CRLF}EXEC_SEND_MIDI_SYSEXMSG 0x90 0x46 0x64

Re: ASYNC trouble

Posted: 22 Nov 2018 15:46
by radio42
This is not back, you just used it 'incorrectly' ;-)
Your 2nd post is correct, as the ASYNC keyword stand-alone is ONLY recognized when given at the very beginning and would then apply to all commands.

Re: ASYNC trouble

Posted: 22 Nov 2018 15:55
by moogwill
thanks...
is there any trouble using this alternative above??

Re: ASYNC trouble

Posted: 22 Nov 2018 15:56
by radio42
No, that is perfectly good!