Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (94)

  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (4641)

  • 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