【轉】FFmpeg採集裝置
ffmpeg在linux下支援的採集裝置的種類比較多。
在操作裝置之前,我們可以檢視當前系統可以支援的操作裝置:
ffmpeg -hide_banner -devices
Devices:
D. = Demuxing supported //輸入的裝置
.E = Muxing supported //輸出的裝置
--
DE alsa ALSA audio output
D dv1394 DV1394 A/V grab
DE fbdev Linux framebuffer //為輸入輸出裝置,其他的類似這樣判斷
D lavfi Libavfilter virtual input device
DE oss OSS (Open Sound System) playback
E sdl SDL output device
E v4l2 Video4Linux2 output device
D video4linux2,v4l2 Video4Linux2 device grab
D x11grab X11 screen capture, using XCB
///
採集裝置fbdev的引數:我們能看出fb(FrameBuffer)的操作引數,指定幀率就行(預設值為25).
ffmpeg -h demuxer=fbdev
Demuxer fbdev [Linux framebuffer]:
fbdev indev AVOptions:
-framerate <video_rate> .D...... (default "25")
ffmpeg -framerate 30 -f fbdev -i /dev/fb0 out.mp4
/
v4l2 即就是video4linux2的縮寫,也是常見視訊裝置。獲取攝像頭的視訊圖片~
通過ffmpeg -h demuxer=v4l2 檢視相關的操作引數
V4L2 indev AVOptions:
-standard <string> .D...... set TV standard, used only by analog frame grabber
-channel <int> .D...... set TV channel, used only by frame grabber (from -1 to INT_MAX) (default -1)
-video_size <image_size> .D...... set frame size
-pixel_format <string> .D...... set preferred pixel format
-input_format <string> .D...... set preferred pixel format (for raw video) or codec name
-framerate <string> .D...... set frame rate
-list_formats <int> .D...... list available formats and exit (from 0 to INT_MAX) (default 0)
all .D...... show all available formats
raw .D...... show only non-compressed formats
compressed .D...... show only compressed formats
-list_standards <int> .D...... list supported standards and exit (from 0 to 1) (default 0)
all .D...... show all supported standards
-timestamps <int> .D...... set type of timestamps for grabbed frames (from 0 to 2) (default default)
default .D...... use timestamps from the kernel
abs .D...... use absolute timestamps (wall clock)
mono2abs .D...... force conversion from monotonic to absolute timestamps
-ts <int> .D...... set type of timestamps for grabbed frames (from 0 to 2) (default default)
default .D...... use timestamps from the kernel
abs .D...... use absolute timestamps (wall clock)
mono2abs .D...... force conversion from monotonic to absolute timestamps
-use_libv4l2 <boolean> .D...... use libv4l2 (v4l-utils) conversion functions (default false)
例子:
獲取本電腦的v4l2攝像頭所支援的色彩格式和解析度:
ffmpeg -hide_banner -f v4l2 -list_formats all -i /dev/video0
[video4linux2,v4l2 @ 0x9554e0] Raw : yuyv422 : YUV 4:2:2 (YUYV)
: 640x480 320x240 352x288 160x120 176x144 1280x720
[video4linux2,v4l2 @ 0x9554e0] Compressed: mjpeg : MJPEG
: 640x480 320x240 352x288 160x120 176x144 1280x720
接下來可以使用下面的命令列,用攝像頭採集視訊檔案:
ffmpeg -hide_banner -s 1920*1080 -i /dev/video0 out2.avi
對應的輸出資訊為:
[video4linux2,v4l2 @ 0x15d0540] The V4L2 driver changed the video from 1920x1080 to 1280x720
Input #0, video4linux2,v4l2, from '/dev/video0':
Duration: N/A, start: 611.836289, bitrate: 110592 kb/s
Stream #0:0: Video: rawvideo (YUY2 / 0x32595559), yuyv422, 1280x720, 110592 kb/s, 7.50 fps, 7.50 tbr, 1000k tbn, 1000k tbc
Output #0, avi, to 'out2.avi':
Metadata:
ISFT : Lavf57.25.100
Stream #0:0: Video: mpeg4 (FMP4 / 0x34504D46), yuv420p, 1280x720, q=2-31, 200 kb/s, 7.50 fps, 7.50 tbn, 7.50 tbc
Metadata:
encoder : Lavc57.24.102 mpeg4
Side data:
unknown side data type 10 (24 bytes)
Stream mapping:
Stream #0:0 -> #0:0 (rawvideo (native) -> mpeg4 (native))
因為我的攝像頭不支援1920*1080,預設還原成了前面他所支援的引數 1280*720,輸出的視訊編碼採用了avi的預設編碼和位元速率引數。
ffmpeg在linux下桌面圖形的時候,通常是用x11grab裝置採集桌面影象。
ffmpeg -h demuxer=x11grab 可以獲得操作的引數:
Demuxer x11grab [X11 screen capture, using XCB]:
xcbgrab indev AVOptions:
-x <int> .D...... Initial x coordinate. (from 0 to INT_MAX) (default 0)
-y <int> .D...... Initial y coordinate. (from 0 to INT_MAX) (default 0)
-grab_x <int> .D...... Initial x coordinate. (from 0 to INT_MAX) (default 0)
-grab_y <int> .D...... Initial y coordinate. (from 0 to INT_MAX) (default 0)
-video_size <string> .D...... A string describing frame size, such as 640x480 or hd720. (default "vga")
-framerate <string> .D...... (default "ntsc")
-draw_mouse <int> .D...... Draw the mouse pointer. (from 0 to 1) (default 1)
-follow_mouse <int> .D...... Move the grabbing region when the mouse pointer reaches within specified
amount of pixels to the edge of region. (from -1 to INT_MAX) (default 0)
centered .D...... Keep the mouse pointer at the center of grabbing region when following.
-show_region <int> .D...... Show the grabbing region. (from 0 to 1) (default 0)
-region_border <int> .D...... Set the region border thickness. (from 1 to 128) (default 3)
引數包括了,採集解析度-video_size , 支援滑鼠游標 -draw_mouse, 跟中滑鼠軌跡 -follow_mouse, 指定採集區域 -region_border等引數。
例子:
1)錄製桌面
ffmpeg -f x11grab -framerate 25 -video_size 1366*768 -i :0.0 out.mp4
影象的解析度,以實際電腦的支援來,我的因為是1366*768,所剛好錄製下整個螢幕
我設定的引數為: 幀率為25幀 ,解析度為 1366*768,採集裝置為 0.0,輸出的檔案為out.mp4
2)帶滑鼠的錄製桌面
ffmpeg -f x11grab -framerate 25 -video_size 1366*768 -follow_mouse 1 -i :0.0 out.mp4
3)指定錄製區域
ffmpeg -f x11grab -framerate 25 -video_size 352*288 -i :0.0+300,200 out4.mp4
-i :0.0+300,200 制定了x座標為300 y座標為200
這樣就可以錄製桌面了。
————————————————
版權宣告:本文為CSDN博主「言xzZ義」的原創文章,遵循CC 4.0 BY-SA版權協議,轉載請附上原文出處連結及本宣告。
原文連結:https://blog.csdn.net/lailaiquququ11/article/details/80968272
FFmpeg中Linux裝置操作
1、Linux下檢視裝置列表
./ffmpeg -hide_banner -devices
- 輸入裝置:fbdev、lavfi、oss、video4linux2、v4l2
- 輸出裝置:fbdev、oss、video4linux2、v4l2
2、Linux採集裝置fbdev引數
ffmpeg -h demuxer=fbdev
- framerate:採集時視訊影象的重新整理幀率,預設值為25
通過獲得FrameBuffer裝置影象資料進行編碼然後推流或錄製:
ffmpeg -framerate 30 -f fbdev -i /dev/fb0 output.mp4
命令列執行後,Linux系統會獲取終端中的影象,而不是桌面影象。
3、Linux採集裝置v4l2引數
ffmpeg -h demuxer=v4l2
- standard:設定TV標準,僅用於模擬器分析幀時使用
- channel:設定TV通道,僅用於模擬器分析幀時使用
- video_size:設定採集視訊幀大小
- pixel_format:設定採集視訊的解析度
- input_format:設定採集視訊的解析度
- framerate:設定採集視訊的幀率
- list_formats:列舉輸入視訊訊號的資訊
- list_standards:列舉標準資訊(與standard配合使用)
- timestamps:設定時間戳型別
- ts:設定模擬器分析幀時使用的時間戳
- use_libv4l2:使用第三方庫libv4l2選項
使用FFmpeg採集Linux下的v4l2裝置時,主要用來採集攝像頭,而攝像頭通常支援多種畫素格式,有些還支援直接輸出已經編碼好的H.264資料。
如,輸出輸入裝置的format資訊:
ffmpeg -hide_banner -f v4l2 -list_formats all -i /dev/video0
將攝像頭採集為視訊檔案:
ffmpeg -hide_banner -s 1920x1080 -i /dev/video0 output.avi
4、Linux採集裝置x11grab引數
ffmpeg -h demuxer=x11grab
- draw_mouse:支援繪製滑鼠游標
- follw_mouse:跟蹤滑鼠軌跡資料
- framerate:輸入採集的視訊幀率
- show_region:獲得輸入桌面的指定區域
- region_border:當show_region為1時,設定輸入指定區域的邊框的粗細程度
- video_size:輸入採集視訊的解析度
FFmpeg通過x11grab錄製螢幕時,輸入裝置的裝置名規則如下:
[ 主機名 ] : 顯示編號 id. 螢幕編號 id [ + 起始 x 軸 , 起始 y 軸 ]
其中,主機名、起始x軸與起始y軸均為可選引數。
(1)桌面錄製
ffmpeg -f x11grab -framerate 25 -video_size 1366x768 -i :0.0 out.mp4
設定輸入幀率為25,影象解析度為1366x768,採集的裝置為“0.0”,輸出檔案為out.mp4。
(2)桌面錄製指定起始位置
ffmpeg -f x11grab -framerate 25 -video_size 352x288 -i :0.0+300,200 out.mp4
通過引數“:0.0+300,200”指定x座標為200,y座標為200,實現指定區域的錄製。
(3)桌面錄製帶滑鼠記錄的視訊
ffmpeg -f x11grab -video_size 1366x768 -follow_mouse 1 -i :0.0 out.mp4
通過“follow_mouse”引數指定視訊錄製中帶滑鼠。
作者:Goning
連結:https://www.jianshu.com/p/c1b0cb30d09b
來源:簡書
著作權歸作者所有。商業轉載請聯絡作者獲得授權,非商業轉載請註明出處。