Page 1 of 1

TCP/IP Command from Broadcast Radio's Myriad

Posted: 06 Feb 2018 11:48
by mixmog
Hi, trying to issue simple TCP/IP commands from Broadcast Radio Myriad to Proppfrexx to open fader during news junction.
irn.JPG
Myriad's GUI is as the above. The command is triggered when a certain cart is played, however, this results in no action in Proppfrexx. This is my first experience with TCP/IP commands so it is very possible I have got it wrong but would really appreciate some advice!

Re: TCP/IP Command from Broadcast Radio's Myriad

Posted: 06 Feb 2018 12:35
by radio42
I guess the misunderstanding is, that each command needs to end with a CRLF (\r\n) and there needs to be an extra empty line after the AUTHORIZATION command to have that executed before the rest.
Therefore, just add an extra \r\n after your AUTHORIZATION command.
Example:

Code: Select all

AUTHORIZATION yourpassword\r\n\r\nMIXER_OUTPUT_VOLUME_SLIDE ...
See here for details:
viewtopic.php?f=9&t=12

Re: TCP/IP Command from Broadcast Radio's Myriad

Posted: 06 Feb 2018 13:37
by mixmog
Hi - thank you for the response. Rookie error...

I can now see that a TCP/IP client has connected, but still no action on the mixer. Indeed, I cannot get any result using the "You are now online!" test. Is there anything else I can troubleshoot?

Re: TCP/IP Command from Broadcast Radio's Myriad

Posted: 06 Feb 2018 13:59
by radio42
Yes, e.g. use the "SHOW_ALERT_WINDOW Test" command.
In your case than probably the MIXER_OUTPUT_VOLUME_SLIDE command is not correctly use.
Its parameters are: <mixername> and <volume>, e.g. it must be something like:

Code: Select all

AUTHORIZATION yourpassword\r\n\r\nMIXER_OUTPUT_VOLUME_SLIDE IN1|1.0\r\n\r\n
(replace IN1 with the real name of your mixer channel, and 1.0 with your target volume 0.0=silent, 1.0=max)

Re: TCP/IP Command from Broadcast Radio's Myriad

Posted: 06 Feb 2018 14:05
by mixmog
Thank you - I am getting it now. Very much appreciate your help.