Recherche avancée

Médias (91)

Autres articles (68)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

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

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

Sur d’autres sites (12599)

  • configure : Separate package name and version requirements in helper functions

    16 novembre 2016, par Diego Biurrun
    configure : Separate package name and version requirements in helper functions
    

    The unadorned package name is needed to derive package-related variable names.

    • [DBH] configure
  • I ues FFMPEG to convert bitmap to yuv,and try to save it,but failed

    20 avril 2013, par liaoyuandeyehuo

    I use this way to convert bitmap to yuv
    Save bitmap to video (libavcodec ffmpeg)
    and then save the buffer like this :

    FILE* fp=fopen("aha.yuv","w");
    if(!fp) return NULL;
    fwrite(outPic->data[0],nbytes,1,fp);
    fwrite(outBuffer,nbytes,1,fp);
    fclose(fp);

    but it has only several lines. All most all of the .yuv file is gray.
    I am sure the inbuffer points to the input BGR32 data. So where is wrong ?
    Is The way to save the outBuffer right ?

  • avcodec/hevc_sei : fix amount of bits skipped when reading picture timing SEI message

    6 mai 2017, par James Almer
    avcodec/hevc_sei : fix amount of bits skipped when reading picture timing SEI message
    

    The code was skipping the entire reported SEI message size regardless of
    the amount of bits read.
    While in theory safe for NALU where the picture timing SEI message is alone
    or at the end as we're using the checked bitstream reader, it isn't in any
    other situation, where every SEI message in the NALU after the picture
    timing one would potentially fail to parse.

    Change the function name to one more in line with the rest of file, and
    remove the bogus "Skipped SEI" debug message while at it.

    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/hevc_sei.c