Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (100)

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 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 (...)

Sur d’autres sites (12031)

  • libavutil\common.h the following files have unsaved change ? change permission

    3 septembre 2015, par user3717658

    i have just downloaded QtMEL and i try to compile the source code in Qtcreator with visual c++ 11 compiler but i get 2 error

    1 : libavutil\common.h the following files have unsaved change (from QtCreator)
    2 : error : C1083 : Cannot open include file : ’libavutil/avconfig.h’ : No such file or directory (from Compiler)

    the avconfig.h file does not exit maybe duo to change in ffmpeg is there any replacement ?

  • Revision ff03d5448a : vp9_mcomp : make search functions private vp9_full_pixel_search() can be used as

    18 août 2015, par James Zern

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


     Modify /vp9/encoder/vp9_mcomp.h



    vp9_mcomp : make search functions private

    vp9_full_pixel_search() can be used as a replacement as it dispatches to
    all search methods

    Change-Id : I57fcb79c1362b569dc95237bdcc8390f54efd440

  • Reliably get PTS values in ffmpeg ?

    21 novembre 2013, par karl_

    I'm trying to write a method that will provide the next frame and presentation time stamp when queried. The code currently looks something like this :

    while( getNextFrame(image, pts) )
    {
       // show current image
       drawImage(currentImage);
       sleep(pts);
       currentImage = image;
    }

    I've been following the Dranger tutorials to this point, but have stalled on reliably getting a PTS value for frames (http://www.dranger.com/ffmpeg/tutorial05.html). The PTS values returned are always 0.

    Also, get_buffer() has been deprecated, so I'm now using the get_buffer2() method to set the global pts value. However, the release_buffer method has also been deprecated and I can't seem to find it's replacement. This leads me to believe that the method laid out in the tutorials may no longer be the best way of accomplishing this task.

    In short, using up to date ffmpeg, what's the best way to grab frame pts values reliably ?