Recherche avancée

Médias (91)

Autres articles (70)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • 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

Sur d’autres sites (10551)

  • aaccoder_mips : update function definitions

    21 août 2015, par Rostislav Pehlivanov
    aaccoder_mips : update function definitions
    

    This commit updates the function definitions in the aaccoder_mips.c
    file. This was broken around a month or so ago with the addition
    of the rounding argument.
    The previous commit in this series also introduced a separate array
    to put the quantization error in, this also needed to be updated,
    albeit non-functional, in the MIPS optimized aaccoder file.

    Credits for the rounding goes to Claudio Freire.

    Signed-off-by : Rostislav Pehlivanov <atomnuker@gmail.com>

    • [DH] libavcodec/mips/aaccoder_mips.c
  • lavc/lpc : exploit even symmetry of window function

    9 mars 2016, par Ganesh Ajjanagadde
    lavc/lpc : exploit even symmetry of window function
    

    Yields 2x improvement in function performance, and boosts aac encoding
    speed by 4% overall. Sample benchmark (Haswell+GCC under -march=native) :
    after :
    ffmpeg -i sin.flac -acodec aac -y sin_new.aac 5.22s user 0.03s system 105% cpu 4.970 total

    before :
    ffmpeg -i sin.flac -acodec aac -y sin_new.aac 5.40s user 0.05s system 105% cpu 5.162 total

    Reviewed-by : Rostislav Pehlivanov <atomnuker@gmail.com>
    Signed-off-by : Ganesh Ajjanagadde <gajjanag@gmail.com>

    • [DH] libavcodec/lpc.c
  • vorbisenc : Separate copying audio samples from windowing

    14 juin 2017, par Tyler Jones
    vorbisenc : Separate copying audio samples from windowing
    

    Audio samples are shifted around when copying from the frame queue so that
    analysis can be done without negatively impacting calculation of the MDCT.

    Window coefficients are applied to the current two overlapped windows
    simultaneously instead of applying overlap for the next frame ahead of time.
    This improves readability when applying windows of varying lengths.

    Signed-off-by : Tyler Jones <tdjones879@gmail.com>
    Reviewed-by : Rostislav Pehlivanov <atomnuker@gmail.com>

    • [DH] libavcodec/vorbisenc.c