INTERACT FORUM
More => Old Versions => JRiver Media Center 32 for Windows => Topic started by: Striker on March 02, 2024, 09:58:01 am
-
Any insight anyone can provide would be appreciated.
I'm using UNIX ksh for these tests.
Below I have three curl/MCWS commands. The first correctly redirects the curl output to a file. The 2nd and 3rd output to the terminal and the out2 and out3 files are empty.
This works and the output is in the out1.txt file using MCWS:Playback/Info
curl --connect-timeout 1 --no-progress-meter -m 10 http://localhost:52199/MCWS/v1/Playback/Info?Zone=-1 > out1.txt
The next two, using MCWS:File/GetInfo outputs to the terminal and nothing in the out2.txt and out3.txt file.
curl --connect-timeout 1 --no-progress-meter -m 10 http://localhost:52199/MCWS/v1/File/GetInfo?File=34608833&Action=json > out2.txt
curl --connect-timeout 1 --no-progress-meter -m 10 http://localhost:52199/MCWS/v1/File/GetInfo?File=34608833&Action=json 2> out3.txt
It's like the MCWS:File/GetInfo is writing to the terminal without using stdout or stderr ?
-
Its probably the & in the URL, you should quote the URL.
-
you can also use -o to write the output to a file
-
Its probably the & in the URL, you should quote the URL.
you can also use -o to write the output to a file
Thank you to both of you.
When quoting the url with a > redirect, the output file now has info, but there are no newlines, so one long string.
When quoting the url and using the -o outputfile option, same thing, the out file has data but there are no newlines.
Even stranger... not quoting the url AND using the -o option write to the -o file has data and each data line has the newlines.
Thanks for the help... so much I don't understand, but I can at least get the output I want by using the -o option and not quoting the url.
-
Why do you need newlines? Just parse it as json, eg using https://jqlang.github.io/jq/
-
Why do you need newlines? Just parse it as json, eg using https://jqlang.github.io/jq/
Thanks, I looked at it and it sounds complicated from the examples and the manual. Although it does look easy to convert a single line json file to a prettied up output.
I just ultimately want a list of lines with
name="value"
and I can do that easily in unix shell or C++;
-
MCWS output is not necessarily formatted for human readability. Its in a specified formatting markup, for this particular call, either XML (in the MPL type, default), or JSON.
If you want a format with one entry per line, just running it through jq without parameters will do that, as its default mode is return a human-readable formatting.
Or you can use jq to specifically extract the value(s) you want.
Or just make it output the keys/value in a format you want (its not perfect when the value contains new lines)
curl http://localhost:52199/MCWS/v1/File/GetInfo?File=34608833&Action=json | jq -r '.[0] | to_entries[] | "\(.key)=\(.value)"'
-
MCWS output is not necessarily formatted for human readability. Its in a specified formatting markup, for this particular call, either XML (in the MPL type, default), or JSON.
If you want a format with one entry per line, just running it through jq without parameters will do that, as its default mode is return a human-readable formatting.
Or you can use jq to specifically extract the value(s) you want.
Thanks. In my quest to find an alternative to the PlayingNow plugin, which I only use to get a file of data on track change and then call another program to update all the monitor/TV's with the current MC track/next info.
I've tried Zybec's McMonitor in C++ and got overwhelmed with notifications that I didn't need. For example on a natural track change, a few seconds before the actual track change I'd get a notification with the current track info but with the playcount and lastPlayed data updated. I worked around that one, but others showed up and my code got ugly. McMonitor was really cool and the fault is my coding, not McMonitor.
Then I tried polling MCWS from a C++ program and sometimes, I cannot duplicate it at will, I would get data from MCWS that did not change on a track change (must be my code somehow though, not blaming MCWS). When I see that, it's usually well over an hour of playing MC and my program running in a continuous 1 second sleep loop.
I've even considered using UNIX shell to do what I need.
I'm really trying, but I feel like I'm somehow in over my head. I have forgot so much since I retired from software 12 years ago.