通过FFprobe命令可以显示WAV音频文件每个packet(也称为数据包或多媒体包)的信息:
ffprobe -of json -show_packets XXX.wav
输出如下:
其中:
1.codec_type:packet类型,表示该路流是视频还是音频。
2.stream_index:packet的流索引,表示该路流是媒体文件中的第几路音视频流。
3.pts:Presentation Timestamp,即显示时间戳。
4.pts_time:以秒为单位的显示时间戳。
5.dts:DecodingTimestamp,即解码时间戳。
6.dts_time:以秒为单位的解码时间戳。
7.duration:packet占用的时间值。
8.duration_time:以秒为单位的packet占用的时间值。
9.size:packet的大小。
10.pos:packet所在的文件偏移位置。
11.flags:packet标记,表示是关键包还是非关键包。
上述FFprobe命令的输出内容实际是通过FFmpeg源码(ffprobe属于FFmpeg的一部分,所以也算是FFmpeg源码)目录下的fftools/ffprobe.c中的show_packet函数打印出来的。可以看到打印出来的实际是AVPacket中的属性:
static void show_packet(WriterContext *w, InputFile *ifile, AVPacket *pkt, int packet_idx)
{
//...
if (s) print_str ("codec_type", s);
else print_str_opt("codec_type", "unknown");
print_int("stream_index", pkt->stream_index);
print_ts ("pts", pkt->pts);
print_time("pts_time", pkt->pts, &st->time_base);
print_ts ("dts", pkt->dts);
print_time("dts_time", pkt->dts, &st->time_base);
print_duration_ts("duration", pkt->duration);
print_duration_time("duration_time", pkt->duration, &st->time_base);
print_val("size", pkt->size, unit_byte_str);
if (pkt->pos != -1) print_fmt ("pos", "%"PRId64, pkt->pos);
else print_str_opt("pos", "N/A");
print_fmt("flags", "%c%c%c", pkt->flags & AV_PKT_FLAG_KEY ? 'K' : '_',
pkt->flags & AV_PKT_FLAG_DISCARD ? 'D' : '_',
pkt->flags & AV_PKT_FLAG_CORRUPT ? 'C' : '_');
//...
}