-
Notifications
You must be signed in to change notification settings - Fork 330
Expand file tree
/
Copy pathffmpeg-devices.txt
More file actions
1915 lines (1332 loc) · 65.6 KB
/
Copy pathffmpeg-devices.txt
File metadata and controls
1915 lines (1332 loc) · 65.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
FFMPEG-DEVICES(1) FFMPEG-DEVICES(1)
NAME
ffmpeg-devices - FFmpeg devices
DESCRIPTION
This document describes the input and output devices provided by the
libavdevice library.
DEVICE OPTIONS
The libavdevice library provides the same interface as libavformat.
Namely, an input device is considered like a demuxer, and an output
device like a muxer, and the interface and generic device options are
the same provided by libavformat (see the ffmpeg-formats manual).
In addition each input or output device may support so-called private
options, which are specific for that component.
Options may be set by specifying -option value in the FFmpeg tools, or
by setting the value explicitly in the device "AVFormatContext" options
or using the libavutil/opt.h API for programmatic use.
INPUT DEVICES
Input devices are configured elements in FFmpeg which enable accessing
the data coming from a multimedia device attached to your system.
When you configure your FFmpeg build, all the supported input devices
are enabled by default. You can list all available ones using the
configure option "--list-indevs".
You can disable all the input devices using the configure option
"--disable-indevs", and selectively enable an input device using the
option "--enable-indev=INDEV", or you can disable a particular input
device using the option "--disable-indev=INDEV".
The option "-devices" of the ff* tools will display the list of
supported input devices.
A description of the currently available input devices follows.
alsa
ALSA (Advanced Linux Sound Architecture) input device.
To enable this input device during configuration you need libasound
installed on your system.
This device allows capturing from an ALSA device. The name of the
device to capture has to be an ALSA card identifier.
An ALSA identifier has the syntax:
hw:<CARD>[,<DEV>[,<SUBDEV>]]
where the DEV and SUBDEV components are optional.
The three arguments (in order: CARD,DEV,SUBDEV) specify card number or
identifier, device number and subdevice number (-1 means any).
To see the list of cards currently recognized by your system check the
files /proc/asound/cards and /proc/asound/devices.
For example to capture with ffmpeg from an ALSA device with card id 0,
you may run the command:
ffmpeg -f alsa -i hw:0 alsaout.wav
For more information see:
<http://www.alsa-project.org/alsa-doc/alsa-lib/pcm.html>
Options
sample_rate
Set the sample rate in Hz. Default is 48000.
channels
Set the number of channels. Default is 2.
android_camera
Android camera input device.
This input devices uses the Android Camera2 NDK API which is available
on devices with API level 24+. The availability of android_camera is
autodetected during configuration.
This device allows capturing from all cameras on an Android device,
which are integrated into the Camera2 NDK API.
The available cameras are enumerated internally and can be selected
with the camera_index parameter. The input file string is discarded.
Generally the back facing camera has index 0 while the front facing
camera has index 1.
Options
video_size
Set the video size given as a string such as 640x480 or hd720.
Falls back to the first available configuration reported by Android
if requested video size is not available or by default.
framerate
Set the video framerate. Falls back to the first available
configuration reported by Android if requested framerate is not
available or by default (-1).
camera_index
Set the index of the camera to use. Default is 0.
input_queue_size
Set the maximum number of frames to buffer. Default is 5.
avfoundation
AVFoundation input device.
AVFoundation is the currently recommended framework by Apple for
streamgrabbing on OSX >= 10.7 as well as on iOS.
The input filename has to be given in the following syntax:
-i "[[VIDEO]:[AUDIO]]"
The first entry selects the video input while the latter selects the
audio input. The stream has to be specified by the device name or the
device index as shown by the device list. Alternatively, the video
and/or audio input device can be chosen by index using the
B<-video_device_index E<lt>INDEXE<gt>>
and/or
B<-audio_device_index E<lt>INDEXE<gt>>
, overriding any device name or index given in the input filename.
All available devices can be enumerated by using -list_devices true,
listing all device names and corresponding indices.
There are two device name aliases:
"default"
Select the AVFoundation default device of the corresponding type.
"none"
Do not record the corresponding media type. This is equivalent to
specifying an empty device name or index.
Options
AVFoundation supports the following options:
-list_devices <TRUE|FALSE>
If set to true, a list of all available input devices is given
showing all device names and indices.
-video_device_index <INDEX>
Specify the video device by its index. Overrides anything given in
the input filename.
-audio_device_index <INDEX>
Specify the audio device by its index. Overrides anything given in
the input filename.
-pixel_format <FORMAT>
Request the video device to use a specific pixel format. If the
specified format is not supported, a list of available formats is
given and the first one in this list is used instead. Available
pixel formats are: "monob, rgb555be, rgb555le, rgb565be, rgb565le,
rgb24, bgr24, 0rgb, bgr0, 0bgr, rgb0,
bgr48be, uyvy422, yuva444p, yuva444p16le, yuv444p, yuv422p16,
yuv422p10, yuv444p10,
yuv420p, nv12, yuyv422, gray"
-framerate
Set the grabbing frame rate. Default is "ntsc", corresponding to a
frame rate of "30000/1001".
-video_size
Set the video frame size.
-capture_cursor
Capture the mouse pointer. Default is 0.
-capture_mouse_clicks
Capture the screen mouse clicks. Default is 0.
-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.
Examples
o Print the list of AVFoundation supported devices and exit:
$ ffmpeg -f avfoundation -list_devices true -i ""
o Record video from video device 0 and audio from audio device 0 into
out.avi:
$ ffmpeg -f avfoundation -i "0:0" out.avi
o Record video from video device 2 and audio from audio device 1 into
out.avi:
$ ffmpeg -f avfoundation -video_device_index 2 -i ":1" out.avi
o Record video from the system default video device using the pixel
format bgr0 and do not record any audio into out.avi:
$ ffmpeg -f avfoundation -pixel_format bgr0 -i "default:none" out.avi
o Record raw DV data from a suitable input device and write the
output into out.dv:
$ ffmpeg -f avfoundation -capture_raw_data true -i "zr100:none" out.dv
bktr
BSD video input device. Deprecated and will be removed - please contact
the developers if you are interested in maintaining it.
Options
framerate
Set the frame rate.
video_size
Set the video frame size. Default is "vga".
standard
Available values are:
pal
ntsc
secam
paln
palm
ntscj
decklink
The decklink input device provides capture capabilities for Blackmagic
DeckLink devices.
To enable this input device, you need the Blackmagic DeckLink SDK and
you need to configure with the appropriate "--extra-cflags" and
"--extra-ldflags". On Windows, you need to run the IDL files through
widl.
DeckLink is very picky about the formats it supports. Pixel format of
the input can be set with raw_format. Framerate and video size must be
determined for your device with -list_formats 1. Audio sample rate is
always 48 kHz and the number of channels can be 2, 8 or 16. Note that
all audio channels are bundled in one single audio track.
Options
list_devices
If set to true, print a list of devices and exit. Defaults to
false. This option is deprecated, please use the "-sources" option
of ffmpeg to list the available input devices.
list_formats
If set to true, print a list of supported formats and exit.
Defaults to false.
format_code <FourCC>
This sets the input video format to the format given by the FourCC.
To see the supported values of your device(s) use list_formats.
Note that there is a FourCC 'pal ' that can also be used as pal (3
letters). Default behavior is autodetection of the input video
format, if the hardware supports it.
raw_format
Set the pixel format of the captured video. Available values are:
auto
This is the default which means 8-bit YUV 422 or 8-bit ARGB if
format autodetection is used, 8-bit YUV 422 otherwise.
uyvy422
8-bit YUV 422.
yuv422p10
10-bit YUV 422.
argb
8-bit RGB.
bgra
8-bit RGB.
rgb10
10-bit RGB.
teletext_lines
If set to nonzero, an additional teletext stream will be captured
from the vertical ancillary data. Both SD PAL (576i) and HD (1080i
or 1080p) sources are supported. In case of HD sources, OP47
packets are decoded.
This option is a bitmask of the SD PAL VBI lines captured,
specifically lines 6 to 22, and lines 318 to 335. Line 6 is the LSB
in the mask. Selected lines which do not contain teletext
information will be ignored. You can use the special all constant
to select all possible lines, or standard to skip lines 6, 318 and
319, which are not compatible with all receivers.
For SD sources, ffmpeg needs to be compiled with
"--enable-libzvbi". For HD sources, on older (pre-4K) DeckLink card
models you have to capture in 10 bit mode.
channels
Defines number of audio channels to capture. Must be 2, 8 or 16.
Defaults to 2.
duplex_mode
Sets the decklink device duplex/profile mode. Must be unset, half,
full, one_sub_device_full, one_sub_device_half,
two_sub_device_full, four_sub_device_half Defaults to unset.
Note: DeckLink SDK 11.0 have replaced the duplex property by a
profile property. For the DeckLink Duo 2 and DeckLink Quad 2, a
profile is shared between any 2 sub-devices that utilize the same
connectors. For the DeckLink 8K Pro, a profile is shared between
all 4 sub-devices. So DeckLink 8K Pro support four profiles.
Valid profile modes for DeckLink 8K Pro(with DeckLink SDK >= 11.0):
one_sub_device_full, one_sub_device_half, two_sub_device_full,
four_sub_device_half
Valid profile modes for DeckLink Quad 2 and DeckLink Duo 2: half,
full
timecode_format
Timecode type to include in the frame and video stream metadata.
Must be none, rp188vitc, rp188vitc2, rp188ltc, rp188hfr, rp188any,
vitc, vitc2, or serial. Defaults to none (not included).
In order to properly support 50/60 fps timecodes, the ordering of
the queried timecode types for rp188any is HFR, VITC1, VITC2 and
LTC for >30 fps content. Note that this is slightly different to
the ordering used by the DeckLink API, which is HFR, VITC1, LTC,
VITC2.
video_input
Sets the video input source. Must be unset, sdi, hdmi, optical_sdi,
component, composite or s_video. Defaults to unset.
audio_input
Sets the audio input source. Must be unset, embedded, aes_ebu,
analog, analog_xlr, analog_rca or microphone. Defaults to unset.
video_pts
Sets the video packet timestamp source. Must be video, audio,
reference, wallclock or abs_wallclock. Defaults to video.
audio_pts
Sets the audio packet timestamp source. Must be video, audio,
reference, wallclock or abs_wallclock. Defaults to audio.
draw_bars
If set to true, color bars are drawn in the event of a signal loss.
Defaults to true.
queue_size
Sets maximum input buffer size in bytes. If the buffering reaches
this value, incoming frames will be dropped. Defaults to
1073741824.
audio_depth
Sets the audio sample bit depth. Must be 16 or 32. Defaults to 16.
decklink_copyts
If set to true, timestamps are forwarded as they are without
removing the initial offset. Defaults to false.
timestamp_align
Capture start time alignment in seconds. If set to nonzero, input
frames are dropped till the system timestamp aligns with configured
value. Alignment difference of up to one frame duration is
tolerated. This is useful for maintaining input synchronization
across N different hardware devices deployed for 'N-way'
redundancy. The system time of different hardware devices should be
synchronized with protocols such as NTP or PTP, before using this
option. Note that this method is not foolproof. In some border
cases input synchronization may not happen due to thread scheduling
jitters in the OS. Either sync could go wrong by 1 frame or in a
rarer case timestamp_align seconds. Defaults to 0.
wait_for_tc (bool)
Drop frames till a frame with timecode is received. Sometimes
serial timecode isn't received with the first input frame. If that
happens, the stored stream timecode will be inaccurate. If this
option is set to true, input frames are dropped till a frame with
timecode is received. Option timecode_format must be specified.
Defaults to false.
enable_klv(bool)
If set to true, extracts KLV data from VANC and outputs KLV
packets. KLV VANC packets are joined based on MID and PSC fields
and aggregated into one KLV packet. Defaults to false.
Examples
o List input devices:
ffmpeg -sources decklink
o List supported formats:
ffmpeg -f decklink -list_formats 1 -i 'Intensity Pro'
o Capture video clip at 1080i50:
ffmpeg -format_code Hi50 -f decklink -i 'Intensity Pro' -c:a copy -c:v copy output.avi
o Capture video clip at 1080i50 10 bit:
ffmpeg -raw_format yuv422p10 -format_code Hi50 -f decklink -i 'UltraStudio Mini Recorder' -c:a copy -c:v copy output.avi
o Capture video clip at 1080i50 with 16 audio channels:
ffmpeg -channels 16 -format_code Hi50 -f decklink -i 'UltraStudio Mini Recorder' -c:a copy -c:v copy output.avi
dshow
Windows DirectShow input device.
DirectShow support is enabled when FFmpeg is built with the mingw-w64
project. Currently only audio and video devices are supported.
Multiple devices may be opened as separate inputs, but they may also be
opened on the same input, which should improve synchronism between
them.
The input name should be in the format:
<TYPE>=<NAME>[:<TYPE>=<NAME>]
where TYPE can be either audio or video, and NAME is the device's name
or alternative name..
Options
If no options are specified, the device's defaults are used. If the
device does not support the requested options, it will fail to open.
video_size
Set the video size in the captured video.
framerate
Set the frame rate in the captured video.
sample_rate
Set the sample rate (in Hz) of the captured audio.
sample_size
Set the sample size (in bits) of the captured audio.
channels
Set the number of channels in the captured audio.
list_devices
If set to true, print a list of devices and exit.
list_options
If set to true, print a list of selected device's options and exit.
video_device_number
Set video device number for devices with the same name (starts at
0, defaults to 0).
audio_device_number
Set audio device number for devices with the same name (starts at
0, defaults to 0).
pixel_format
Select pixel format to be used by DirectShow. This may only be set
when the video codec is not set or set to rawvideo.
audio_buffer_size
Set audio device buffer size in milliseconds (which can directly
impact latency, depending on the device). Defaults to using the
audio device's default buffer size (typically some multiple of
500ms). Setting this value too low can degrade performance. See
also
<http://msdn.microsoft.com/en-us/library/windows/desktop/dd377582(v=vs.85).aspx>
video_pin_name
Select video capture pin to use by name or alternative name.
audio_pin_name
Select audio capture pin to use by name or alternative name.
crossbar_video_input_pin_number
Select video input pin number for crossbar device. This will be
routed to the crossbar device's Video Decoder output pin. Note
that changing this value can affect future invocations (sets a new
default) until system reboot occurs.
crossbar_audio_input_pin_number
Select audio input pin number for crossbar device. This will be
routed to the crossbar device's Audio Decoder output pin. Note
that changing this value can affect future invocations (sets a new
default) until system reboot occurs.
show_video_device_dialog
If set to true, before capture starts, popup a display dialog to
the end user, allowing them to change video filter properties and
configurations manually. Note that for crossbar devices, adjusting
values in this dialog may be needed at times to toggle between PAL
(25 fps) and NTSC (29.97) input frame rates, sizes, interlacing,
etc. Changing these values can enable different scan rates/frame
rates and avoiding green bars at the bottom, flickering scan lines,
etc. Note that with some devices, changing these properties can
also affect future invocations (sets new defaults) until system
reboot occurs.
show_audio_device_dialog
If set to true, before capture starts, popup a display dialog to
the end user, allowing them to change audio filter properties and
configurations manually.
show_video_crossbar_connection_dialog
If set to true, before capture starts, popup a display dialog to
the end user, allowing them to manually modify crossbar pin
routings, when it opens a video device.
show_audio_crossbar_connection_dialog
If set to true, before capture starts, popup a display dialog to
the end user, allowing them to manually modify crossbar pin
routings, when it opens an audio device.
show_analog_tv_tuner_dialog
If set to true, before capture starts, popup a display dialog to
the end user, allowing them to manually modify TV channels and
frequencies.
show_analog_tv_tuner_audio_dialog
If set to true, before capture starts, popup a display dialog to
the end user, allowing them to manually modify TV audio (like mono
vs. stereo, Language A,B or C).
audio_device_load
Load an audio capture filter device from file instead of searching
it by name. It may load additional parameters too, if the filter
supports the serialization of its properties to. To use this an
audio capture source has to be specified, but it can be anything
even fake one.
audio_device_save
Save the currently used audio capture filter device and its
parameters (if the filter supports it) to a file. If a file with
the same name exists it will be overwritten.
video_device_load
Load a video capture filter device from file instead of searching
it by name. It may load additional parameters too, if the filter
supports the serialization of its properties to. To use this a
video capture source has to be specified, but it can be anything
even fake one.
video_device_save
Save the currently used video capture filter device and its
parameters (if the filter supports it) to a file. If a file with
the same name exists it will be overwritten.
use_video_device_timestamps
If set to false, the timestamp for video frames will be derived
from the wallclock instead of the timestamp provided by the capture
device. This allows working around devices that provide unreliable
timestamps.
Examples
o Print the list of DirectShow supported devices and exit:
$ ffmpeg -list_devices true -f dshow -i dummy
o Open video device Camera:
$ ffmpeg -f dshow -i video="Camera"
o Open second video device with name Camera:
$ ffmpeg -f dshow -video_device_number 1 -i video="Camera"
o Open video device Camera and audio device Microphone:
$ ffmpeg -f dshow -i video="Camera":audio="Microphone"
o Print the list of supported options in selected device and exit:
$ ffmpeg -list_options true -f dshow -i video="Camera"
o Specify pin names to capture by name or alternative name, specify
alternative device name:
$ ffmpeg -f dshow -audio_pin_name "Audio Out" -video_pin_name 2 -i video=video="@device_pnp_\\?\pci#ven_1a0a&dev_6200&subsys_62021461&rev_01#4&e2c7dd6&0&00e1#{65e8773d-8f56-11d0-a3b9-00a0c9223196}\{ca465100-deb0-4d59-818f-8c477184adf6}":audio="Microphone"
o Configure a crossbar device, specifying crossbar pins, allow user
to adjust video capture properties at startup:
$ ffmpeg -f dshow -show_video_device_dialog true -crossbar_video_input_pin_number 0
-crossbar_audio_input_pin_number 3 -i video="AVerMedia BDA Analog Capture":audio="AVerMedia BDA Analog Capture"
fbdev
Linux framebuffer input device.
The Linux framebuffer is a graphic hardware-independent abstraction
layer to show graphics on a computer monitor, typically on the console.
It is accessed through a file device node, usually /dev/fb0.
For more detailed information read the file
Documentation/fb/framebuffer.txt included in the Linux source tree.
See also <http://linux-fbdev.sourceforge.net/>, and fbset(1).
To record from the framebuffer device /dev/fb0 with ffmpeg:
ffmpeg -f fbdev -framerate 10 -i /dev/fb0 out.avi
You can take a single screenshot image with the command:
ffmpeg -f fbdev -framerate 1 -i /dev/fb0 -frames:v 1 screenshot.jpeg
Options
framerate
Set the frame rate. Default is 25.
gdigrab
Win32 GDI-based screen capture device.
This device allows you to capture a region of the display on Windows.
Amongst options for the imput filenames are such elements as:
desktop
or
title=<window_title>
or
hwnd=<window_hwnd>
The first option will capture the entire desktop, or a fixed region of
the desktop. The second and third options will instead capture the
contents of a single window, regardless of its position on the screen.
For example, to grab the entire desktop using ffmpeg:
ffmpeg -f gdigrab -framerate 6 -i desktop out.mpg
Grab a 640x480 region at position "10,20":
ffmpeg -f gdigrab -framerate 6 -offset_x 10 -offset_y 20 -video_size vga -i desktop out.mpg
Grab the contents of the window named "Calculator"
ffmpeg -f gdigrab -framerate 6 -i title=Calculator out.mpg
Options
draw_mouse
Specify whether to draw the mouse pointer. Use the value 0 to not
draw the pointer. Default value is 1.
framerate
Set the grabbing frame rate. Default value is "ntsc", corresponding
to a frame rate of "30000/1001".
show_region
Show grabbed region on screen.
If show_region is specified with 1, then the grabbing region will
be indicated on screen. With this option, it is easy to know what
is being grabbed if only a portion of the screen is grabbed.
Note that show_region is incompatible with grabbing the contents of
a single window.
For example:
ffmpeg -f gdigrab -show_region 1 -framerate 6 -video_size cif -offset_x 10 -offset_y 20 -i desktop out.mpg
video_size
Set the video frame size. The default is to capture the full screen
if desktop is selected, or the full window size if
title=window_title is selected.
offset_x
When capturing a region with video_size, set the distance from the
left edge of the screen or desktop.
Note that the offset calculation is from the top left corner of the
primary monitor on Windows. If you have a monitor positioned to the
left of your primary monitor, you will need to use a negative
offset_x value to move the region to that monitor.
offset_y
When capturing a region with video_size, set the distance from the
top edge of the screen or desktop.
Note that the offset calculation is from the top left corner of the
primary monitor on Windows. If you have a monitor positioned above
your primary monitor, you will need to use a negative offset_y
value to move the region to that monitor.
iec61883
FireWire DV/HDV input device using libiec61883.
To enable this input device, you need libiec61883, libraw1394 and
libavc1394 installed on your system. Use the configure option
"--enable-libiec61883" to compile with the device enabled.
The iec61883 capture device supports capturing from a video device
connected via IEEE1394 (FireWire), using libiec61883 and the new Linux
FireWire stack (juju). This is the default DV/HDV input method in Linux
Kernel 2.6.37 and later, since the old FireWire stack was removed.
Specify the FireWire port to be used as input file, or "auto" to choose
the first port connected.
Options
dvtype
Override autodetection of DV/HDV. This should only be used if auto
detection does not work, or if usage of a different device type
should be prohibited. Treating a DV device as HDV (or vice versa)
will not work and result in undefined behavior. The values auto,
dv and hdv are supported.
dvbuffer
Set maximum size of buffer for incoming data, in frames. For DV,
this is an exact value. For HDV, it is not frame exact, since HDV
does not have a fixed frame size.
dvguid
Select the capture device by specifying its GUID. Capturing will
only be performed from the specified device and fails if no device
with the given GUID is found. This is useful to select the input if
multiple devices are connected at the same time. Look at
/sys/bus/firewire/devices to find out the GUIDs.
Examples
o Grab and show the input of a FireWire DV/HDV device.
ffplay -f iec61883 -i auto
o Grab and record the input of a FireWire DV/HDV device, using a
packet buffer of 100000 packets if the source is HDV.
ffmpeg -f iec61883 -i auto -dvbuffer 100000 out.mpg
jack
JACK input device.
To enable this input device during configuration you need libjack
installed on your system.
A JACK input device creates one or more JACK writable clients, one for
each audio channel, with name client_name:input_N, where client_name is
the name provided by the application, and N is a number which
identifies the channel. Each writable client will send the acquired
data to the FFmpeg input device.
Once you have created one or more JACK readable clients, you need to
connect them to one or more JACK writable clients.
To connect or disconnect JACK clients you can use the jack_connect and
jack_disconnect programs, or do it through a graphical interface, for
example with qjackctl.
To list the JACK clients and their properties you can invoke the
command jack_lsp.
Follows an example which shows how to capture a JACK readable client
with ffmpeg.
# Create a JACK writable client with name "ffmpeg".
$ ffmpeg -f jack -i ffmpeg -y out.wav
# Start the sample jack_metro readable client.
$ jack_metro -b 120 -d 0.2 -f 4000
# List the current JACK clients.
$ jack_lsp -c
system:capture_1
system:capture_2
system:playback_1
system:playback_2
ffmpeg:input_1
metro:120_bpm
# Connect metro to the ffmpeg writable client.
$ jack_connect metro:120_bpm ffmpeg:input_1
For more information read: <http://jackaudio.org/>
Options
channels
Set the number of channels. Default is 2.
kmsgrab
KMS video input device.
Captures the KMS scanout framebuffer associated with a specified CRTC
or plane as a DRM object that can be passed to other hardware
functions.
Requires either DRM master or CAP_SYS_ADMIN to run.
If you don't understand what all of that means, you probably don't want
this. Look at x11grab instead.
Options
device
DRM device to capture on. Defaults to /dev/dri/card0.
format
Pixel format of the framebuffer. This can be autodetected if you
are running Linux 5.7 or later, but needs to be provided for
earlier versions. Defaults to bgr0, which is the most common
format used by the Linux console and Xorg X server.
format_modifier
Format modifier to signal on output frames. This is necessary to
import correctly into some APIs. It can be autodetected if you are
running Linux 5.7 or later, but will need to be provided explicitly
when needed in earlier versions. See the libdrm documentation for
possible values.
crtc_id
KMS CRTC ID to define the capture source. The first active plane
on the given CRTC will be used.
plane_id
KMS plane ID to define the capture source. Defaults to the first
active plane found if neither crtc_id nor plane_id are specified.
framerate
Framerate to capture at. This is not synchronised to any page
flipping or framebuffer changes - it just defines the interval at
which the framebuffer is sampled. Sampling faster than the
framebuffer update rate will generate independent frames with the
same content. Defaults to 30.
Examples
o Capture from the first active plane, download the result to normal
frames and encode. This will only work if the framebuffer is both
linear and mappable - if not, the result may be scrambled or fail
to download.
ffmpeg -f kmsgrab -i - -vf 'hwdownload,format=bgr0' output.mp4
o Capture from CRTC ID 42 at 60fps, map the result to VAAPI, convert
to NV12 and encode as H.264.
ffmpeg -crtc_id 42 -framerate 60 -f kmsgrab -i - -vf 'hwmap=derive_device=vaapi,scale_vaapi=w=1920:h=1080:format=nv12' -c:v h264_vaapi output.mp4
o To capture only part of a plane the output can be cropped - this
can be used to capture a single window, as long as it has a known
absolute position and size. For example, to capture and encode the
middle quarter of a 1920x1080 plane:
ffmpeg -f kmsgrab -i - -vf 'hwmap=derive_device=vaapi,crop=960:540:480:270,scale_vaapi=960:540:nv12' -c:v h264_vaapi output.mp4
lavfi
Libavfilter input virtual device.
This input device reads data from the open output pads of a libavfilter
filtergraph.
For each filtergraph open output, the input device will create a
corresponding stream which is mapped to the generated output. The
filtergraph is specified through the option graph.
Options
graph
Specify the filtergraph to use as input. Each video open output
must be labelled by a unique string of the form "outN", where N is
a number starting from 0 corresponding to the mapped input stream
generated by the device. The first unlabelled output is
automatically assigned to the "out0" label, but all the others need
to be specified explicitly.
The suffix "+subcc" can be appended to the output label to create
an extra stream with the closed captions packets attached to that
output (experimental; only for EIA-608 / CEA-708 for now). The
subcc streams are created after all the normal streams, in the
order of the corresponding stream. For example, if there is
"out19+subcc", "out7+subcc" and up to "out42", the stream #43 is
subcc for stream #7 and stream #44 is subcc for stream #19.
If not specified defaults to the filename specified for the input
device.
graph_file
Set the filename of the filtergraph to be read and sent to the
other filters. Syntax of the filtergraph is the same as the one
specified by the option graph.
dumpgraph
Dump graph to stderr.
Examples
o Create a color video stream and play it back with ffplay:
ffplay -f lavfi -graph "color=c=pink [out0]" dummy
o As the previous example, but use filename for specifying the graph
description, and omit the "out0" label:
ffplay -f lavfi color=c=pink
o Create three different video test filtered sources and play them:
ffplay -f lavfi -graph "testsrc [out0]; testsrc,hflip [out1]; testsrc,negate [out2]" test3
o Read an audio stream from a file using the amovie source and play
it back with ffplay:
ffplay -f lavfi "amovie=test.wav"
o Read an audio stream and a video stream and play it back with
ffplay:
ffplay -f lavfi "movie=test.avi[out0];amovie=test.wav[out1]"
o Dump decoded frames to images and closed captions to a file
(experimental):
ffmpeg -f lavfi -i "movie=test.ts[out0+subcc]" -map v frame%08d.png -map s -c copy -f rawvideo subcc.bin
libcdio
Audio-CD input device based on libcdio.
To enable this input device during configuration you need libcdio
installed on your system. It requires the configure option
"--enable-libcdio".
This device allows playing and grabbing from an Audio-CD.
For example to copy with ffmpeg the entire Audio-CD in /dev/sr0, you
may run the command:
ffmpeg -f libcdio -i /dev/sr0 cd.wav
Options
speed
Set drive reading speed. Default value is 0.
The speed is specified CD-ROM speed units. The speed is set through
the libcdio "cdio_cddap_speed_set" function. On many CD-ROM drives,
specifying a value too large will result in using the fastest
speed.
paranoia_mode
Set paranoia recovery mode flags. It accepts one of the following
values:
disable
verify
overlap
neverskip
full
Default value is disable.
For more information about the available recovery modes, consult
the paranoia project documentation.
libdc1394
IIDC1394 input device, based on libdc1394 and libraw1394.
Requires the configure option "--enable-libdc1394".
Options
framerate
Set the frame rate. Default is "ntsc", corresponding to a frame
rate of "30000/1001".
pixel_format
Select the pixel format. Default is "uyvy422".
video_size
Set the video size given as a string such as "640x480" or "hd720".