Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

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

Autres articles (60)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (13940)

  • Revert "Disable warnings for casting pointers to integers, there is nothing wrong...

    20 novembre 2021, par Andreas Rheinhardt
    Revert "Disable warnings for casting pointers to integers, there is nothing wrong with that."
    

    This reverts commit 5258f64a14713499cf84840b3ab3a1ee7cdcaeb8.
    The premise of said commit (that conversions from pointer to int
    are ok) is wrong : C99/C11 6.3.2.3 5 : "Any pointer type may be converted
    to an integer type. [...] If the result cannot be represented in the
    integer type, the behavior is undefined." (C90 6.3.4 contains a similar
    restriction.) So don't disable -Wpointer-to-int-cast.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] configure
  • qsv : Make the hevc idr_interval consistent with the h264 one

    17 octobre 2017, par Luca Barbato
    qsv : Make the hevc idr_interval consistent with the h264 one
    

    According to the MediaSDK documentation the idr_interval value has
    a different meaning depending on the codec :

    0 in H264 means make every I-frame IDR, in HEVC it means to have
    it only at the beginning.

    1 in H264 means every other I-frame is not-IDR, in HEVC it means
    that every I-frame is IDR.

    Keep the behaviour consistent between the two encoders by increasing
    by 1 internally the idr_interval value for HEVC.

    • [DBH] libavcodec/qsvenc_hevc.c
  • avformat/utils : Move the reference to the packet list

    20 septembre 2019, par Andreas Rheinhardt
    avformat/utils : Move the reference to the packet list
    

    Up until now, ff_packet_list_put had a flaw : When it moved a packet to
    the list (meaning, when it ought to move the reference to the packet
    list instead of creating a new one via av_packet_ref), it did not reset
    the original packet, confusing the ownership of the data in the packet.
    This has been done because some callers of this function were not
    compatible with resetting the packet.

    This commit changes these callers and fixes this flaw. In order to
    indicate that the ownership of the packet has moved to the packet list,
    pointers to constant AVPackets are used whenever the target of the
    pointer might already be owned by the packet list.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/utils.c