Recherche avancée

Médias (91)

Autres articles (84)

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

Sur d’autres sites (9938)

  • avformat/icodec : ico probe with unknown data

    16 février 2016, par Mark Harris
    avformat/icodec : ico probe with unknown data
    

    Fix cases where unknown data (data beyond p->buf_size) could produce a
    higher ico probe score than if the unknown data was known and valid.
    For example :
    Header : OK, 2 frames
    Frame 0 : Unknown (offset points beyond end of probe buffer)
    Frame 1 : Invalid
    Previously this example had a score of 25, even though the score would
    be 1 if the unknown frame was known to be valid or 0 if it was known
    to be invalid. For this example the score is now 1.

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/icodec.c
  • lavf/hls : Add missed side data/disposition

    4 juin 2020, par vacingfang
    lavf/hls : Add missed side data/disposition
    

    hls demuxer get the stream info from sub-stream, but missed side
    data/disposition part, e,g, missed the DOVI side data when the
    stream is Dolby Vision streams.

    Reviewed-by <liuqi05@kuaishou.com>
    Signed-off-by : vacingfang <vacingfang@tencent.com>

    • [DH] libavformat/hls.c
  • h264 : reset the private data in init_thread_copy()

    29 mars 2015, par Anton Khirnov
    h264 : reset the private data in init_thread_copy()
    

    The generic code copies the main context’s private data to all the
    others. However that is quite dangerous, as it might end up copying some
    pointers that are or will become invalid.

    Since everything we actually need will be copied later in
    update_thread_context(), it’s safest to zero the private data in
    init_thread_copy(), so it works the same way as init for the main
    context.

    • [DH] libavcodec/h264.c