Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (99)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • 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.

Sur d’autres sites (10000)

  • Revision 7e0e09067e : Set version to 1.1.0.

    3 mai 2012, par Marc Noirot

    Changed Paths :
     Modify /CMakeLists.txt



    Set version to 1.1.0.

  • Can't check ffmpeg version on python. Getting an error

    7 octobre 2019, par HITMAN

    Why do I get this error :

    Traceback (most recent call last):
      File "csgoplayer.py", line 819, in <module>
         print("Found ffmpeg version " + ffmpeg_match.group(1))
    AttributeError: 'NoneType' object has no attribute 'group'
    </module>

    when I run this python script :

    if ffmpeg_path:
       # check ffmpeg version
       ffmpeg_output = subprocess.check_output([ffmpeg_path,'-version'])
       ffmpeg_match = re.match('^ffmpeg version (\d+)\.(\d+)\.?(\d+?)? Copyright.*',
                               ffmpeg_output.decode())
       print("Found ffmpeg version " + ffmpeg_match.group(1))
       ffmpeg_version = int(ffmpeg_match.group(1))

    what is wrong with it ?

  • */version.h : define FF_API macros unconditionally

    12 novembre 2021, par Anton Khirnov
    */version.h : define FF_API macros unconditionally
    

    There is no reason to wrap them in #ifndef guards, they should only be
    defined here and nowhere else. The define guards just add the
    possibility to accidentally use the same FF_API name in different
    libraries.

    • [DH] libavcodec/version.h
    • [DH] libavdevice/version.h
    • [DH] libavfilter/version.h
    • [DH] libavformat/version.h
    • [DH] libavutil/version.h