Hello. I have followed the https://www.wowza.com/docs/how-to-schedule-streaming-with-wowza-streaming-engine-streampublisher and subsequent links and when I go to load the schedule I am getting an error about the ‘action’ is not recognized. Am I missing a step?
Command:
curl http://localhost:8086/schedules?appName=live&action=loadSchedule
Output:
Warning: Binary output can mess up your terminal. Use “–output -” to tell
Warning: curl to output it to your terminal anyway, or consider "–output
Warning: " to save to a file.
‘action’ is not recognized as an internal or external command,
operable program or batch file.
Thank you.
Thank you. I forgot the " " but now I’m getting the Warning message:
C:\Users\Administrator>curl “http://localhost:8086/schedules?appName=live&action=loadSchedule”
Warning: Binary output can mess up your terminal. Use “–output -” to tell
Warning: curl to output it to your terminal anyway, or consider "–output
Warning: " to save to a file.
You must add quotes to your URL, because the “&” sign is a special character in Linux (Google “ampersand Linux” to find out more)
curl "http://localhost:8086/schedules?appName=live&action=loadSchedule"
Thank you. I forgot the " " but now I’m getting the Warning message:
C:\Users\Administrator>curl “http://localhost:8086/schedules?appName=live&action=loadSchedule”
Warning: Binary output can mess up your terminal. Use “–output -” to tell
Warning: curl to output it to your terminal anyway, or consider "–output
Warning: " to save to a file.