Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

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

Autres articles (96)

  • MediaSPIP : Modification des droits de création d’objets et de publication définitive

    11 novembre 2010, par

    Par défaut, MediaSPIP permet de créer 5 types d’objets.
    Toujours par défaut les droits de création et de publication définitive de ces objets sont réservés aux administrateurs, mais ils sont bien entendu configurables par les webmestres.
    Ces droits sont ainsi bloqués pour plusieurs raisons : parce que le fait d’autoriser à publier doit être la volonté du webmestre pas de l’ensemble de la plateforme et donc ne pas être un choix par défaut ; parce qu’avoir un compte peut servir à autre choses également, (...)

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (8169)

  • avio : fix potential crashes when combining ffio_ensure_seekback + crc

    17 juin 2015, par wm4
    avio : fix potential crashes when combining ffio_ensure_seekback + crc
    

    Calling ffio_ensure_seekback() if ffio_init_checksum() has been called
    on the same context can lead to out of bounds memory accesses and
    crashes. The reason is that ffio_ensure_seekback() does not update
    checksum_ptr after reallocating the buffer, resulting in a dangling
    pointer.

    This effectively fixes potential crashes when opening mp3 files.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/aviobuf.c
  • avformat/mpegts : initialize max_packet_size when sub-demuxer

    5 février 2022, par Gyan Doshi
    avformat/mpegts : initialize max_packet_size when sub-demuxer
    

    bca30570d2 added a user option to set max_packet_size replacing
    a hardcoded value. This had a side-effect of leaving the field
    set to 0 when packet demuxing is carried out from another demuxer
    using avpriv functions, which could lead to demux failure.

    Hardcoded max_packet_size inside avpriv_mpegts_parse_open to
    2048000 to avoid this. Value chosen to be 10x that of default value
    to accommodate large payloads.

    • [DH] libavformat/mpegts.c
  • avfilter/vf_minterpolate : Reject too small dimensions

    6 octobre 2020, par Andreas Rheinhardt
    avfilter/vf_minterpolate : Reject too small dimensions
    

    The latter code relies upon the dimensions to be not too small ;
    otherwise one will call av_clip() with min > max lateron which aborts
    in case ASSERT_LEVEL is >= 2 or one will get a nonsense result that may
    lead to a heap-buffer-overflow/underflow. The latter has happened in
    ticket #8248 which this commit fixes.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavfilter/vf_minterpolate.c