Trying to send 1 video and 4 different audios to AWS IVS in single container. Which container or muxer should I use ? FLV doesn't support multi audio, matroska doesn't support rtmp I guess link. 3GP and mp4 containers doesn't give me error but neither video showing on IVS
For simple try I am using this command.
ffmpeg -re -stream_loop -1 -i sample.mkv -r 30 -c:v libx264 -pix_fmt yuv420p -profile:v main -preset veryfast -x264opts "nal-hrd=cbr:no-scenecut" -minrate 3000 -maxrate 3000 -g
60 -c:a aac -ac 2 -ar 44100 -vb 400k -maxrate 400k -minrate 400k -bufsize 800k -movflags frag_keyframe+empty_moov -f mp4 rtmps:someurls
the above command doesn't include multi audio output so just trying to send except the flv format
Amazon IVS can only supports a mono channel or a stereo track. Here is the recommended audio configuration settings:
Reference:- https://docs.aws.amazon.com/ivs/latest/userguide/streaming-config.html
If your requirement is to support multi-audio channel, AWS Elemental MediaLive has the capabilities to support this workflow. But you need to use Transport Stream container formats (RTP with FEC or Zixi) instead of RTMP. I would suggest you to take a look at the following reference implementation.
https://aws.amazon.com/solutions/implementations/live-streaming-on-aws/