I use the following command to stream to wowza server over rtsp;
ffmpeg -re -i 1464197749623.mkv -c:v copy -c:a copy -strict experimental -f rtsp rtsp://127.0.0.1:1935/live/myStream
It works fine.
However, I have a situation where I only get the video from mkv file but not audio. I get separate audio file in mkv format. How can I specify audio and video source separately in above ffmpeg command so it can stream combiningly to wowza ?
Thanks