Sophie

Sophie

distrib > Mageia > 7 > x86_64 > media > core-release > by-pkgid > 2785055609475ec291b75e220dbb2e76 > files > 32

python-pymediainfo-doc-4.0-1.mga7.noarch.rpm


<!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="X-UA-Compatible" content="IE=Edge" />
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Welcome to pymediainfo’s documentation! &#8212; 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" id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></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>
    <script type="text/javascript" src="_static/language_data.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="sphinxsidebar" role="navigation" aria-label="main navigation">
        <div class="sphinxsidebarwrapper">
<h1 class="logo"><a href="#">pymediainfo</a></h1>








<h3>Navigation</h3>
<ul>
<li class="toctree-l1"><a class="reference internal" href="pymediainfo.html">pymediainfo package</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 id="searchbox" style="display: none" role="search">
  <h3>Quick search</h3>
    <div class="searchformwrapper">
    <form class="search" action="search.html" method="get">
      <input type="text" name="q" />
      <input type="submit" value="Go" />
      <input type="hidden" name="check_keywords" value="yes" />
      <input type="hidden" name="area" value="default" />
    </form>
    </div>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
        </div>
      </div>
      <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>
<p>Binary wheels containing the library are provided for Windows and Mac OS X.</p>
<p>Packages are available for <a class="reference external" href="https://repology.org/metapackage/python:pymediainfo">several Linux distributions</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 notranslate"><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">&#39;my_video_file.mov&#39;</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">&#39;Video&#39;</span><span class="p">:</span>
        <span class="k">print</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="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="p">)</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 notranslate"><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 notranslate"><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">&#39;my_video_file.mov&#39;</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="p">(</span><span class="s2">&quot;{}: {}&quot;</span><span class="o">.</span><span class="n">format</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="p">(</span><span class="s2">&quot;&quot;&quot;{} tracks do not have bit rate</span>
<span class="s2">                 associated with them.&quot;&quot;&quot;</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">track</span><span class="o">.</span><span class="n">track_type</span><span class="p">))</span>
</pre></div>
</div>
<p>Output:</p>
<div class="highlight-text notranslate"><div class="highlight"><pre><span></span>General tracks do not have bit rate associated with them.
Video: 46033920
Audio: 1536000
Menu tracks do not have bit rate associated with them.
</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="clearer"></div>
  </div>
    <div class="footer">
      &copy;2016, Patrick Altman, Louis Sautier.
      
      |
      Powered by <a href="http://sphinx-doc.org/">Sphinx 1.8.4</a>
      &amp; <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>