ffprobe是ffmpeg的其中一個模組,主要用於檢視檔案資訊,咱們知道一個MP4檔案其實不僅僅包含了音視訊資料,還有如後設資料等其它資訊,但是實際上咱們關心的往往是音視訊資料部分,今天來看下如何使用ffprobe來獲取音視訊資訊。
先看看ffprobe的幫助資訊
ffprobe -v error --help
在輸出的資訊中,有這一行
-sections print sections structure and section information, and exit
可以看看具體作用是什麼
ffprobe -v error -sections test.mp4
輸出如下
Sections:
W.. = Section is a wrapper (contains other sections, no local entries)
.A. = Section contains an array of elements of the same type
..V = Section may contain a variable number of fields with variable keys
FLAGS NAME/UNIQUE_NAME
---
W.. root
.A. chapters
... chapter
..V tags/chapter_tags
... format
..V tags/format_tags
.A. frames
... frame
..V tags/frame_tags
.A. side_data_list/frame_side_data_list
... side_data/frame_side_data
.A. timecodes
... timecode
.A. components
... component
.A. pieces
... section
.A. logs
... log
... subtitle
.A. programs
... program
..V tags/program_tags
.A. streams/program_streams
... stream/program_stream
... disposition/program_stream_disposition
..V tags/program_stream_tags
.A. streams
... stream
... disposition/stream_disposition
..V tags/stream_tags
.A. side_data_list/stream_side_data_list
... side_data/stream_side_data
.A. packets
... packet
..V tags/packet_tags
.A. side_data_list/packet_side_data_list
... side_data/packet_side_data
... error
... program_version
.A. library_versions
... library_version
.A. pixel_formats
... pixel_format
... flags/pixel_format_flags
.A. components/pixel_format_components
... component
其實列印的是一個視訊檔在ffmpeg眼中的大致結構:頂層是root,下面有chapters、frames、streams等。
而如果你仔細看ffprobe -v error --help
命令列印出來的紀錄檔,就會發現上面的這些結構一一對應了一個命令引數,拿chapters舉例,可以發現help命令列印出來包含有這個引數:-show_chapters
所以,咱們可以從這個角度來看下如何獲取檔案資訊,先試一下前面提到的chapters部分
ffprobe -v error -show-chapters -of json test.mp4
輸出如下:
{
"chapters": [
]
}
雖然沒有資訊,但是ffprobe確實是列印了資訊出來,咱們換一個section
ffprobe -v error -show-streams -of json test.mp4
這時你就會發現這次將視訊檔的每一個資料流的資訊列印了出來,考慮到篇幅,這裡只將視訊流的一部分資料貼出來
{
"streams": [
{
"index": 0,
"codec_name": "h264",
"codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10",
"profile": "Main",
"codec_type": "video",
"codec_tag_string": "avc1",
"codec_tag": "0x31637661",
"width": 640,
"height": 360,
"coded_width": 640,
"coded_height": 360,
"closed_captions": 0,
"film_grain": 0,
"has_b_frames": 0,
"sample_aspect_ratio": "1:1",
"display_aspect_ratio": "16:9",
"pix_fmt": "yuv420p",
"level": 30,
"chroma_location": "left",
"field_order": "progressive",
"refs": 1,
"is_avc": "true",
"nal_length_size": "4",
"id": "0x1",
"r_frame_rate": "24/1",
"avg_frame_rate": "24/1",
"time_base": "1/12288",
"start_pts": 0,
"start_time": "0.000000",
"duration_ts": 124928,
"duration": "10.166667",
"bit_rate": "2004518",
"bits_per_raw_sample": "8",
"nb_frames": "244",
"extradata_size": 48
}
}
可以看到,視訊流中諸如解析度、影格率等引數的詳細資訊都羅列了出來。
除了-show_streams
引數,大家可以試試其它的引數-show_format
,-show_frames
, -show_packets
看看具體的效果
這裡再說一個比較有用的引數:-show_entries
,這個引數的作用你可以理解為一個選擇器,選擇要列印哪些資料流的引數.
以上面列印出來的視訊流資訊為例,假如咱們只想知道視訊的解析度,該怎麼辦?這時候就可以用-show_entries
了:
ffprobe -v error -show_entries stream=width,height -of json test.mp4
列印如下:
"programs": [
],
"streams": [
{
"width": 640,
"height": 360
},
{
}
]
}
可以看到,只把解析度的資訊列印了出來,唯一的問題是同時也列印了一些空白資料- -
另外如果想既列印stream資訊,又列印format資訊怎麼辦呢,對於不同的section,可以使用:
來區分,如下面這樣
ffprobe -v error -show_entries stream=width,height:format=nb_streams -of json test.mp4
實際輸出如下:
{
"programs": [
],
"streams": [
{
"width": 640,
"height": 360
},
{
}
],
"format": {
"nb_streams": 2
}
}
這樣就輸出了兩個section的資訊
最後說兩個比較有用的引數
-count_frames
:計算所有的frame,也就是有效的視訊幀,當新增了該引數後,stream資訊中,會多出nb_read_frames引數
-count_packets
:計算所有的packet,當新增了該引數後,stream資訊中,會多出nb_read_packets引數
ffmpeg第1篇:紀錄檔級別控制、儲存紀錄檔到指定檔案、處理進度查詢
ffmpeg第2篇:簡單濾鏡與複雜濾鏡的區別
ffmpeg第3篇:為視訊新增靜態水印
ffmpeg第4篇:為視訊新增動態水印
ffmpeg第5篇:讓水印圖片旋轉起來
ffmpeg第6篇:濾鏡語法
ffmpeg第7篇:資料流選擇神器-map指令
ffmpeg第8篇:使用ffprobe採集檔案資訊