mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-06 04:15:44 +08:00
Update docs
This commit is contained in:
parent
655b2f48c2
commit
dbcf259b26
@ -81,6 +81,10 @@
|
|||||||
<table style="width: 100%" class="indextable genindextable"><tr>
|
<table style="width: 100%" class="indextable genindextable"><tr>
|
||||||
<td style="width: 33%; vertical-align: top;"><ul>
|
<td style="width: 33%; vertical-align: top;"><ul>
|
||||||
<li><a href="index.html#ffmpeg.drawbox">drawbox() (in module ffmpeg)</a>
|
<li><a href="index.html#ffmpeg.drawbox">drawbox() (in module ffmpeg)</a>
|
||||||
|
</li>
|
||||||
|
</ul></td>
|
||||||
|
<td style="width: 33%; vertical-align: top;"><ul>
|
||||||
|
<li><a href="index.html#ffmpeg.drawtext">drawtext() (in module ffmpeg)</a>
|
||||||
</li>
|
</li>
|
||||||
</ul></td>
|
</ul></td>
|
||||||
</tr></table>
|
</tr></table>
|
||||||
|
146
index.html
146
index.html
@ -141,6 +141,152 @@ video with inverted luma.</li>
|
|||||||
<p>Official documentation: <a class="reference external" href="https://ffmpeg.org/ffmpeg-filters.html#drawbox">drawbox</a></p>
|
<p>Official documentation: <a class="reference external" href="https://ffmpeg.org/ffmpeg-filters.html#drawbox">drawbox</a></p>
|
||||||
</dd></dl>
|
</dd></dl>
|
||||||
|
|
||||||
|
<dl class="function">
|
||||||
|
<dt id="ffmpeg.drawtext">
|
||||||
|
<code class="descclassname">ffmpeg.</code><code class="descname">drawtext</code><span class="sig-paren">(</span><em>stream</em>, <em>text=None</em>, <em>x=0</em>, <em>y=0</em>, <em>escape_text=True</em>, <em>**kwargs</em><span class="sig-paren">)</span><a class="headerlink" href="#ffmpeg.drawtext" title="Permalink to this definition">¶</a></dt>
|
||||||
|
<dd><p>Draw a text string or text from a specified file on top of a video, using the libfreetype library.</p>
|
||||||
|
<p>To enable compilation of this filter, you need to configure FFmpeg with <code class="docutils literal"><span class="pre">--enable-libfreetype</span></code>. To enable default
|
||||||
|
font fallback and the font option you need to configure FFmpeg with <code class="docutils literal"><span class="pre">--enable-libfontconfig</span></code>. To enable the
|
||||||
|
text_shaping option, you need to configure FFmpeg with <code class="docutils literal"><span class="pre">--enable-libfribidi</span></code>.</p>
|
||||||
|
<table class="docutils field-list" frame="void" rules="none">
|
||||||
|
<col class="field-name" />
|
||||||
|
<col class="field-body" />
|
||||||
|
<tbody valign="top">
|
||||||
|
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple">
|
||||||
|
<li><strong>box</strong> – Used to draw a box around text using the background color. The value must be either 1 (enable) or 0
|
||||||
|
(disable). The default value of box is 0.</li>
|
||||||
|
<li><strong>boxborderw</strong> – Set the width of the border to be drawn around the box using boxcolor. The default value of
|
||||||
|
boxborderw is 0.</li>
|
||||||
|
<li><strong>boxcolor</strong> – The color to be used for drawing box around text. For the syntax of this option, check the “Color”
|
||||||
|
section in the ffmpeg-utils manual. The default value of boxcolor is “white”.</li>
|
||||||
|
<li><strong>line_spacing</strong> – Set the line spacing in pixels of the border to be drawn around the box using box. The default
|
||||||
|
value of line_spacing is 0.</li>
|
||||||
|
<li><strong>borderw</strong> – Set the width of the border to be drawn around the text using bordercolor. The default value of
|
||||||
|
borderw is 0.</li>
|
||||||
|
<li><strong>bordercolor</strong> – Set the color to be used for drawing border around text. For the syntax of this option, check the
|
||||||
|
“Color” section in the ffmpeg-utils manual. The default value of bordercolor is “black”.</li>
|
||||||
|
<li><strong>expansion</strong> – Select how the text is expanded. Can be either none, strftime (deprecated) or normal (default). See
|
||||||
|
the Text expansion section below for details.</li>
|
||||||
|
<li><strong>basetime</strong> – Set a start time for the count. Value is in microseconds. Only applied in the deprecated strftime
|
||||||
|
expansion mode. To emulate in normal expansion mode use the pts function, supplying the start time (in
|
||||||
|
seconds) as the second argument.</li>
|
||||||
|
<li><strong>fix_bounds</strong> – If true, check and fix text coords to avoid clipping.</li>
|
||||||
|
<li><strong>fontcolor</strong> – The color to be used for drawing fonts. For the syntax of this option, check the “Color” section in
|
||||||
|
the ffmpeg-utils manual. The default value of fontcolor is “black”.</li>
|
||||||
|
<li><strong>fontcolor_expr</strong> – String which is expanded the same way as text to obtain dynamic fontcolor value. By default
|
||||||
|
this option has empty value and is not processed. When this option is set, it overrides fontcolor option.</li>
|
||||||
|
<li><strong>font</strong> – The font family to be used for drawing text. By default Sans.</li>
|
||||||
|
<li><strong>fontfile</strong> – The font file to be used for drawing text. The path must be included. This parameter is mandatory if
|
||||||
|
the fontconfig support is disabled.</li>
|
||||||
|
<li><strong>alpha</strong> – Draw the text applying alpha blending. The value can be a number between 0.0 and 1.0. The expression
|
||||||
|
accepts the same variables x, y as well. The default value is 1. Please see fontcolor_expr.</li>
|
||||||
|
<li><strong>fontsize</strong> – The font size to be used for drawing text. The default value of fontsize is 16.</li>
|
||||||
|
<li><strong>text_shaping</strong> – If set to 1, attempt to shape the text (for example, reverse the order of right-to-left text and
|
||||||
|
join Arabic characters) before drawing it. Otherwise, just draw the text exactly as given. By default 1 (if
|
||||||
|
supported).</li>
|
||||||
|
<li><strong>ft_load_flags</strong> – <p>The flags to be used for loading the fonts. The flags map the corresponding flags supported by
|
||||||
|
libfreetype, and are a combination of the following values:</p>
|
||||||
|
<ul>
|
||||||
|
<li><code class="docutils literal"><span class="pre">default</span></code></li>
|
||||||
|
<li><code class="docutils literal"><span class="pre">no_scale</span></code></li>
|
||||||
|
<li><code class="docutils literal"><span class="pre">no_hinting</span></code></li>
|
||||||
|
<li><code class="docutils literal"><span class="pre">render</span></code></li>
|
||||||
|
<li><code class="docutils literal"><span class="pre">no_bitmap</span></code></li>
|
||||||
|
<li><code class="docutils literal"><span class="pre">vertical_layout</span></code></li>
|
||||||
|
<li><code class="docutils literal"><span class="pre">force_autohint</span></code></li>
|
||||||
|
<li><code class="docutils literal"><span class="pre">crop_bitmap</span></code></li>
|
||||||
|
<li><code class="docutils literal"><span class="pre">pedantic</span></code></li>
|
||||||
|
<li><code class="docutils literal"><span class="pre">ignore_global_advance_width</span></code></li>
|
||||||
|
<li><code class="docutils literal"><span class="pre">no_recurse</span></code></li>
|
||||||
|
<li><code class="docutils literal"><span class="pre">ignore_transform</span></code></li>
|
||||||
|
<li><code class="docutils literal"><span class="pre">monochrome</span></code></li>
|
||||||
|
<li><code class="docutils literal"><span class="pre">linear_design</span></code></li>
|
||||||
|
<li><code class="docutils literal"><span class="pre">no_autohint</span></code></li>
|
||||||
|
</ul>
|
||||||
|
<p>Default value is “default”. For more information consult the documentation for the FT_LOAD_* libfreetype
|
||||||
|
flags.</p>
|
||||||
|
</li>
|
||||||
|
<li><strong>shadowcolor</strong> – The color to be used for drawing a shadow behind the drawn text. For the syntax of this option,
|
||||||
|
check the “Color” section in the ffmpeg-utils manual. The default value of shadowcolor is “black”.</li>
|
||||||
|
<li><strong>shadowx</strong> – The x offset for the text shadow position with respect to the position of the text. It can be either
|
||||||
|
positive or negative values. The default value is “0”.</li>
|
||||||
|
<li><strong>shadowy</strong> – The y offset for the text shadow position with respect to the position of the text. It can be either
|
||||||
|
positive or negative values. The default value is “0”.</li>
|
||||||
|
<li><strong>start_number</strong> – The starting frame number for the n/frame_num variable. The default value is “0”.</li>
|
||||||
|
<li><strong>tabsize</strong> – The size in number of spaces to use for rendering the tab. Default value is 4.</li>
|
||||||
|
<li><strong>timecode</strong> – Set the initial timecode representation in “hh:mm:ss[:;.]ff” format. It can be used with or without
|
||||||
|
text parameter. timecode_rate option must be specified.</li>
|
||||||
|
<li><strong>rate</strong> – Set the timecode frame rate (timecode only).</li>
|
||||||
|
<li><strong>timecode_rate</strong> – Alias for <code class="docutils literal"><span class="pre">rate</span></code>.</li>
|
||||||
|
<li><strong>r</strong> – Alias for <code class="docutils literal"><span class="pre">rate</span></code>.</li>
|
||||||
|
<li><strong>tc24hmax</strong> – If set to 1, the output of the timecode option will wrap around at 24 hours. Default is 0 (disabled).</li>
|
||||||
|
<li><strong>text</strong> – The text string to be drawn. The text must be a sequence of UTF-8 encoded characters. This parameter is
|
||||||
|
mandatory if no file is specified with the parameter textfile.</li>
|
||||||
|
<li><strong>textfile</strong> – A text file containing text to be drawn. The text must be a sequence of UTF-8 encoded characters.
|
||||||
|
This parameter is mandatory if no text string is specified with the parameter text. If both text and
|
||||||
|
textfile are specified, an error is thrown.</li>
|
||||||
|
<li><strong>reload</strong> – If set to 1, the textfile will be reloaded before each frame. Be sure to update it atomically, or it
|
||||||
|
may be read partially, or even fail.</li>
|
||||||
|
<li><strong>x</strong> – The expression which specifies the offset where text will be drawn within the video frame. It is relative to
|
||||||
|
the left border of the output image. The default value is “0”.</li>
|
||||||
|
<li><strong>y</strong> – The expression which specifies the offset where text will be drawn within the video frame. It is relative to
|
||||||
|
the top border of the output image. The default value is “0”. See below for the list of accepted constants
|
||||||
|
and functions.</li>
|
||||||
|
</ul>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<dl class="docutils">
|
||||||
|
<dt>Expression constants:</dt>
|
||||||
|
<dd><dl class="first docutils">
|
||||||
|
<dt>The parameters for x and y are expressions containing the following constants and functions:</dt>
|
||||||
|
<dd><ul class="first last simple">
|
||||||
|
<li>dar: input display aspect ratio, it is the same as <code class="docutils literal"><span class="pre">(w</span> <span class="pre">/</span> <span class="pre">h)</span> <span class="pre">*</span> <span class="pre">sar</span></code></li>
|
||||||
|
<li>hsub: horizontal chroma subsample values. For example for the pixel format “yuv422p” hsub is 2 and vsub
|
||||||
|
is 1.</li>
|
||||||
|
<li>vsub: vertical chroma subsample values. For example for the pixel format “yuv422p” hsub is 2 and vsub
|
||||||
|
is 1.</li>
|
||||||
|
<li>line_h: the height of each text line</li>
|
||||||
|
<li>lh: Alias for <code class="docutils literal"><span class="pre">line_h</span></code>.</li>
|
||||||
|
<li>main_h: the input height</li>
|
||||||
|
<li>h: Alias for <code class="docutils literal"><span class="pre">main_h</span></code>.</li>
|
||||||
|
<li>H: Alias for <code class="docutils literal"><span class="pre">main_h</span></code>.</li>
|
||||||
|
<li>main_w: the input width</li>
|
||||||
|
<li>w: Alias for <code class="docutils literal"><span class="pre">main_w</span></code>.</li>
|
||||||
|
<li>W: Alias for <code class="docutils literal"><span class="pre">main_w</span></code>.</li>
|
||||||
|
<li>ascent: the maximum distance from the baseline to the highest/upper grid coordinate used to place a glyph
|
||||||
|
outline point, for all the rendered glyphs. It is a positive value, due to the grid’s orientation with the Y
|
||||||
|
axis upwards.</li>
|
||||||
|
<li>max_glyph_a: Alias for <code class="docutils literal"><span class="pre">ascent</span></code>.</li>
|
||||||
|
<li>descent: the maximum distance from the baseline to the lowest grid coordinate used to place a glyph outline
|
||||||
|
point, for all the rendered glyphs. This is a negative value, due to the grid’s orientation, with the Y axis
|
||||||
|
upwards.</li>
|
||||||
|
<li>max_glyph_d: Alias for <code class="docutils literal"><span class="pre">descent</span></code>.</li>
|
||||||
|
<li>max_glyph_h: maximum glyph height, that is the maximum height for all the glyphs contained in the rendered
|
||||||
|
text, it is equivalent to ascent - descent.</li>
|
||||||
|
<li>max_glyph_w: maximum glyph width, that is the maximum width for all the glyphs contained in the rendered
|
||||||
|
text.</li>
|
||||||
|
<li>n: the number of input frame, starting from 0</li>
|
||||||
|
<li>rand(min, max): return a random number included between min and max</li>
|
||||||
|
<li>sar: The input sample aspect ratio.</li>
|
||||||
|
<li>t: timestamp expressed in seconds, NAN if the input timestamp is unknown</li>
|
||||||
|
<li>text_h: the height of the rendered text</li>
|
||||||
|
<li>th: Alias for <code class="docutils literal"><span class="pre">text_h</span></code>.</li>
|
||||||
|
<li>text_w: the width of the rendered text</li>
|
||||||
|
<li>tw: Alias for <code class="docutils literal"><span class="pre">text_w</span></code>.</li>
|
||||||
|
<li>x: the x offset coordinates where the text is drawn.</li>
|
||||||
|
<li>y: the y offset coordinates where the text is drawn.</li>
|
||||||
|
</ul>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<p class="last">These parameters allow the x and y expressions to refer each other, so you can for example specify
|
||||||
|
<code class="docutils literal"><span class="pre">y=x/dar</span></code>.</p>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<p>Official documentation: <a class="reference external" href="https://ffmpeg.org/ffmpeg-filters.html#drawtext">drawtext</a></p>
|
||||||
|
</dd></dl>
|
||||||
|
|
||||||
<dl class="function">
|
<dl class="function">
|
||||||
<dt id="ffmpeg.filter_">
|
<dt id="ffmpeg.filter_">
|
||||||
<code class="descclassname">ffmpeg.</code><code class="descname">filter_</code><span class="sig-paren">(</span><em>stream_spec</em>, <em>filter_name</em>, <em>*args</em>, <em>**kwargs</em><span class="sig-paren">)</span><a class="headerlink" href="#ffmpeg.filter_" title="Permalink to this definition">¶</a></dt>
|
<code class="descclassname">ffmpeg.</code><code class="descname">filter_</code><span class="sig-paren">(</span><em>stream_spec</em>, <em>filter_name</em>, <em>*args</em>, <em>**kwargs</em><span class="sig-paren">)</span><a class="headerlink" href="#ffmpeg.filter_" title="Permalink to this definition">¶</a></dt>
|
||||||
|
@ -2,5 +2,5 @@
|
|||||||
# Project: ffmpeg-python
|
# Project: ffmpeg-python
|
||||||
# Version:
|
# Version:
|
||||||
# The remainder of this file is compressed using zlib.
|
# The remainder of this file is compressed using zlib.
|
||||||
xÚ<EFBFBD>ÓÍj„0ð»O1Ð^]ºW`¡‡ÂB@¢N4<4E>d˜ø±O_5Hw¡Ð9)“ßß™¨ÑÚì!¬•£.Y„0¾Ãå2Dgßr|‡²Ð¼´d‰ÛAy<41>Ö™y<>êäÛhÈÃõ9ü’òŠ2ÊD°c57´ˆ¬66"×"Ûc¬÷£ÚÙ¸CB‘3>$Ù›rÈ=Ö”â<16>M›ŒNÈVb;³‰ç0¢'/r#Æ Ü^dãDpµÉà,‚"Ô?[êÑcWYÕ …ò
|
xÚ<EFBFBD>ÔÍj„0ð»O1Ð^]ºW`¡‡ÂB@¢N4<4E>/ƉûôUƒt
|
||||||
gõpð¹ß¿¬£vGO"w,ÃòÜ<>+4›0~ûm51Ün;)¶ãûG¿°–çB~àW>ù¹óˆj;߯‰\Ëø;¯ßU<C39F>Åôæzâ
|
<EFBFBD>“2ùý<EFBFBD>j´v{ˆkåB—,ÂßárØÙ·\+ß¡,ô/m°<6D>ÚAy<41>Ö™i<>êä[6ÁÃõ9ü’òb¥E°#57a[ÆE¶m,#Õ"Û#׊úQ„m<>l¶!¡È“l(‡ÔcoÙn³•Ñ ɪUlg2|nF¢äEnDŽÂñ˜ŒÁIüÖ&ƒ³>BpQý3R<33>þ¨ÀÈ]eUƒÊ+œÕÃÁç~[ü².´;z¹cW‚¯à~\¡Ù„ñÛg«Áí¶“bû×ÿè×ò\ÈüÊÇDî<¢Úƒ×D®eü<65>×ïªÇâL'Š«
|
@ -1 +1 @@
|
|||||||
Search.setIndex({docnames:["index"],envversion:52,filenames:["index.rst"],objects:{"":{ffmpeg:[0,0,0,"-"]},ffmpeg:{colorchannelmixer:[0,1,1,""],concat:[0,1,1,""],crop:[0,1,1,""],drawbox:[0,1,1,""],filter_:[0,1,1,""],get_args:[0,1,1,""],hflip:[0,1,1,""],hue:[0,1,1,""],input:[0,1,1,""],merge_outputs:[0,1,1,""],output:[0,1,1,""],overlay:[0,1,1,""],overwrite_output:[0,1,1,""],run:[0,1,1,""],setpts:[0,1,1,""],trim:[0,1,1,""],vflip:[0,1,1,""],view:[0,1,1,""],zoompan:[0,1,1,""]}},objnames:{"0":["py","module","Python module"],"1":["py","function","Python function"]},objtypes:{"0":"py:module","1":"py:function"},terms:{"case":0,"default":0,"function":0,"true":0,For:0,PTS:0,The:0,accept:0,action:0,activ:0,adjust:0,after:0,alia:0,all:0,also:0,alwai:0,angl:0,anoth:0,appli:0,area:0,arg:0,argument:0,asetpt:0,ask:0,audio:0,author:0,automat:0,avoid:0,behavior:0,both:0,box:0,bright:0,call:0,can:0,chang:0,channel:0,check:0,cmd:0,codec:0,color:0,colorchannelmix:0,com:0,command:0,common:0,concat:0,concaten:0,configur:0,confus:0,construct:0,contain:0,continu:0,convert:0,coordin:0,corner:0,correctli:0,correspond:0,crop:0,custom:0,degre:0,deprec:0,dictionari:0,differ:0,directli:0,disabl:0,displai:0,document:0,draw:0,drawbox:0,drop:0,durat:0,dure:0,each:0,edg:0,effect:0,encount:0,end:0,end_fram:0,end_pt:0,endal:0,eof:0,eof_act:0,eval:0,evalu:0,exactli:0,exampl:0,except:0,explicitli:0,expr:0,express:0,fail:0,fals:0,file:0,filenam:0,filter:0,filter_:0,filter_nam:0,first:0,flip:0,fmpeg:0,follow:0,forc:0,format:0,fps:0,frame:0,from:0,gbrp:0,gener:0,get:0,get_arg:0,github:0,given:0,graph:0,greater:0,handl:0,have:0,hd720:0,height:0,heigth:0,hflip:0,higher:0,horizont:0,how:0,http:0,hue:0,huge:0,imag:0,immedi:0,implement:0,includ:0,incom:0,index:0,init:0,initi:0,input:0,instead:0,interpret:0,invalid:0,invert:0,its:0,join:0,kept:0,keyword:0,kkroen:0,kwarg:0,label:0,last:0,layout:0,left:0,level:0,line:0,list:0,longest:0,luma:0,main:0,main_parent_nod:0,mani:0,manual:0,map:0,maximum:0,mean:0,merge_output:0,miss:0,mix:0,mode:0,modifi:0,modul:0,mp4:0,must:0,name:0,necessari:0,node:0,none:0,normal:0,number:0,offici:0,onc:0,one:0,onli:0,option:0,order:0,other:0,out:0,output:0,over:0,overlai:0,overlaid:0,overlay_parent_nod:0,overwrit:0,overwrite_output:0,pack:0,pad:0,page:0,pan:0,paramet:0,pass:0,pixel:0,planar:0,posit:0,preced:0,present:0,process:0,radian:0,rang:0,rate:0,reason:0,relat:0,repeat:0,repeatlast:0,resolut:0,result:0,rgb:0,run:0,same:0,sampl:0,satur:0,search:0,second:0,secondari:0,section:0,segment:0,select:0,set:0,setpt:0,shorter:0,shortest:0,should:0,silenc:0,singl:0,size:0,sloppi:0,space:0,special:0,specifi:0,standard:0,start:0,start_fram:0,start_pt:0,stream:0,stream_spec:0,subpart:0,suffix:0,sure:0,synchron:0,synopsi:0,syntax:0,system:0,take:0,termin:0,than:0,them:0,thi:0,thick:0,through:0,time:0,timebas:0,timestamp:0,togeth:0,top:0,track:0,trim:0,type:0,unit:0,unsaf:0,until:0,url:0,use:0,used:0,user:0,util:0,valu:0,variabl:0,variou:0,verbatim:0,vertic:0,vflip:0,video:0,view:0,visibl:0,when:0,which:0,width:0,within:0,without:0,work:0,write:0,you:0,yuv420:0,yuv422:0,yuv444:0,zoom:0,zoompan:0},titles:["ffmpeg-python: Python bindings for FFmpeg"],titleterms:{bind:0,ffmpeg:0,indic:0,python:0,tabl:0}})
|
Search.setIndex({docnames:["index"],envversion:52,filenames:["index.rst"],objects:{"":{ffmpeg:[0,0,0,"-"]},ffmpeg:{colorchannelmixer:[0,1,1,""],concat:[0,1,1,""],crop:[0,1,1,""],drawbox:[0,1,1,""],drawtext:[0,1,1,""],filter_:[0,1,1,""],get_args:[0,1,1,""],hflip:[0,1,1,""],hue:[0,1,1,""],input:[0,1,1,""],merge_outputs:[0,1,1,""],output:[0,1,1,""],overlay:[0,1,1,""],overwrite_output:[0,1,1,""],run:[0,1,1,""],setpts:[0,1,1,""],trim:[0,1,1,""],vflip:[0,1,1,""],view:[0,1,1,""],zoompan:[0,1,1,""]}},objnames:{"0":["py","module","Python module"],"1":["py","function","Python function"]},objtypes:{"0":"py:module","1":"py:function"},terms:{"case":0,"default":0,"function":0,"return":0,"true":0,For:0,PTS:0,The:0,These:0,Used:0,accept:0,action:0,activ:0,adjust:0,after:0,alia:0,all:0,allow:0,alpha:0,also:0,alwai:0,angl:0,anoth:0,appli:0,arab:0,area:0,arg:0,argument:0,around:0,ascent:0,asetpt:0,ask:0,aspect:0,atom:0,attempt:0,audio:0,author:0,automat:0,avoid:0,axi:0,background:0,baselin:0,basetim:0,befor:0,behavior:0,behind:0,below:0,between:0,black:0,blend:0,border:0,bordercolor:0,borderw:0,both:0,box:0,boxborderw:0,boxcolor:0,bright:0,call:0,can:0,chang:0,channel:0,charact:0,check:0,chroma:0,clip:0,cmd:0,codec:0,color:0,colorchannelmix:0,com:0,combin:0,command:0,common:0,compil:0,concat:0,concaten:0,configur:0,confus:0,constant:0,construct:0,consult:0,contain:0,continu:0,convert:0,coord:0,coordin:0,corner:0,correctli:0,correspond:0,count:0,crop:0,crop_bitmap:0,custom:0,dar:0,degre:0,deprec:0,descent:0,detail:0,dictionari:0,differ:0,directli:0,disabl:0,displai:0,distanc:0,document:0,draw:0,drawbox:0,drawn:0,drawtext:0,drop:0,due:0,durat:0,dure:0,dynam:0,each:0,edg:0,effect:0,either:0,empti:0,emul:0,enabl:0,encod:0,encount:0,end:0,end_fram:0,end_pt:0,endal:0,eof:0,eof_act:0,equival:0,error:0,escape_text:0,eval:0,evalu:0,even:0,exactli:0,exampl:0,except:0,expand:0,expans:0,explicitli:0,expr:0,express:0,fail:0,fallback:0,fals:0,famili:0,file:0,filenam:0,filter:0,filter_:0,filter_nam:0,first:0,fix:0,fix_bound:0,flag:0,flip:0,fmpeg:0,follow:0,font:0,fontcolor:0,fontcolor_expr:0,fontconfig:0,fontfil:0,fontsiz:0,forc:0,force_autohint:0,format:0,fps:0,frame:0,frame_num:0,from:0,ft_load_:0,ft_load_flag:0,gbrp:0,gener:0,get:0,get_arg:0,github:0,given:0,glyph:0,graph:0,greater:0,grid:0,handl:0,has:0,have:0,hd720:0,height:0,heigth:0,hflip:0,higher:0,highest:0,horizont:0,hour:0,how:0,hsub:0,http:0,hue:0,huge:0,ignore_global_advance_width:0,ignore_transform:0,imag:0,immedi:0,implement:0,includ:0,incom:0,index:0,inform:0,init:0,initi:0,input:0,instead:0,interpret:0,invalid:0,invert:0,its:0,join:0,just:0,kept:0,keyword:0,kkroen:0,kwarg:0,label:0,last:0,layout:0,left:0,level:0,libfontconfig:0,libfreetyp:0,libfribidi:0,librari:0,line:0,line_h:0,line_spac:0,linear_design:0,list:0,load:0,longest:0,lowest:0,luma:0,mai:0,main:0,main_h:0,main_parent_nod:0,main_w:0,mandatori:0,mani:0,manual:0,map:0,max:0,max_glyph_a:0,max_glyph_d:0,max_glyph_h:0,max_glyph_w:0,maximum:0,mean:0,merge_output:0,microsecond:0,min:0,miss:0,mix:0,mode:0,modifi:0,modul:0,monochrom:0,more:0,mp4:0,must:0,name:0,nan:0,necessari:0,need:0,neg:0,no_autohint:0,no_bitmap:0,no_hint:0,no_recurs:0,no_scal:0,node:0,none:0,normal:0,number:0,obtain:0,offici:0,offset:0,onc:0,one:0,onli:0,option:0,order:0,orient:0,other:0,otherwis:0,out:0,outlin:0,output:0,over:0,overlai:0,overlaid:0,overlay_parent_nod:0,overrid:0,overwrit:0,overwrite_output:0,pack:0,pad:0,page:0,pan:0,paramet:0,partial:0,pass:0,path:0,pedant:0,pixel:0,place:0,planar:0,pleas:0,point:0,posit:0,preced:0,present:0,process:0,pts:0,radian:0,rand:0,random:0,rang:0,rate:0,ratio:0,read:0,reason:0,refer:0,rel:0,relat:0,reload:0,render:0,repeat:0,repeatlast:0,represent:0,resolut:0,respect:0,result:0,revers:0,rgb:0,right:0,run:0,same:0,sampl:0,san:0,sar:0,satur:0,search:0,second:0,secondari:0,section:0,see:0,segment:0,select:0,sequenc:0,set:0,setpt:0,shadow:0,shadowcolor:0,shadowi:0,shadowx:0,shape:0,shorter:0,shortest:0,should:0,silenc:0,singl:0,size:0,sloppi:0,space:0,special:0,specifi:0,standard:0,start:0,start_fram:0,start_numb:0,start_pt:0,stream:0,stream_spec:0,strftime:0,string:0,subpart:0,subsampl:0,suffix:0,suppli:0,support:0,sure:0,synchron:0,synopsi:0,syntax:0,system:0,tab:0,tabsiz:0,take:0,tc24hmax:0,termin:0,text:0,text_h:0,text_shap:0,text_w:0,textfil:0,than:0,them:0,thi:0,thick:0,through:0,thrown:0,time:0,timebas:0,timecod:0,timecode_r:0,timestamp:0,togeth:0,top:0,track:0,trim:0,type:0,unit:0,unknown:0,unsaf:0,until:0,updat:0,upper:0,upward:0,url:0,use:0,used:0,user:0,using:0,utf:0,util:0,valu:0,variabl:0,variou:0,verbatim:0,vertic:0,vertical_layout:0,vflip:0,video:0,view:0,visibl:0,vsub:0,wai:0,well:0,when:0,where:0,which:0,white:0,width:0,within:0,without:0,work:0,wrap:0,write:0,you:0,yuv420:0,yuv422:0,yuv422p:0,yuv444:0,zoom:0,zoompan:0},titles:["ffmpeg-python: Python bindings for FFmpeg"],titleterms:{bind:0,ffmpeg:0,indic:0,python:0,tabl:0}})
|
Loading…
x
Reference in New Issue
Block a user