Recherche avancée

Médias (0)

Mot : - Tags -/navigation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (80)

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (11832)

  • Detect if FFmpeg is running or has stopped running

    21 février 2013, par asprin

    I'm using C to scan a directory which contains frames extracted by ffmpeg. Now in the event that the last file is reached during the scan, I need to check for two conditions :

    1. It's the last file as the video duration is over.
    2. It's the last file as ffmpeg terminated abruptly and is no longer able to populate the directory

    My C program workflow is like :

    while(<there exists="exists" files="files" in="in" the="the" directory="directory">)
    {
      // iterate over them and do something with each frame
    }

    // coming out of the loop means no more files available...so I need a if condition
    if(<check if="if" ffmpeg="ffmpeg" is="is" stopped="stopped">) // &lt;-- need to know what to put inside the condition
    {
      // start it again
    }
    else
    {
     // video is over, nothing more left to do
    }
    </check></there>

    I'm thinking I can do this using Process ID of ffmpeg, but how would I get that info ? Any other alternative way of checking if ffpmeg has stopped ?

    Some metadata

    OS : Windows 7
    IDE : Dev C++
    Language Used : C

  • Revision a76caa7ff4 : Alter Speed 3. This patch deletes the variance based speed three partitioning.

    19 septembre 2013, par Paul Wilkins

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


     Modify /vp9/encoder/vp9_onyx_if.c


     Modify /vp9/encoder/vp9_onyx_int.h



    Alter Speed 3.

    This patch deletes the variance based speed three partitioning.
    Speed 3 now uses the same partitioning method as speed 2
    but with some stricter conditions.

    The speed and quality are now somewhere between speeds 2 and 4
    whereas before it was worse in both than speed 4.

    Change-Id : Ia142e7007299d79db3ceee6ca8670540db6f7a41

  • Revision 2901bf2d00 : Reducing the number of recursive calls. Both decode_modes_sb and decode_modes_b

    30 octobre 2013, par Dmitry Kovalev

    Changed Paths :
     Modify /vp9/decoder/vp9_decodframe.c



    Reducing the number of recursive calls.

    Both decode_modes_sb and decode_modes_b had conditions to immediately
    return at the beginning. Eliminating these conditions here and calling
    these functions only to do a real work. Also unrolling loop for
    PARTITION_SPLIT.

    Change-Id : I2fc41cb74ac491f045a2f04fe68d30ff4aaa555d