Recherche avancée

Médias (91)

Autres articles (39)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Création définitive du canal

    12 mars 2010, par

    Lorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
    A la validation, vous recevez un email vous invitant donc à créer votre canal.
    Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
    A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (4947)

  • ffplay : decrease max audio callbacks per second

    14 juin 2014, par Marton Balint
    ffplay : decrease max audio callbacks per second
    

    Too many audio callbacks per second can cause buffer underruns especially under
    load. As now we take into accound the elapsed time after an audio callback when
    determining current audio clock, it is not that important to use small buffer
    sizes and frequent audio callbacks, so lets remove the comment.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] ffplay.c
  • Merge commit ’ebef9f5a56d7df91e010a177a80cfc8dbe394305’

    3 septembre 2014, par Michael Niedermayer
    Merge commit ’ebef9f5a56d7df91e010a177a80cfc8dbe394305’
    

    * commit ’ebef9f5a56d7df91e010a177a80cfc8dbe394305’ :
    time : Use clock_gettime if the monotonic clock is available

    Conflicts :
    configure

    The change to av_gettime() isnt merged, a patch will be posted to the mailing list
    that would do the switch

    Merged-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] configure
  • How to provide clipping information to ffmpeg to help video encoding ?

    24 septembre 2014, par kriss

    I have written a software that create a movie using ffmpeg video encoding API. Basically I call avcode_encode_video() for each image of the movie as explained here

    But in my use case I actually have many informations available about the image that could greatly help the encoder (and hopefully makes the encoding process much faster). The video I’m creating is a sequence of consecutive computer screen captures and for instance I know the list of clipping rectangles of the parts of the screen that actually changed between two frames. In many cases this is reduced to tiny parts of screen like some mouse movement or clock updates.

    Is there any way using the ffmpeg C API to provide this information to encoder ?

    If not is there any other free encoder providing an API that could use that kind of informations ?