我有一个文件,其中包含一系列包装在 UDP/IP 数据包中的 RTP 数据包。我想将此文件转换为 WAV 或 AU 文件,并被告知 ffmpeg 可能能够完成这项工作。但是,该工具的行为不像我预期的那样。出于某种原因,它需要一个 SDP 文件,但我没有这样的文件,我想知道为什么需要它,因为 RTP 数据包似乎包含足够的信息来进行转换。它还报告错误的有效负载类型。
有任何想法吗?以下是我尝试过的。输入文件 alaw.rtp 中的 RTP 数据包只有有效载荷类型 8(A-law)和 72(RTCP 相关),所以我不知道有效载荷类型 105 的来源。
$ ffmpeg -f rtp -i alaw.rtp alaw.au
...
[rtp @ 0x9dbdfe0] Unsupported RTP version packet received
Last message repeated 89 times
[rtp @ 0x9dbdfe0] Unable to receive RTP payload type 105 without an SDP file describing it
[rtp @ 0x9dbdfe0] Estimating duration from bitrate, this may be inaccurate
Input #0, rtp, from 'alaw.rtp':
Duration: N/A, bitrate: N/A
File 'alaw.au' already exists. Overwrite ? [y/N] y
Output #0, au, to 'alaw.au':
Output file #0 does not contain any stream
这是我用过的ffmpeg版本
ffmpeg version 0.10.6-6:0.10.6-0ubuntu0jon1~lucid2
built on Nov 12 2012 15:20:22 with gcc 4.4.3