Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (46)

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (11962)

  • avcodec/alsdec : Fix decoding error with mono audio files

    7 mai 2021, par Michael Niedermayer
    avcodec/alsdec : Fix decoding error with mono audio files
    

    highest_decoded_channel is modified to serve as meant.

    Reported-by : Noboru Harada <noboru@ieee.org>

    Regression since : a11aa5f3ed7ee4d2385a7b725d43f6070d790b4c
    Fixes : Sin48k16bit1ch.mp4
    Reviewed-by : Thilo Borgmann <thilo.borgmann@mail.de>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/alsdec.c
  • Windows : Ensure FreeLibrary() calls match LoadLibrary() calls

    9 août 2015, par Erik de Castro Lopo
    Windows : Ensure FreeLibrary() calls match LoadLibrary() calls
    

    The function get_utf8_argv() was calling LoadLibrary to load msvcrt.dll
    but wasn’t calling FreeLibrary() if GetProcAddress() fails.

    Patch-from : lvqcl <lvqcl.mail@gmail.com>

    • [DH] src/share/win_utf8_io/win_utf8_io.c
  • libFLAC : More metadata_iterators fixes

    22 mai 2016, par Erik de Castro Lopo
    libFLAC : More metadata_iterators fixes
    

    The previous fixes for metadata_iterators didn’t completely fix the problem.

    The behavior of chain_prepare_for_write_() must always be the same as the
    behavior of FLAC__metadata_chain_check_if_tempfile_needed(). Before this
    fix, one check was missing in FLAC__metadata_chain_check_if_tempfile_needed(),
    and also chain_prepare_for_write_() checked the sizes of the metadata blocks
    *after* making the changes to the chain, while
    FLAC__metadata_chain_check_if_tempfile_needed() does it *before* the changes.

    This patch changes FLAC__metadata_chain_check_if_tempfile_needed() so that it
    keeps some info (lbs_state, lbs_size) about estimated changes and then uses
    it to check the block sizes.

    It also simplifies FLAC__metadata_chain_check_if_tempfile_needed() a little.

    Patch-from : lvqcl <lvqcl.mail@gmail.com>

    • [DH] src/libFLAC/metadata_iterators.c