Recherche avancée

Médias (0)

Mot : - Tags -/logo

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

Autres articles (56)

  • 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

  • Configuration spécifique pour PHP5

    4 février 2011, par

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

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

  • avcodec/trace_headers_bsf : also parse extradata in packet side data

    5 août 2021, par James Almer
    avcodec/trace_headers_bsf : also parse extradata in packet side data
    

    Certain mov/mp4 files have parameter sets out of band, and when required for a
    sample it may be propagated within the relevant packet's side data.
    This fixes parsing said files if the SPS and/or PPS in the side data is
    different than the one in extradata.

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

    • [DH] libavcodec/trace_headers_bsf.c
  • avformat/matroskaenc : Use common function for H.2645 annex B->mp4

    16 janvier 2022, par Andreas Rheinhardt
    avformat/matroskaenc : Use common function for H.2645 annex B->mp4
    

    Matroska does not have different profiles that allow or disallow
    in-band extradata, so one can just use the ordinary H.264 function
    for H.265, too. (Both use ff_avc_parse_nal_units() internally anyway.)

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

    • [DH] libavformat/matroskaenc.c
  • avcodec/vp8 : Fix wrong vpx_rac_is_end() check

    16 novembre 2022, par Hirokazu Honda
    avcodec/vp8 : Fix wrong vpx_rac_is_end() check
    

    The check of vpx_rac_is_end check(s) are added originally from
    1afd246960202917e244c844c534e9c1e3c323f5. It causes a regression
    of some vp8 stream. b6b9ac5698c8f911841b469af77199153278c55c fixes
    the regression by a sort of band-aid way. This fixes the wrongness
    of the original commit. vpx_rac_is_end() should be called against
    the bool decoder for the vp8 headr context, not one for each
    coefficient. Reference is vp8_dixie_tokens_process_row() in token.c
    in spec 20.16.

    Fixes : Ticket 8069
    Fixes : regression of 1afd246960202917e244c844c534e9c1e3c323f5.
    Fixes : b6b9ac5698c8f911841b469af77199153278c55c

    Co-authored-by : Ronald S. Bultje <rsbultje@gmail.com>
    Signed-off-by : Hirokazu Honda <hiroh@chromium.org>
    Signed-off-by : Ronald S. Bultje <rsbultje@gmail.com>

    • [DH] libavcodec/vp8.c