Recherche avancée

Médias (91)

Autres articles (62)

  • 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

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

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (9140)

  • avformat/dashenc : use local variable and avoid calculate duration multiple times

    26 avril 2020, par Limin Wang
    avformat/dashenc : use local variable and avoid calculate duration multiple times
    

    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>

    • [DH] libavformat/dashenc.c
  • d3d11va : make av_d3d11va_alloc_context() available at all times

    27 septembre 2015, par Anton Khirnov
    d3d11va : make av_d3d11va_alloc_context() available at all times
    

    The public API should not depend on the build configuration.

    • [DBH] libavcodec/Makefile
    • [DBH] libavcodec/d3d11va.c
  • avformat/utils : Don't initialize AVStreamInternal.info multiple times

    26 août 2021, par Andreas Rheinhardt
    avformat/utils : Don't initialize AVStreamInternal.info multiple times
    

    It has been allocated and initialized in avformat_find_stream_info()
    until fd0368e7ca35e2feaf7960564e61a76655c4d1f6 when the structure
    was moved to AVStreamInternal and its allocation to avformat_new_stream.
    In order to also initialize the struct for new streams that only get
    created during avformat_find_stream_info() said the initialization has
    been added to avformat_new_stream() later. Due to the Libav-FFmpeg split
    this has been done twice : In 4cda8aa1c5bc58f8a7f53a21a19b03e7379bbcdc
    and in 30c26c2442e4e44ac5a763c23c4b0fdd9921a7f5. The initialization in
    avformat_find_stream_info() has not been removed at all despite being
    redundant. This commit removes it and the duplicated initialization in
    avformat_new_stream().

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

    • [DH] libavformat/utils.c