Hello,
It looks like your command is mal-formed. There is no actual output specified:
Your command from above is this:
evo-avconv error -y -i rtmp://x.x.x.x/live/mystream -b:v 100k -s 320×240 -c:v libx264 -b:a 8k -ac 1 -ar 8k -c:a libfaac -metadata streamName=mynewstream
but you have to specify where the stream is to be sent:
evo-avconv error -y -i rtmp://x.x.x.x/live/mystream -b:v 100k -s 320×240 -c:v libx264 -b:a 8k -ac 1 -ar 8k -c:a libfaac -f flv -metadata streamName=mynewstream tcp://localhost:6666
This will send the stream back to the EMS running on the local computer for re-encapsulation and distribution.
You can also use the launchProcess API command to make the above call, just make sure to escape out all of the spaces:
launchprocess fullbinarypath=./evo-avconv parameters=error -y -i rtmp://….