/usr/share/doc/python-pymediainfo-doc/html/index.html is in python-pymediainfo-doc 2.2.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | <!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>Welcome to pymediainfo’s documentation! — pymediainfo 1.0 documentation</title>
<link rel="stylesheet" href="_static/alabaster.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: './',
VERSION: '1.0',
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" />
<link rel="next" title="pymediainfo package" href="pymediainfo.html" />
<link rel="stylesheet" href="_static/custom.css" type="text/css" />
<meta name="viewport" content="width=device-width, initial-scale=0.9, maximum-scale=0.9" />
</head>
<body>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body" role="main">
<div class="section" id="welcome-to-pymediainfo-s-documentation">
<h1>Welcome to pymediainfo’s documentation!<a class="headerlink" href="#welcome-to-pymediainfo-s-documentation" title="Permalink to this headline">¶</a></h1>
<div class="toctree-wrapper compound">
<ul>
<li class="toctree-l1"><a class="reference internal" href="pymediainfo.html">pymediainfo package</a></li>
</ul>
</div>
<div class="section" id="requirements">
<h2>Requirements<a class="headerlink" href="#requirements" title="Permalink to this headline">¶</a></h2>
<p>This is a simple wrapper around the MediaInfo library, which you can find
at <a class="reference external" href="https://mediaarea.net/en/MediaInfo">https://mediaarea.net/en/MediaInfo</a></p>
</div>
<div class="section" id="using-mediainfo">
<h2>Using MediaInfo<a class="headerlink" href="#using-mediainfo" title="Permalink to this headline">¶</a></h2>
<p>There isn’t much to this library so instead of a lot of documentation it is
probably best to just demonstrate how it works:</p>
<div class="highlight-python"><div class="highlight"><pre><span></span><span class="kn">from</span> <span class="nn">pymediainfo</span> <span class="kn">import</span> <span class="n">MediaInfo</span>
<span class="n">media_info</span> <span class="o">=</span> <span class="n">MediaInfo</span><span class="o">.</span><span class="n">parse</span><span class="p">(</span><span class="s1">'my_video_file.mov'</span><span class="p">)</span>
<span class="k">for</span> <span class="n">track</span> <span class="ow">in</span> <span class="n">media_info</span><span class="o">.</span><span class="n">tracks</span><span class="p">:</span>
<span class="k">if</span> <span class="n">track</span><span class="o">.</span><span class="n">track_type</span> <span class="o">==</span> <span class="s1">'Video'</span><span class="p">:</span>
<span class="k">print</span> <span class="n">track</span><span class="o">.</span><span class="n">bit_rate</span><span class="p">,</span> <span class="n">track</span><span class="o">.</span><span class="n">bit_rate_mode</span><span class="p">,</span> <span class="n">track</span><span class="o">.</span><span class="n">codec</span>
<span class="c1"># output: 46033920 CBR DV</span>
</pre></div>
</div>
<p>If you already have the XML data in a string in memory (e.g. you have previously
parsed the file or were sent the dump from <cite>mediainfo</cite> from someone else) you
can call the constructor directly:</p>
<div class="highlight-python"><div class="highlight"><pre><span></span><span class="kn">from</span> <span class="nn">pymediainfo</span> <span class="kn">import</span> <span class="n">MediaInfo</span>
<span class="n">media_info</span> <span class="o">=</span> <span class="n">MediaInfo</span><span class="p">(</span><span class="n">raw_xml_string</span><span class="p">)</span>
</pre></div>
</div>
<p>Since the attributes on the <cite>Track</cite> objects are being dynamically added as the
XML output from MediaInfo is being parsed, there isn’t a firm definition of what
will be available at runtime. In order to make consuming the objects easier so
that you can avoid having to use <cite>hasattr</cite> or <cite>try/except</cite> blocks, the
<cite>__getattribute__</cite> method has been overriden and will just return <cite>None</cite> when
and if an attribute is referenced but doesn’t exist.</p>
<p>This will enable you to write consuming code like:</p>
<div class="highlight-python"><div class="highlight"><pre><span></span><span class="kn">from</span> <span class="nn">pymediainfo</span> <span class="kn">import</span> <span class="n">MediaInfo</span>
<span class="n">media_info</span> <span class="o">=</span> <span class="n">MediaInfo</span><span class="o">.</span><span class="n">parse</span><span class="p">(</span><span class="s1">'my_video_file.mov'</span><span class="p">)</span>
<span class="k">for</span> <span class="n">track</span> <span class="ow">in</span> <span class="n">media_info</span><span class="o">.</span><span class="n">tracks</span><span class="p">:</span>
<span class="k">if</span> <span class="n">track</span><span class="o">.</span><span class="n">bit_rate</span> <span class="ow">is</span> <span class="ow">not</span> <span class="bp">None</span><span class="p">:</span>
<span class="k">print</span> <span class="s2">"</span><span class="si">%s</span><span class="s2">: </span><span class="si">%s</span><span class="s2">"</span> <span class="o">%</span> <span class="p">(</span><span class="n">track</span><span class="o">.</span><span class="n">track_type</span><span class="p">,</span> <span class="n">track</span><span class="o">.</span><span class="n">bit_rate</span><span class="p">)</span>
<span class="k">else</span><span class="p">:</span>
<span class="k">print</span> <span class="s2">"""</span><span class="si">%s</span><span class="s2"> tracks do not have bit rate</span>
<span class="s2"> associated with them."""</span> <span class="o">%</span> <span class="n">track</span><span class="o">.</span><span class="n">track_type</span>
</pre></div>
</div>
<p>Output:</p>
<div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">General</span> <span class="n">tracks</span> <span class="n">do</span> <span class="ow">not</span> <span class="n">have</span> <span class="n">bit</span> <span class="n">rate</span> <span class="n">associated</span> <span class="k">with</span> <span class="n">them</span><span class="o">.</span>
<span class="n">Video</span><span class="p">:</span> <span class="mi">46033920</span>
<span class="n">Audio</span><span class="p">:</span> <span class="mi">1536000</span>
<span class="n">Menu</span> <span class="n">tracks</span> <span class="n">do</span> <span class="ow">not</span> <span class="n">have</span> <span class="n">bit</span> <span class="n">rate</span> <span class="n">associated</span> <span class="k">with</span> <span class="n">them</span><span class="o">.</span>
</pre></div>
</div>
</div>
<div class="section" id="reporting-issues-bugs">
<h2>Reporting Issues / Bugs<a class="headerlink" href="#reporting-issues-bugs" title="Permalink to this headline">¶</a></h2>
<p>Please use the issue tracker in GitHub at <a class="reference external" href="https://github.com/sbraz/pymediainfo/issues">https://github.com/sbraz/pymediainfo/issues</a>
to report all feature requests or bug reports. Thanks!</p>
</div>
</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="#">Welcome to pymediainfo’s documentation!</a><ul>
<li><a class="reference internal" href="#requirements">Requirements</a></li>
<li><a class="reference internal" href="#using-mediainfo">Using MediaInfo</a></li>
<li><a class="reference internal" href="#reporting-issues-bugs">Reporting Issues / Bugs</a></li>
</ul>
</li>
<li><a class="reference internal" href="#indices-and-tables">Indices and tables</a></li>
</ul>
<div class="relations">
<h3>Related Topics</h3>
<ul>
<li><a href="#">Documentation overview</a><ul>
<li>Next: <a href="pymediainfo.html" title="next chapter">pymediainfo package</a></li>
</ul></li>
</ul>
</div>
<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="footer">
©2017, Patrick Altman, Louis Sautier.
|
Powered by <a href="http://sphinx-doc.org/">Sphinx 1.6.5</a>
& <a href="https://github.com/bitprophet/alabaster">Alabaster 0.7.8</a>
|
<a href="_sources/index.rst.txt"
rel="nofollow">Page source</a>
</div>
</body>
</html>
|