Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (36)

  • 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

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

  • avfilter/framesync : reset nb_in on allocation failure

    5 mai 2024, par James Almer
    avfilter/framesync : reset nb_in on allocation failure
    

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

    • [DH] libavfilter/framesync.c
  • avcodec/dpx_parser : reset index when finding a startcode, not after

    29 mai 2014, par Michael Niedermayer
    avcodec/dpx_parser : reset index when finding a startcode, not after
    

    This is simpler

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

    • [DH] libavcodec/dpx_parser.c
  • avcodec/decode : reset codec on receiving packet after EOF in compat_decode

    9 novembre 2017, par James Cowgill
    avcodec/decode : reset codec on receiving packet after EOF in compat_decode
    

    In commit 061a0c14bb57 ("decode : restructure the core decoding code"), the
    deprecated avcodec_decode_* APIs were reworked so that they called into the
    new avcodec_send_packet / avcodec_receive_frame API. This had the side effect
    of prohibiting sending new packets containing data after a drain
    packet, but in previous versions of FFmpeg this "worked" and some
    applications relied on it.

    To restore some compatibility, reset the codec if we receive a new non-drain
    packet using the old API after draining has completed. While this does
    not give the same behaviour as the old API did, in the majority of cases
    it works and it does not require changes to any other part of the decoding
    code.

    Fixes ticket #6775
    Signed-off-by : James Cowgill <jcowgill@debian.org>
    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavcodec/decode.c