Commit d16f2faf authored by Thilo Borgmann's avatar Thilo Borgmann

doc/indevs: Add new option and example to avfoundation.

parent 5c2e0e41
...@@ -178,6 +178,9 @@ Capture the mouse pointer. Default is 0. ...@@ -178,6 +178,9 @@ Capture the mouse pointer. Default is 0.
@item -capture_mouse_clicks @item -capture_mouse_clicks
Capture the screen mouse clicks. Default is 0. Capture the screen mouse clicks. Default is 0.
@item -capture_raw_data
Capture the raw device data. Default is 0.
Using this option may result in receiving the underlying data delivered to the AVFoundation framework. E.g. for muxed devices that sends raw DV data to the framework (like tape-based camcorders), setting this option to false results in extracted video frames captured in the designated pixel format only. Setting this option to true results in receiving the raw DV stream untouched.
@end table @end table
@subsection Examples @subsection Examples
...@@ -208,6 +211,13 @@ Record video from the system default video device using the pixel format bgr0 an ...@@ -208,6 +211,13 @@ Record video from the system default video device using the pixel format bgr0 an
$ ffmpeg -f avfoundation -pixel_format bgr0 -i "default:none" out.avi $ ffmpeg -f avfoundation -pixel_format bgr0 -i "default:none" out.avi
@end example @end example
@item
Record raw DV data from a suitable input device and write the output into out.dv:
@example
$ ffmpeg -f avfoundation -capture_raw_data true -i "zr100:none" out.dv
@end example
@end itemize @end itemize
@section bktr @section bktr
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment