ffmpeg官方下载地址:http://ffmpeg.zeranoe.com/builds/(windows版本)
1、ffmpeg转换YUV raw video为avi格式
G:\Practice\Tools\ffmpeg\bin>ffmpeg -s 176x144 -i G:\Practice\TestMedia\salesman_qcif.yuv -vcodec mjpeg G:\Practice\TestMedia\salesman_qcif.avi2、将avi转换为yuv
G:\Practice\Tools\ffmpeg\bin>ffmpeg -i G:\Practice\TestMedia\salesman_qcif.avi -vcodec mjpeg dump-yuv=recon.yuv G:\Practice\TestMedia\salesman_qicfO.yuv
如此可以测试峰值信噪比PSNR 和 均方根误差RMSE(使用RMSE_PSNR_Calculator)
3、去隔行
1)old方法去隔行
-r (rate)30f/s; -b 8000k bit/s; -f fmt force format,image2 这里指定转换为bmp图片输出 ; -y 覆盖输出同名文件
G:\Practice\temp\ffmpeg\bin>ffmpeg.exe -i "E:\PracticeData\HD_H_R_32_i.mpg" -r 30 -b 8000k -deinterlace -f image2 -y E:\result\H_ball\Num_%04d.bmp
2)采用yadif滤波器去隔行
(yadif参数参考help full); -vf filter_graph set video filters
G:\Practice\temp\ffmpeg\bin>ffmpeg.exe -i "E:\PracticeData\HD_H_R_32_i.mpg" -r 30 -b 8000k -vf yadif -f image2 E:\result\H_ball_yadif\Num_%04d.bmp
G:\Practice\temp\ffmpeg\bin>ffmpeg.exe -i "E:\PracticeData\Ballet_Upscaled_24.mpg" -vf yadif=mode=send_frame:parity=auto:deint=all -f image2 -y E:\result\Ballet_yadif\Num_%04d.bmp
3)采用w3fdif滤波器去隔行
(w3fdif参数参考help full)
G:\Practice\temp\ffmpeg\bin>ffmpeg.exe -i "E:\PracticeData\HD_H_R_32_i.mpg" -r 30 -b 8000k -vf w3fdif=filter=complex:deint=all -f image2 E:\result\H_ball_w3fdif\Num_%04d.bmp
-ss 设置开始时间 -to 设置截止时间
ffmpeg.exe -i "E:\PracticeData\LG HD Demo 1080I_2min20__2min30.ts" -r 30 -b 8000k -deinterlace -ss 0:2:20 -to 0:2:30 -y E:\PracticeData\LG_Flag_p_30_8M.ts
4、将视频转换为帧序列
eg:
mkdir G:\Practice\Result\DI_result\Ballet //创建文件夹 “Ballet”
G: //转到G盘
cd \Practice\temp\ffmpeg\bin\ //进入ffmpeg.exe目录
ffmpeg.exe -i E:\PracticeData\LG_Flag_p_30_8M.ts -ss 0:2:20 -to 0:2:30 -f image2 G:\Practice\Result\DI_result\Flag\Nmc_%04d.bmp //将视频文件“ LG_Flag_p_30_8M.ts” 2min20s到2min30s转换为帧序列;-f 输出格式指定; “Nmc_%04d.bmp ” 输出文件批量命名
5、**.mpg视频转.yuv帧序列
G:\Practice\temp\ffmpeg\bin>ffmpeg.exe -i E:\PracticeData\HD_H_R_32_i.mpg -vcodec mjpeg dump-yuv=recon.yuv -y E:\PracticeData\HD_H_R_32_i.yuv
附1:常用ffmpeg命令
http://www.oschina.net/code/snippet_222150_25379#42207
附2: help full
Hyper fast Audio and Video encoder
usage: ffmpeg [options] [[infile options] -i infile]... {[outfile options] outfile}...
Getting help:
-h -- print basic options
-h long -- print more options
-h full -- print all options (including all format and codec specific options, very long)
See man ffmpeg for detailed description of the options.
Print help / information / capabilities:
-L show license
-h topic show help
-? topic show help
-help topic show help
--help topic show help
-version show version
-formats show available formats
-codecs show available codecs
-decoders show available decoders
-encoders show available encoders
-bsfs show available bit stream filters
-protocols show available protocols
-filters show available filters
-pix_fmts show available pixel formats
-layouts show standard channel layouts
-sample_fmts show available audio sample formats
Global options (affect whole program instead of just one file:
-loglevel loglevel set logging level
-v loglevel set logging level
-report generate a report
-max_alloc bytes set maximum size of a single allocated block
-y overwrite output files
-n never overwrite output files
-stats print progress report during encoding
-max_error_rate ratio of errors (0.0: no errors, 1.0: 100% error maximum error rate
-bits_per_raw_sample number set the number of bits per raw sample
-vol volume change audio volume (256=normal)
Advanced global options:
-cpuflags flags force specific cpu flags
-benchmark add timings for benchmarking
-benchmark_all add timings for each task
-progress url write program-readable progress information
-stdin enable or disable interaction on standard input
-timelimit limit set max runtime in seconds
-dump dump each input packet
-hex when dumping packets, also dump the payload
-vsync video sync method
-async audio sync method
-adrift_threshold threshold audio drift threshold
-copyts copy timestamps
-copytb mode copy input stream time base when stream copying
-dts_delta_threshold threshold timestamp discontinuity delta threshold
-dts_error_threshold threshold timestamp error delta threshold
-xerror error exit on error
-filter_complex graph_description create a complex filtergraph
-lavfi graph_description create a complex filtergraph
-filter_complex_script filename read complex filtergraph description from a file
-debug_ts print timestamp debugging info
-intra deprecated use -g 1
-vdt n discard threshold
-sameq Removed
-same_quant Removed
-deinterlace this option is deprecated, use the yadif filter instead
-psnr calculate PSNR of compressed frames
-vstats dump video coding statistics to file
-vstats_file file dump video coding statistics to file
-dc precision intra_dc_precision
-qphist show QP histogram
-vc channel deprecated, use -channel
-tvstd standard deprecated, use -standard
-isync this option is deprecated and does nothing
-override_ffserver override the options from ffserver
Per-file main options:
-f fmt force format
-c codec codec name
-codec codec codec name
-pre preset preset name
-map_metadata outfile[,metadata]:infile[,metadata] set metadata information of outfile from infile
-t duration record or transcode "duration" seconds of audio/video
-to time_stop record or transcode stop time
-fs limit_size set the limit file size in bytes
-ss time_off set the start time offset
-timestamp time set the recording timestamp ('now' to set the current time)
-metadata string=string add metadata
-target type specify target file type ("vcd", "svcd", "dvd", "dv", "dv50", "pal-vcd", "ntsc-svcd", ...)
-apad audio pad
-frames number set the number of frames to record
-filter filter_graph set stream filtergraph
-filter_script filename read stream filtergraph description from a file
-reinit_filter reinit filtergraph on input parameter changes
Advanced per-file options:
-map [-]input_file_id[:stream_specifier][,sync_file_id[:stream_s set input stream mapping
-map_channel file.stream.channel[:syncfile.syncstream] map an audio channel from one stream to another
-map_chapters input_file_index set chapters mapping
-accurate_seek enable/disable accurate seeking with -ss
-itsoffset time_off set the input ts offset
-itsscale scale set the input ts scale
-dframes number set the number of data frames to record
-re read input at native frame rate
-shortest finish encoding within shortest input
-copyinkf copy initial non-keyframes
-copypriorss copy or discard frames before start time
-tag fourcc/tag force codec tag/fourcc
-q q use fixed quality scale (VBR)
-qscale q use fixed quality scale (VBR)
-profile profile set profile
-attach filename add an attachment to the output file
-dump_attachment filename extract an attachment into a file
-muxdelay seconds set the maximum demux-decode delay
-muxpreload seconds set the initial demux-decode delay
-bsf bitstream_filters A comma-separated list of bitstream filters
-fpre filename set options from indicated preset file
-dcodec codec force data codec ('copy' to copy stream)
Video options:
-vframes number set the number of video frames to record
-r rate set frame rate (Hz value, fraction or abbreviation)
-s size set frame size (WxH or abbreviation)
-aspect aspect set aspect ratio (4:3, 16:9 or 1.3333, 1.7777)
-bits_per_raw_sample number set the number of bits per raw sample
-vn disable video
-vcodec codec force video codec ('copy' to copy stream)
-timecode hh:mm:ss[:;.]ff set initial TimeCode value.
-pass n select the pass number (1 to 3)
-vf filter_graph set video filters
-b bitrate video bitrate (please use -b:v)
-dn disable data
Advanced Video options:
-pix_fmt format set pixel format
-intra deprecated use -g 1
-vdt n discard threshold
-rc_override override rate control override for specific intervals
-sameq Removed
-same_quant Removed
-passlogfile prefix select two pass log file name prefix
-deinterlace this option is deprecated, use the yadif filter instead
-psnr calculate PSNR of compressed frames
-vstats dump video coding statistics to file
-vstats_file file dump video coding statistics to file
-intra_matrix matrix specify intra matrix coeffs
-inter_matrix matrix specify inter matrix coeffs
-top top=1/bottom=0/auto=-1 field first
-dc precision intra_dc_precision
-vtag fourcc/tag force video tag/fourcc
-qphist show QP histogram
-force_fps force the selected framerate, disable the best supported framerate selection
-streamid streamIndex:value set the value of an outfile streamid
-force_key_frames timestamps force key frames at specified timestamps
-vc channel deprecated, use -channel
-tvstd standard deprecated, use -standard
-vbsf video bitstream_filters deprecated
-vpre preset set the video options to the indicated preset
Audio options:
-aframes number set the number of audio frames to record
-aq quality set audio quality (codec-specific)
-ar rate set audio sampling rate (in Hz)
-ac channels set number of audio channels
-an disable audio
-acodec codec force audio codec ('copy' to copy stream)
-vol volume change audio volume (256=normal)
-af filter_graph set audio filters
Advanced Audio options:
-atag fourcc/tag force audio tag/fourcc
-sample_fmt format set sample format
-channel_layout layout set channel layout
-guess_layout_max set the maximum number of channels to try to guess the channel layout
-absf audio bitstream_filters deprecated
-apre preset set the audio options to the indicated preset
Subtitle options:
-s size set frame size (WxH or abbreviation)
-sn disable subtitle
-scodec codec force subtitle codec ('copy' to copy stream)
-stag fourcc/tag force subtitle tag/fourcc
-fix_sub_duration fix subtitles duration
-canvas_size size set canvas size (WxH or abbreviation)
-spre preset set the subtitle options to the indicated preset
AVCodecContext AVOptions:
-b
-ab
-bt
-flags
unaligned .D.V.. allow decoders to produce unaligned output
mv4 E..V.. use four motion vectors per macroblock (MPEG-4)
qpel E..V.. use 1/4-pel motion compensation
loop E..V.. use loop filter
gmc E..V.. use gmc
mv0 E..V.. always try a mb with mv=<0,0>
gray ED.V.. only decode/encode grayscale
psnr E..V.. error[?] variables will be set during encoding
naq E..V.. normalize adaptive quantization
ildct E..V.. use interlaced DCT
low_delay ED.V.. force low delay
global_header E..VA. place global headers in extradata instead of every keyframe
bitexact ED.VAS use only bitexact functions (except (I)DCT)
aic E..V.. H.263 advanced intra coding / MPEG-4 AC prediction
ilme E..V.. interlaced motion estimation
cgop E..V.. closed GOP
-me_method
zero E..V.. zero motion estimation (fastest)
full E..V.. full motion estimation (slowest)
epzs E..V.. EPZS motion estimation (default)
esa E..V.. esa motion estimation (alias for full)
tesa E..V.. tesa motion estimation
dia E..V.. diamond motion estimation (alias for EPZS)
log E..V.. log motion estimation
phods E..V.. phods motion estimation
x1 E..V.. X1 motion estimation
hex E..V.. hex motion estimation
umh E..V.. umh motion estimation
iter E..V.. iter motion estimation
-g
-ar
-ac
-cutoff
-frame_size
-qcomp
-qblur
-qmin
-qmax
-qdiff
-bf
-b_qfactor
-rc_strategy
-b_strategy
-ps
-bug
autodetect .D.V..
old_msmpeg4 .D.V.. some old lavc-generated MSMPEG4v3 files (no autodetection)
xvid_ilace .D.V.. Xvid interlacing bug (autodetected if FOURCC == XVIX)
ump4 .D.V.. (autodetected if FOURCC == UMP4)
no_padding .D.V.. padding bug (autodetected)
amv .D.V..
ac_vlc .D.V.. illegal VLC bug (autodetected per FOURCC)
qpel_chroma .D.V..
std_qpel .D.V.. old standard qpel (autodetected per FOURCC/version)
qpel_chroma2 .D.V..
direct_blocksize .D.V.. direct-qpel-blocksize bug (autodetected per FOURCC/version)
edge .D.V.. edge padding bug (autodetected per FOURCC/version)
hpel_chroma .D.V..
dc_clip .D.V..
ms .D.V.. work around various bugs in Microsoft's broken decoders
trunc .D.V.. truncated frames
-strict
very ED.V.. strictly conform to a older more strict version of the spec or reference software
strict ED.V.. strictly conform to all the things in the spec no matter what the consequences
normal ED.V..
unofficial ED.V.. allow unofficial extensions
experimental ED.V.. allow non-standardized experimental things
-b_qoffset
-err_detect
crccheck .D.VA. verify embedded CRCs
bitstream .D.VA. detect bitstream specification deviations
buffer .D.VA. detect improper bitstream length
explode .D.VA. abort decoding on minor error detection
careful .D.VA. consider things that violate the spec and have not been seen in the wild as errors
compliant .D.VA. consider all spec non compliancies as errors
aggressive .D.VA. consider things that a sane encoder should not do as an error
-mpeg_quant
-qsquish
-rc_qmod_amp
-rc_qmod_freq
-rc_eq
-maxrate
-minrate
-bufsize
-rc_buf_aggressivity
-i_qfactor
-i_qoffset
-rc_init_cplx
-dct
auto E..V.. autoselect a good one (default)
fastint E..V.. fast integer
int E..V.. accurate integer
mmx E..V..
altivec E..V..
faan E..V.. floating point AAN DCT
-lumi_mask
-tcplx_mask
-scplx_mask
-p_mask
-dark_mask
-idct
auto ED.V..
int ED.V..
simple ED.V..
simplemmx ED.V..
arm ED.V..
altivec ED.V..
sh4 ED.V..
simplearm ED.V..
simplearmv5te ED.V..
simplearmv6 ED.V..
simpleneon ED.V..
simplealpha ED.V..
ipp ED.V..
xvidmmx ED.V..
faani ED.V.. floating point AAN IDCT
-ec
guess_mvs .D.V.. iterative motion vector (MV) search (slow)
deblock .D.V.. use strong deblock filter for damaged MBs
-pred
left E..V..
plane E..V..
median E..V..
-aspect
-debug
pict .D.V.. picture info
rc E..V.. rate control
bitstream .D.V..
mb_type .D.V.. macroblock (MB) type
qp .D.V.. per-block quantization parameter (QP)
mv .D.V.. motion vector
dct_coeff .D.V..
skip .D.V..
startcode .D.V..
pts .D.V..
er .D.V.. error recognition
mmco .D.V.. memory management control operations (H.264)
bugs .D.V..
vis_qp .D.V.. visualize quantization parameter (QP), lower QP are tinted greener
vis_mb_type .D.V.. visualize block types
buffers .D.V.. picture buffer allocations
thread_ops .D.VA. threading operations
-vismv
pf .D.V.. forward predicted MVs of P-frames
bf .D.V.. forward predicted MVs of B-frames
bb .D.V.. backward predicted MVs of B-frames
-cmp
sad E..V.. sum of absolute differences, fast (default)
sse E..V.. sum of squared errors
satd E..V.. sum of absolute Hadamard transformed differences
dct E..V.. sum of absolute DCT transformed differences
psnr E..V.. sum of squared quantization errors (avoid, low quality)
bit E..V.. number of bits needed for the block
rd E..V.. rate distortion optimal, slow
zero E..V.. 0
vsad E..V.. sum of absolute vertical differences
vsse E..V.. sum of squared vertical differences
nsse E..V.. noise preserving sum of squared differences
w53 E..V.. 5/3 wavelet, only used in snow
w97 E..V.. 9/7 wavelet, only used in snow
dctmax E..V..
chroma E..V..
-subcmp
sad E..V.. sum of absolute differences, fast (default)
sse E..V.. sum of squared errors
satd E..V.. sum of absolute Hadamard transformed differences
dct E..V.. sum of absolute DCT transformed differences
psnr E..V.. sum of squared quantization errors (avoid, low quality)
bit E..V.. number of bits needed for the block
rd E..V.. rate distortion optimal, slow
zero E..V.. 0
vsad E..V.. sum of absolute vertical differences
vsse E..V.. sum of squared vertical differences
nsse E..V.. noise preserving sum of squared differences
w53 E..V.. 5/3 wavelet, only used in snow
w97 E..V.. 9/7 wavelet, only used in snow
dctmax E..V..
chroma E..V..
-mbcmp
sad E..V.. sum of absolute differences, fast (default)
sse E..V.. sum of squared errors
satd E..V.. sum of absolute Hadamard transformed differences
dct E..V.. sum of absolute DCT transformed differences
psnr E..V.. sum of squared quantization errors (avoid, low quality)
bit E..V.. number of bits needed for the block
rd E..V.. rate distortion optimal, slow
zero E..V.. 0
vsad E..V.. sum of absolute vertical differences
vsse E..V.. sum of squared vertical differences
nsse E..V.. noise preserving sum of squared differences
w53 E..V.. 5/3 wavelet, only used in snow
w97 E..V.. 9/7 wavelet, only used in snow
dctmax E..V..
chroma E..V..
-ildctcmp
sad E..V.. sum of absolute differences, fast (default)
sse E..V.. sum of squared errors
satd E..V.. sum of absolute Hadamard transformed differences
dct E..V.. sum of absolute DCT transformed differences
psnr E..V.. sum of squared quantization errors (avoid, low quality)
bit E..V.. number of bits needed for the block
rd E..V.. rate distortion optimal, slow
zero E..V.. 0
vsad E..V.. sum of absolute vertical differences
vsse E..V.. sum of squared vertical differences
nsse E..V.. noise preserving sum of squared differences
w53 E..V.. 5/3 wavelet, only used in snow
w97 E..V.. 9/7 wavelet, only used in snow
dctmax E..V..
chroma E..V..
-dia_size
-last_pred
-preme
-precmp
sad E..V.. sum of absolute differences, fast (default)
sse E..V.. sum of squared errors
satd E..V.. sum of absolute Hadamard transformed differences
dct E..V.. sum of absolute DCT transformed differences
psnr E..V.. sum of squared quantization errors (avoid, low quality)
bit E..V.. number of bits needed for the block
rd E..V.. rate distortion optimal, slow
zero E..V.. 0
vsad E..V.. sum of absolute vertical differences
vsse E..V.. sum of squared vertical differences
nsse E..V.. noise preserving sum of squared differences
w53 E..V.. 5/3 wavelet, only used in snow
w97 E..V.. 9/7 wavelet, only used in snow
dctmax E..V..
chroma E..V..
-pre_dia_size
-subq
-me_range
-ibias
-pbias
-global_quality
-coder
vlc E..V.. variable length coder / Huffman coder
ac E..V.. arithmetic coder
raw E..V.. raw (no encoding)
rle E..V.. run-length coder
deflate E..V.. deflate-based coder
-context
-mbd
simple E..V.. use mbcmp (default)
bits E..V.. use fewest bits
rd E..V.. use best rate distortion
-sc_threshold
-lmin
-lmax
-nr
-rc_init_occupancy
-flags2
fast E..V.. allow non-spec-compliant speedup tricks
noout E..V.. skip bitstream encoding
ignorecrop .D.V.. ignore cropping information from sps
local_header E..V.. place global headers at every keyframe instead of in extradata
chunks .D.V.. Frame data might be split into multiple chunks
showall .D.V.. Show all frames before the first keyframe
-error
-threads
auto ED.V.. autodetect a suitable number of threads to use
-me_threshold
-mb_threshold
-dc
-nssew
-skip_top
-skip_bottom
-profile
unknown E..VA.
aac_main E...A.
aac_low E...A.
aac_ssr E...A.
aac_ltp E...A.
aac_he E...A.
aac_he_v2 E...A.
aac_ld E...A.
aac_eld E...A.
mpeg2_aac_low E...A.
mpeg2_aac_he E...A.
dts E...A.
dts_es E...A.
dts_96_24 E...A.
dts_hd_hra E...A.
dts_hd_ma E...A.
-level
unknown E..VA.
-lowres
-skip_threshold
-skip_factor
-skip_exp
-skipcmp
sad E..V.. sum of absolute differences, fast (default)
sse E..V.. sum of squared errors
satd E..V.. sum of absolute Hadamard transformed differences
dct E..V.. sum of absolute DCT transformed differences
psnr E..V.. sum of squared quantization errors (avoid, low quality)
bit E..V.. number of bits needed for the block
rd E..V.. rate distortion optimal, slow
zero E..V.. 0
vsad E..V.. sum of absolute vertical differences
vsse E..V.. sum of squared vertical differences
nsse E..V.. noise preserving sum of squared differences
w53 E..V.. 5/3 wavelet, only used in snow
w97 E..V.. 9/7 wavelet, only used in snow
dctmax E..V..
chroma E..V..
-border_mask
-mblmin
-mblmax
-mepc
-skip_loop_filter
none .D.V.. discard no frame
default .D.V.. discard useless frames
noref .D.V.. discard all non-reference frames
bidir .D.V.. discard all bidirectional frames
nokey .D.V.. discard all frames except keyframes
all .D.V.. discard all frames
-skip_idct
none .D.V.. discard no frame
default .D.V.. discard useless frames
noref .D.V.. discard all non-reference frames
bidir .D.V.. discard all bidirectional frames
nokey .D.V.. discard all frames except keyframes
all .D.V.. discard all frames
-skip_frame
none .D.V.. discard no frame
default .D.V.. discard useless frames
noref .D.V.. discard all non-reference frames
bidir .D.V.. discard all bidirectional frames
nokey .D.V.. discard all frames except keyframes
all .D.V.. discard all frames
-bidir_refine
-brd_scale
-keyint_min
-refs
-chromaoffset
-trellis
-sc_factor
-mv0_threshold
-b_sensitivity
-compression_level
-min_prediction_order
-max_prediction_order
-timecode_frame_start
-request_channels
-channel_layout
-request_channel_layout
-rc_max_vbv_use
-rc_min_vbv_use
-ticks_per_frame
-color_primaries
-color_trc
-colorspace
-color_range
-chroma_sample_location
-slices
-thread_type
slice ED.V..
frame ED.V..
-audio_service_type
ma E...A. Main Audio Service
ef E...A. Effects
vi E...A. Visually Impaired
hi E...A. Hearing Impaired
di E...A. Dialogue
co E...A. Commentary
em E...A. Emergency
vo E...A. Voice Over
ka E...A. Karaoke
-request_sample_fmt
-sub_charenc
-sub_charenc_mode
do_nothing .D...S
auto .D...S
pre_decoder .D...S
-refcounted_frames
-skip_alpha
-field_order
progressive ED.V..
tt ED.V..
bb ED.V..
tb ED.V..
bt ED.V..
cljr encoder AVOptions:
-dither_type
dnxhd AVOptions:
-nitris_compat
ffv1 encoder AVOptions:
-slicecrc
flv encoder AVOptions:
-mpv_flags
skip_rd E..V.. RD optimal MB level residual skipping
strict_gop E..V.. Strictly enforce gop size
qp_rd E..V.. Use rate distortion optimization for qp selection
cbp_rd E..V.. use rate distortion optimization for CBP
-luma_elim_threshold
-chroma_elim_threshold
-quantizer_noise_shaping
frwu Decoder AVOptions:
-change_field_order
GIF encoder AVOptions:
-gifflags
offsetting E..V.. enable picture offsetting
transdiff E..V.. enable transparency detection between frames
gif decoder AVOptions:
-trans_color
h261 encoder AVOptions:
-mpv_flags
skip_rd E..V.. RD optimal MB level residual skipping
strict_gop E..V.. Strictly enforce gop size
qp_rd E..V.. Use rate distortion optimization for qp selection
cbp_rd E..V.. use rate distortion optimization for CBP
-luma_elim_threshold
-chroma_elim_threshold
-quantizer_noise_shaping
H.263 encoder AVOptions:
-obmc
-structured_slices
-mb_info
-mpv_flags
skip_rd E..V.. RD optimal MB level residual skipping
strict_gop E..V.. Strictly enforce gop size
qp_rd E..V.. Use rate distortion optimization for qp selection
cbp_rd E..V.. use rate distortion optimization for CBP
-luma_elim_threshold
-chroma_elim_threshold
-quantizer_noise_shaping
H.263p encoder AVOptions:
-umv
-aiv
-obmc
-structured_slices
-mpv_flags
skip_rd E..V.. RD optimal MB level residual skipping
strict_gop E..V.. Strictly enforce gop size
qp_rd E..V.. Use rate distortion optimization for qp selection
cbp_rd E..V.. use rate distortion optimization for CBP
-luma_elim_threshold
-chroma_elim_threshold
-quantizer_noise_shaping
H264 Decoder AVOptions:
HEVC decoder AVOptions:
-disable-au
-strict-displaywin
jpeg2000 AVOptions:
-lowres
MJPEG decoder AVOptions:
-extern_huff
mpeg1video encoder AVOptions:
-gop_timecode
-intra_vlc
-drop_frame_timecode
-scan_offset
-mpv_flags
skip_rd E..V.. RD optimal MB level residual skipping
strict_gop E..V.. Strictly enforce gop size
qp_rd E..V.. Use rate distortion optimization for qp selection
cbp_rd E..V.. use rate distortion optimization for CBP
-luma_elim_threshold
-chroma_elim_threshold
-quantizer_noise_shaping
mpeg2video encoder AVOptions:
-gop_timecode
-intra_vlc
-drop_frame_timecode
-scan_offset
-non_linear_quant
-alternate_scan
-mpv_flags
skip_rd E..V.. RD optimal MB level residual skipping
strict_gop E..V.. Strictly enforce gop size
qp_rd E..V.. Use rate distortion optimization for qp selection
cbp_rd E..V.. use rate distortion optimization for CBP
-luma_elim_threshold
-chroma_elim_threshold
-quantizer_noise_shaping
MPEG4 encoder AVOptions:
-data_partitioning
-alternate_scan
-mpv_flags
skip_rd E..V.. RD optimal MB level residual skipping
strict_gop E..V.. Strictly enforce gop size
qp_rd E..V.. Use rate distortion optimization for qp selection
cbp_rd E..V.. use rate distortion optimization for CBP
-luma_elim_threshold
-chroma_elim_threshold
-quantizer_noise_shaping
MPEG4 Video Decoder AVOptions:
msmpeg4v2 encoder AVOptions:
-mpv_flags
skip_rd E..V.. RD optimal MB level residual skipping
strict_gop E..V.. Strictly enforce gop size
qp_rd E..V.. Use rate distortion optimization for qp selection
cbp_rd E..V.. use rate distortion optimization for CBP
-luma_elim_threshold
-chroma_elim_threshold
-quantizer_noise_shaping
msmpeg4v3 encoder AVOptions:
-mpv_flags
skip_rd E..V.. RD optimal MB level residual skipping
strict_gop E..V.. Strictly enforce gop size
qp_rd E..V.. Use rate distortion optimization for qp selection
cbp_rd E..V.. use rate distortion optimization for CBP
-luma_elim_threshold
-chroma_elim_threshold
-quantizer_noise_shaping
PNG encoder AVOptions:
-dpi
-dpm
ProRes encoder AVOptions:
-mbs_per_slice
-profile
proxy E..V..
lt E..V..
standard E..V..
hq E..V..
4444 E..V..
-vendor
-bits_per_mb
-quant_mat
auto E..V..
proxy E..V..
lt E..V..
standard E..V..
hq E..V..
default E..V..
-alpha_bits
rawdec AVOptions:
-top
rv10 encoder AVOptions:
-mpv_flags
skip_rd E..V.. RD optimal MB level residual skipping
strict_gop E..V.. Strictly enforce gop size
qp_rd E..V.. Use rate distortion optimization for qp selection
cbp_rd E..V.. use rate distortion optimization for CBP
-luma_elim_threshold
-chroma_elim_threshold
-quantizer_noise_shaping
rv20 encoder AVOptions:
-mpv_flags
skip_rd E..V.. RD optimal MB level residual skipping
strict_gop E..V.. Strictly enforce gop size
qp_rd E..V.. Use rate distortion optimization for qp selection
cbp_rd E..V.. use rate distortion optimization for CBP
-luma_elim_threshold
-chroma_elim_threshold
-quantizer_noise_shaping
snow encoder AVOptions:
-memc_only
-no_bitstream
TIFF encoder AVOptions:
-dpi
-compression_algo
packbits E..V..
raw E..V..
lzw E..V..
deflate E..V..
V210 Decoder AVOptions:
-custom_stride
wmv1 encoder AVOptions:
-mpv_flags
skip_rd E..V.. RD optimal MB level residual skipping
strict_gop E..V.. Strictly enforce gop size
qp_rd E..V.. Use rate distortion optimization for qp selection
cbp_rd E..V.. use rate distortion optimization for CBP
-luma_elim_threshold
-chroma_elim_threshold
-quantizer_noise_shaping
AAC encoder AVOptions:
-stereo_mode
auto E...A. Selected by the Encoder
ms_off E...A. Disable Mid/Side coding
ms_force E...A. Force Mid/Side for the whole frame if possible
-aac_coder
faac E...A. FAAC-inspired method
anmr E...A. ANMR method
twoloop E...A. Two loop searching method
fast E...A. Constant quantizer
AAC decoder AVOptions:
-dual_mono_mode
auto .D..A. autoselection
main .D..A. Select Main/Left channel
sub .D..A. Select Sub/Right channel
both .D..A. Select both channels
AC-3 Encoder AVOptions:
-per_frame_metadata
-center_mixlev
-surround_mixlev
-mixing_level
-room_type
notindicated E...A. Not Indicated (default)
large E...A. Large Room
small E...A. Small Room
-copyright
-dialnorm
-dsur_mode
notindicated E...A. Not Indicated (default)
on E...A. Dolby Surround Encoded
off E...A. Not Dolby Surround Encoded
-original
-dmix_mode
notindicated E...A. Not Indicated (default)
ltrt E...A. Lt/Rt Downmix Preferred
loro E...A. Lo/Ro Downmix Preferred
-ltrt_cmixlev
-ltrt_surmixlev
-loro_cmixlev
-loro_surmixlev
-dsurex_mode
notindicated E...A. Not Indicated (default)
on E...A. Dolby Surround EX Encoded
off E...A. Not Dolby Surround EX Encoded
-dheadphone_mode
notindicated E...A. Not Indicated (default)
on E...A. Dolby Headphone Encoded
off E...A. Not Dolby Headphone Encoded
-ad_conv_type
standard E...A. Standard (default)
hdcd E...A. HDCD
-stereo_rematrixing
-channel_coupling
auto E...A. Selected by the Encoder
-cpl_start_band
auto E...A. Selected by the Encoder
AC3 decoder AVOptions:
-drc_scale
Fixed-Point AC-3 Encoder AVOptions:
-per_frame_metadata
-center_mixlev
-surround_mixlev
-mixing_level