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)

  • indeo4 : Decode all or nothing of a band header.

    17 mai 2018, par Michael Niedermayer
    indeo4 : Decode all or nothing of a band header.
    

    This avoids inconsistent value combinations.
    Alternatively it would be possible to add more checks and careful use of
    temporary variables, but my try of this quickly seemed to become
    a rather large change.
    The disadvantage of this, is that the struct is copied back and forth.

    Fixes : index 6 out of bounds for type 'const uint16_t [5][16]'
    Fixes : 6557/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_INDEO4_fuzzer-4787296550256640

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/indeo4.c
  • avfilter/af_acrossover : add per output band gain

    2 décembre 2020, par Paul B Mahol
    avfilter/af_acrossover : add per output band gain
    
    • [DH] doc/filters.texi
    • [DH] libavfilter/af_acrossover.c
  • avcodec/libx264 : Don't unnecessarily add in-band extradata

    20 décembre 2021, par Andreas Rheinhardt
    avcodec/libx264 : Don't unnecessarily add in-band extradata
    

    The check here is meant to check for whether avcintra-class option
    (default value -1) has been set ; yet it checks for the x264_param_t
    value where 0 is the default value (treated as "no avcintra-mode"
    by x264). This meant that in-band extradata has been added unnecessarily
    when using global headers ; furthermore, the first output packet
    had two x264 SEIs.

    Reviewed-by : Limin Wang <lance.lmwang@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/libx264.c