如何使用 RTSP 同时通过 FFPLAY 播放多个流 Url

How to Play Multiple Streams with FFPLAY at the Same Time using RTSP Url

我正在尝试使用 RTSP URL 播放来自服务器的实时流。下面给出了一个示例 RTSP URL:

rtsp://username:password@machine_ip/42331536059e9f21

实际上,这个流是两个参与者(主叫方和被叫方)之间的通话。但是当我用 FFPLAY 播放这个 URL 时,我只得到一个流(被调用),而我应该得到两个流(调用者和被调用者)。我正在使用以下命令:

ffplay rtsp://username:password@machine_ip/42331536059e9f21

我是否缺少一些参数以及此命令以获取所有流。

其实是FFPLAY的局限,不支持多路同时播放

FFplay has currently no support for playing two audio streams simultaneously.

Here is the reference of this answer.