]> git.sesse.net Git - ffmpeg/blob - doc/ffmpeg-resampler.texi
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / doc / ffmpeg-resampler.texi
1 \input texinfo @c -*- texinfo -*-
2
3 @settitle FFmpeg Resampler Documentation
4 @titlepage
5 @center @titlefont{FFmpeg Resampler Documentation}
6 @end titlepage
7
8 @top
9
10 @contents
11
12 @chapter Description
13 @c man begin DESCRIPTION
14
15 The FFmpeg resampler provides an high-level interface to the
16 libswresample library audio resampling utilities. In particular it
17 allows to perform audio resampling, audio channel layout rematrixing,
18 and convert audio format and packing layout.
19
20 @c man end DESCRIPTION
21
22 @chapter Resampler Options
23 @c man begin RESAMPLER OPTIONS
24
25 The audio resampler supports the following named options.
26
27 Options may be set by specifying -@var{option} @var{value} in the
28 FFmpeg tools, @var{option}=@var{value} for the aresample filter,
29 by setting the value explicitly in the
30 @code{SwrContext} options or using the @file{libavutil/opt.h} API for
31 programmatic use.
32
33 @table @option
34
35 @item ich, in_channel_count
36 Set the number of input channels. Default value is 0. Setting this
37 value is not mandatory if the corresponding channel layout
38 @option{in_channel_layout} is set.
39
40 @item och, out_channel_count
41 Set the number of output channels. Default value is 0. Setting this
42 value is not mandatory if the corresponding channel layout
43 @option{out_channel_layout} is set.
44
45 @item uch, used_channel_count
46 Set the number of used channels. Default value is 0. This option is
47 only used for special remapping.
48
49 @item isr, in_sample_rate
50 Set the input sample rate. Default value is 0.
51
52 @item osr, out_sample_rate
53 Set the output sample rate. Default value is 0.
54
55 @item isf, in_sample_fmt
56 Specify the input sample format. It is set by default to @code{none}.
57
58 @item osf, out_sample_fmt
59 Specify the output sample format. It is set by default to @code{none}.
60
61 @item tsf, internal_sample_fmt
62 Set the internal sample format. Default value is @code{none}.
63
64 @item icl, in_channel_layout
65 Set the input channel layout.
66
67 @item ocl, out_channel_layout
68 Set the output channel layout.
69
70 @item clev, center_mix_level
71 Set center mix level. It is a value expressed in deciBel, and must be
72 inclusively included between -32 and +32.
73
74 @item slev, surround_mix_level
75 Set surround mix level. It is a value expressed in deciBel, and must
76 be inclusively included between -32 and +32.
77
78 @item lfe_mix_evel
79 Set LFE mix level.
80
81 @item rmvol, rematrix_volume
82 Set rematrix volume. Default value is 1.0.
83
84 @item flags, swr_flags
85 Set flags used by the converter. Default value is 0.
86
87 It supports the following individual flags:
88 @table @option
89 @item res
90 force resampling
91 @end table
92
93 @item dither_scale
94 Set the dither scale. Default value is 1.
95
96 @item dither_method
97 Set dither method. Default value is 0.
98
99 Supported values:
100 @table @samp
101 @item rectangular
102 select rectangular dither
103 @item triangular
104 select triangular dither
105 @item triangular_hp
106 select triangular dither with high pass
107 @end table
108
109 @item resampler
110 Set resampling engine. Default value is swr.
111
112 Supported values:
113 @table @samp
114 @item swr
115 select the native SW Resampler; filter options precision and cheby are not
116 applicable in this case.
117 @item soxr
118 select the SoX Resampler (where available); compensation, and filter options
119 filter_size, phase_shift, filter_type & kaiser_beta, are not applicable in this
120 case.
121 @end table
122
123 @item filter_size
124 For swr only, set resampling filter size, default value is 16.
125
126 @item phase_shift
127 For swr only, set resampling phase shift, default value is 10, must be included
128 between 0 and 30.
129
130 @item linear_interp
131 Use Linear Interpolation if set to 1, default value is 0.
132
133 @item cutoff
134 Set cutoff frequency (swr: 6dB point; soxr: 0dB point) ratio; must be a float
135 value between 0 and 1.  Default value is 0.8 with swr, and 0.91 with soxr
136 (which, with a sample-rate of 44100, preserves the entire audio band to 20kHz).
137
138 @item precision
139 For soxr only, the precision in bits to which the resampled signal will be
140 calculated.  The default value of 20 (which, with suitable dithering, is
141 appropriate for a destination bit-depth of 16) gives SoX's 'High Quality'; a
142 value of 28 gives SoX's 'Very High Quality'.
143
144 @item cheby
145 For soxr only, selects passband rolloff none (Chebyshev) & higher-precision
146 approximation for 'irrational' ratios. Default value is 0.
147
148 @item min_comp
149 For swr only, set the minimum difference between timestamps and audio data (in
150 seconds) to trigger stretching/squeezing/filling or trimming of the
151 data to make it match the timestamps. The default is that
152 stretching/squeezing/filling and trimming is disabled
153 (@option{min_comp} = @code{FLT_MAX}).
154
155 @item min_hard_comp
156 For swr only, set the minimum difference between timestamps and audio data (in
157 seconds) to trigger adding/dropping samples to make it match the
158 timestamps.  This option effectively is a threshold to select between
159 hard (trim/fill) and soft (squeeze/stretch) compensation. Note that
160 all compensation is by default disabled through @option{min_comp}.
161 The default is 0.1.
162
163 @item comp_duration
164 For swr only, set duration (in seconds) over which data is stretched/squeezed
165 to make it match the timestamps. Must be a non-negative double float value,
166 default value is 1.0.
167
168 @item max_soft_comp
169 For swr only, set maximum factor by which data is stretched/squeezed to make it
170 match the timestamps. Must be a non-negative double float value, default value
171 is 0.
172
173 @item matrix_encoding
174 Select matrixed stereo encoding.
175
176 It accepts the following values:
177 @table @samp
178 @item none
179 select none
180 @item dolby
181 select Dolby
182 @item dplii
183 select Dolby Pro Logic II
184 @end table
185
186 Default value is @code{none}.
187
188 @item filter_type
189 For swr only, select resampling filter type. This only affects resampling
190 operations.
191
192 It accepts the following values:
193 @table @samp
194 @item cubic
195 select cubic
196 @item blackman_nuttall
197 select Blackman Nuttall Windowed Sinc
198 @item kaiser
199 select Kaiser Windowed Sinc
200 @end table
201
202 @item kaiser_beta
203 For swr only, set Kaiser Window Beta value. Must be an integer included between
204 2 and 16, default value is 9.
205
206 @end table
207
208 @c man end RESAMPLER OPTIONS
209
210 @chapter See Also
211
212 @ifhtml
213 @url{ffmpeg.html,ffmpeg}, @url{ffplay.html,ffplay}, @url{ffprobe.html,ffprobe}, @url{ffserver.html,ffserver},
214 @url{libswresample.html}
215 @end ifhtml
216
217 @ifnothtml
218 ffmpeg(1), ffplay(1), ffprobe(1), ffserver(1), libswresample(3)
219 @end ifnothtml
220
221 @include authors.texi
222
223 @ignore
224
225 @setfilename ffmpeg-resampler
226 @settitle FFmpeg Resampler
227
228 @end ignore
229
230 @bye