Recherche avancée

Médias (0)

Mot : - Tags -/gis

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (53)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (9371)

  • avcodec/pngdec : Do not pass AVFrame into global header decode

    16 avril 2023, par Michael Niedermayer
    avcodec/pngdec : Do not pass AVFrame into global header decode
    

    The global header should not contain a frame, and decoding it
    would result in leaks

    Fixes : memleak
    Fixes : 45982/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_APNG_fuzzer-6603443149340672

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/pngdec.c
  • avcodec/wrapped_avframe : Don't leak frame metadata, side-data

    18 juillet 2022, par Andreas Rheinhardt
    avcodec/wrapped_avframe : Don't leak frame metadata, side-data
    

    wrapped_avframe_decode() uses an AVFrame as dst in av_frame_move_ref()
    after having called ff_decode_frame_props() to attach side-date
    to this very frame. This leaks all the side-data and metadata
    that ff_decode_frame_props() has attached.

    This happens in various fate-filter-metadata tests since
    6ca43a9675d651d7ea47c7ba2fafb1bf831c4d0b.

    These particular leaks (which affect metadata-only)
    could be fixed by not adding metadata side-data to AVPackets
    in libavdevice if they are also available from the AVFrames.
    Yet this would break users that extract the metadata from
    AVPackets.

    The changes to FATE happen because of the way av_dict_set()
    works when it overwrites an already existing entry :
    It overwrites the entry to be overwritten with the last entry
    and adds the new entry at the end. The end result is that
    the first entry of the dict is the second-to-last-entry of
    the original dict, the last entry of the dict is the last
    entry of the old dict and the first count - 2 entries
    of the original dict are at positions 1..count - 2 in their
    original order.

    Reviewed-by : Timo Rothenpieler <timo@rothenpieler.org>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/wrapped_avframe.c
    • [DH] tests/ref/fate/filter-metadata-cropdetect
    • [DH] tests/ref/fate/filter-metadata-freezedetect
    • [DH] tests/ref/fate/filter-metadata-scdet
    • [DH] tests/ref/fate/filter-metadata-signalstats-yuv420p
    • [DH] tests/ref/fate/filter-metadata-signalstats-yuv420p10
  • avfilter/af_amix : Don't needlessly reallocate table

    7 août 2020, par Andreas Rheinhardt
    avfilter/af_amix : Don't needlessly reallocate table
    

    Replace using ff_add_format() repeatedly by a single call to
    ff_make_format_list(). (Right now this also fixes a memleak : If the
    first ff_add_format() succeeds and a subsequent call fails, the list
    leaks.)

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Reviewed-by : Nicolas George <george@nsup.org>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavfilter/af_amix.c