Recherche avancée

Médias (91)

Autres articles (81)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

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

Sur d’autres sites (10850)

  • Revision 1c0769107b : vp10 cleanup : remove nonrd and real-time code Code cleanup. Change-Id : I668bd5

    26 août 2015, par Yunqing Wang

    Changed Paths :
     Modify /vp10/encoder/encodeframe.c


     Modify /vp10/encoder/encoder.c


     Modify /vp10/encoder/ethread.c


     Delete /vp10/encoder/pickmode.c


     Delete /vp10/encoder/pickmode.h


     Modify /vp10/encoder/ratectrl.c


     Modify /vp10/encoder/rd.c


     Modify /vp10/encoder/rdopt.c


     Modify /vp10/encoder/speed_features.c


     Modify /vp10/encoder/speed_features.h


     Modify /vp10/vp10cx.mk



    vp10 cleanup : remove nonrd and real-time code

    Code cleanup.

    Change-Id : I668bd5a4e5fbe96969d51d9ee777fc5f1d8abfe6

  • Anomalie #3162 (Nouveau) : Moteur de recherche : combinaison d’un mot court et d’un mot avec accen...

    30 janvier 2014, par erational -

    Un rédacteur me rapporte un bug curieux.

    par exemple. j’ai un article "La belle hélène et Paris"

    sur les recherches suivantes, le moteur de recherche trouve l’article (ou l’objet documents, mots, ....)
    - hélène paris
    - la paris
    - paris et héléne

    mais si on prend un mot court "la,et " et un mot contenant un accent (hélène), la recherche ne retourne rien
    - la hélène
    - hélène et

  • avformat/matroskaenc : Don't use stream side-data size

    21 mai 2020, par Andreas Rheinhardt
    avformat/matroskaenc : Don't use stream side-data size
    

    av_stream_get_side_data() tells the caller whether a stream has side
    data of a specific type ; if present it can also tell the caller the size
    of the side data via an optional argument. The Matroska muxer always
    used this optional argument, although it doesn't really need the size,
    as the relevant side-data are not buffers, but structures. So change
    this.

    Furthermore, relying on the size also made the code susceptible to
    a quirk of av_stream_get_side_data() : It only sets the size argument if
    it found side data of the desired type. mkv_write_video_color() checks
    for side-data twice with the same variable for the size without resetting
    the size in between ; if the second type of side-data isn't present, the
    size will still be what it was after the first call. This was not
    dangerous in practice, as the check for the existence of the second
    side-data compared the size with the expected size, so it would only be
    problematic if lots of elements were to be added to AVContentLightMetadata.

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

    • [DH] libavformat/matroskaenc.c