ffmpeg-python/index.html
2017-06-03 11:55:29 -07:00

193 lines
9.3 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>procgraph: graphs of concurrent processes &#8212; procgraph documentation</title>
<link rel="stylesheet" href="_static/nature.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: './',
VERSION: '',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true,
SOURCELINK_SUFFIX: '.txt'
};
</script>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<link rel="index" title="Index" href="genindex.html" />
<link rel="search" title="Search" href="search.html" />
</head>
<body>
<div class="related" role="navigation" aria-label="related navigation">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="nav-item nav-item-0"><a href="#">procgraph documentation</a> &#187;</li>
</ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body" role="main">
<div class="section" id="procgraph-graphs-of-concurrent-processes">
<h1>procgraph: graphs of concurrent processes<a class="headerlink" href="#procgraph-graphs-of-concurrent-processes" title="Permalink to this headline"></a></h1>
<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">Github:</th><td class="field-body"><a class="reference external" href="https://github.com/kkroening/procgraph">https://github.com/kkroening/procgraph</a></td>
</tr>
</tbody>
</table>
<div class="toctree-wrapper compound">
</div>
<span class="target" id="module-procgraph"></span><dl class="class">
<dt id="procgraph.Node">
<em class="property">class </em><code class="descclassname">procgraph.</code><code class="descname">Node</code><span class="sig-paren">(</span><em>parents</em>, <em>name</em>, <em>*args</em>, <em>**kwargs</em><span class="sig-paren">)</span><a class="headerlink" href="#procgraph.Node" title="Permalink to this definition"></a></dt>
<dd><p>Bases: <code class="xref py py-class docutils literal"><span class="pre">object</span></code></p>
<p>Node base</p>
<dl class="method">
<dt id="procgraph.Node.concat">
<code class="descname">concat</code><span class="sig-paren">(</span><em>*parents</em><span class="sig-paren">)</span><a class="headerlink" href="#procgraph.Node.concat" title="Permalink to this definition"></a></dt>
<dd></dd></dl>
<dl class="method">
<dt id="procgraph.Node.map">
<code class="descname">map</code><span class="sig-paren">(</span><em>parent</em>, <em>func</em><span class="sig-paren">)</span><a class="headerlink" href="#procgraph.Node.map" title="Permalink to this definition"></a></dt>
<dd></dd></dl>
<dl class="method">
<dt id="procgraph.Node.run">
<code class="descname">run</code><span class="sig-paren">(</span><em>node</em><span class="sig-paren">)</span><a class="headerlink" href="#procgraph.Node.run" title="Permalink to this definition"></a></dt>
<dd></dd></dl>
<dl class="method">
<dt id="procgraph.Node.to_file">
<code class="descname">to_file</code><span class="sig-paren">(</span><em>parent</em>, <em>filename</em><span class="sig-paren">)</span><a class="headerlink" href="#procgraph.Node.to_file" title="Permalink to this definition"></a></dt>
<dd></dd></dl>
<dl class="method">
<dt id="procgraph.Node.to_text">
<code class="descname">to_text</code><span class="sig-paren">(</span><em>parent</em><span class="sig-paren">)</span><a class="headerlink" href="#procgraph.Node.to_text" title="Permalink to this definition"></a></dt>
<dd></dd></dl>
</dd></dl>
<dl class="function">
<dt id="procgraph.concat">
<code class="descclassname">procgraph.</code><code class="descname">concat</code><span class="sig-paren">(</span><em>*parents</em><span class="sig-paren">)</span><a class="headerlink" href="#procgraph.concat" title="Permalink to this definition"></a></dt>
<dd></dd></dl>
<dl class="function">
<dt id="procgraph.from_file">
<code class="descclassname">procgraph.</code><code class="descname">from_file</code><span class="sig-paren">(</span><em>filename</em><span class="sig-paren">)</span><a class="headerlink" href="#procgraph.from_file" title="Permalink to this definition"></a></dt>
<dd></dd></dl>
<dl class="function">
<dt id="procgraph.from_text">
<code class="descclassname">procgraph.</code><code class="descname">from_text</code><span class="sig-paren">(</span><em>text</em><span class="sig-paren">)</span><a class="headerlink" href="#procgraph.from_text" title="Permalink to this definition"></a></dt>
<dd></dd></dl>
<dl class="function">
<dt id="procgraph.map">
<code class="descclassname">procgraph.</code><code class="descname">map</code><span class="sig-paren">(</span><em>parent</em>, <em>func</em><span class="sig-paren">)</span><a class="headerlink" href="#procgraph.map" title="Permalink to this definition"></a></dt>
<dd></dd></dl>
<dl class="function">
<dt id="procgraph.operator">
<code class="descclassname">procgraph.</code><code class="descname">operator</code><span class="sig-paren">(</span><em>node_classes=set([&lt;class procgraph.Node&gt;])</em>, <em>name=None</em><span class="sig-paren">)</span><a class="headerlink" href="#procgraph.operator" title="Permalink to this definition"></a></dt>
<dd></dd></dl>
<dl class="function">
<dt id="procgraph.run">
<code class="descclassname">procgraph.</code><code class="descname">run</code><span class="sig-paren">(</span><em>node</em><span class="sig-paren">)</span><a class="headerlink" href="#procgraph.run" title="Permalink to this definition"></a></dt>
<dd></dd></dl>
<dl class="function">
<dt id="procgraph.to_file">
<code class="descclassname">procgraph.</code><code class="descname">to_file</code><span class="sig-paren">(</span><em>parent</em>, <em>filename</em><span class="sig-paren">)</span><a class="headerlink" href="#procgraph.to_file" title="Permalink to this definition"></a></dt>
<dd></dd></dl>
<dl class="function">
<dt id="procgraph.to_text">
<code class="descclassname">procgraph.</code><code class="descname">to_text</code><span class="sig-paren">(</span><em>parent</em><span class="sig-paren">)</span><a class="headerlink" href="#procgraph.to_text" title="Permalink to this definition"></a></dt>
<dd></dd></dl>
</div>
<div class="section" id="indices-and-tables">
<h1>Indices and tables<a class="headerlink" href="#indices-and-tables" title="Permalink to this headline"></a></h1>
<ul class="simple">
<li><a class="reference internal" href="genindex.html"><span class="std std-ref">Index</span></a></li>
<li><a class="reference internal" href="py-modindex.html"><span class="std std-ref">Module Index</span></a></li>
<li><a class="reference internal" href="search.html"><span class="std std-ref">Search Page</span></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="sphinxsidebar" role="navigation" aria-label="main navigation">
<div class="sphinxsidebarwrapper">
<h3><a href="#">Table Of Contents</a></h3>
<ul>
<li><a class="reference internal" href="#">procgraph: graphs of concurrent processes</a></li>
<li><a class="reference internal" href="#indices-and-tables">Indices and tables</a></li>
</ul>
<div role="note" aria-label="source link">
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="_sources/index.rst.txt"
rel="nofollow">Show Source</a></li>
</ul>
</div>
<div id="searchbox" style="display: none" role="search">
<h3>Quick search</h3>
<form class="search" action="search.html" method="get">
<div><input type="text" name="q" /></div>
<div><input type="submit" value="Go" /></div>
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="related" role="navigation" aria-label="related navigation">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="genindex.html" title="General Index"
>index</a></li>
<li class="right" >
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="nav-item nav-item-0"><a href="#">procgraph documentation</a> &#187;</li>
</ul>
</div>
<div class="footer" role="contentinfo">
&#169; Copyright 2017, Karl Kroening.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.6.1.
</div>
</body>
</html>