Recherche avancée

Médias (91)

Autres articles (27)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

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

  • opus_celt : move quantization and band decoding to opus_pvq.c

    11 février 2017, par Rostislav Pehlivanov
    opus_celt : move quantization and band decoding to opus_pvq.c
    

    A huge amount can be reused by the encoder, as the only thing
    which needs to be done would be to add a 10 line celt_icwrsi,
    a wrapper around it (celt_alg_quant) and templating the
    ff_celt_decode_band to replace entropy decoding functions
    with entropy encoding.

    There is no performance loss but in fact a performance gain of
    around 6% which is caused by the compiler being able to optimize
    the decoding more efficiently.

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

    • [DH] libavcodec/Makefile
    • [DH] libavcodec/opus.h
    • [DH] libavcodec/opus_celt.c
    • [DH] libavcodec/opus_celt.h
    • [DH] libavcodec/opus_pvq.c
    • [DH] libavcodec/opus_pvq.h
  • opus_pvq : add resynth support and band encoding cost function

    12 avril 2017, par Rostislav Pehlivanov
    opus_pvq : add resynth support and band encoding cost function
    

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

    • [DH] libavcodec/opus_pvq.c
    • [DH] libavcodec/opus_pvq.h
  • opus_pvq : merge band encoding and decoding into one function

    27 avril 2017, par Rostislav Pehlivanov
    opus_pvq : merge band encoding and decoding into one function
    

    Most code between the 2 functions was duplicated which made keeping
    both in sync difficult.

    This also fixes some discovered issues with encoding (incorrect
    TF switching buffers) and reduces stack usage (reuse the already
    allocated CeltFrame->scratch buffer for the quantized coefficients).

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

    • [DH] libavcodec/opus_pvq.c