Recherche avancée

Médias (91)

Autres articles (47)

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

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

Sur d’autres sites (9437)

  • avcodec/nvdec : don't free NVDECContext->bitstream

    6 février 2024, par James Almer
    avcodec/nvdec : don't free NVDECContext->bitstream
    

    Ensure all hwaccels that allocate a buffer use NVDECContext->bitstream_internal
    instead. Otherwise, if FFHWAccel->end_frame() isn't called before
    FFHWAccel->uninit(), an attempt to free a stale pointer to memory not owned by
    the hwaccel could take place.

    Reviewed-by : Timo Rothenpieler <timo@rothenpieler.org>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/nvdec.c
    • [DH] libavcodec/nvdec_h264.c
    • [DH] libavcodec/nvdec_hevc.c
  • tests/avstring : free the pointer after calls to av_d2str()

    22 décembre 2016, par James Almer
    tests/avstring : free the pointer after calls to av_d2str()
    

    Fixes memleaks.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavutil/tests/avstring.c
  • avfilter/avfiltergraph : Fix use-after-free when inserting auto-converter

    8 octobre 2021, par Andreas Rheinhardt
    avfilter/avfiltergraph : Fix use-after-free when inserting auto-converter
    

    When inserting an auto-resampler, it may be that the configuration
    of the filters that the auto-resampler is supposed to connect is
    already partially merged, i.e. converter->inputs[0].incfg.foo and
    converter->outputs[0].outcfg.foo (where foo is one of formats,
    samplerates, channel_layouts) can coincide. Therefore merging
    the converter filter's input link might modify the outcfg of the
    converter' outlink. Yet the current code in avfiltergraph.c used
    pointers from before merging the inlink for merging the outlink,
    leading to a use-after-free in command lines like :
    $ ffmpeg -f lavfi -i anullsrc=cl=stereo -lavfi channelsplit,axcorrelate -f null -
    Fix this by not using outdated values when merging the outlink.

    This is a regression since 85a6404d7e6c759ddf71d6374812d7ff719728ec.

    Found-by : Paul B Mahol <onemda@gmail.com>
    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavfilter/avfiltergraph.c