Recherche avancée

Médias (91)

Autres articles (71)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (6692)

  • Getting FFProbe Information With Python

    5 septembre 2012, par Robin Hood

    I've been attempting to figure this out for forever now (I'm new to programming) and I can't figure it out.

    I'm attempting to build a script that will test the file, and give me output from which I can get information like "Audio Format" that I can then put into the filename. However, I can't even get the script to return any file info. I've hit a wall at inserting an input file...

    So at this point I just need help getting it to spit out info based on the argvs I've thrown in. Hopefully I'll be able to figure out how to parse the audio info from that.

    My attempt that seems to be close :

    #!/usr/bin/python
    import os, sys, subprocess, shlex, re
    from subprocess import call
    def probe_file(filename):
       p = subprocess.Popen(['/opt/local/bin/ffprobe', '-show_format', '-pretty', '-loglevel quiet', -i filename], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True)
       print filename
       print p.communicate()
    [probe_file (f) for f in os.listdir('.') if not f.startswith('.')]
  • Revision c0214e7155 : Cache loop filter errors. This avoids fitlering a frame multiple times at the s

    25 janvier 2014, par Alex Converse

    Changed Paths :
     Modify /vp9/encoder/vp9_picklpf.c



    Cache loop filter errors.

    This avoids fitlering a frame multiple times at the same level.

    Change-Id : I1fd54dd7ea257d16da8569f48036b8fad3a3ed61

  • Revision af87148a22 : Merge "Add vp9_tm_predictor_32x32 neon implementation which is 7.8 times faster

    28 janvier 2014, par hkuang

    Merge "Add vp9_tm_predictor_32x32 neon implementation which is 7.8 times faster
    than C."