Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (46)

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

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

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

  • Rewrite main resampling loop (common and linear).

    27 mai 2014, par Ronald S. Bultje
    Rewrite main resampling loop (common and linear).
    

    This removes a branch at a performance-sensitive point (in the middle
    of the loop). In fate-swr-resample-s32p-8000-2626, this makes the code
    about 10% faster. It also simplifies the loops, allowing us to rewrite
    it in yasm at some later point.

    The compensation_distance != 0 code and index < 0 code are still kind
    of hairy. For compensation_distance != 0, this should likely be handled
    in the caller, so that it calls swri_resample twice (once until the
    dst_incr switch-point, and once with the remainder of the samples). For
    index < 0, the code should probably be rewritten to break out of the
    loop once sample_index >= 0, and then resume (e.g. as a tail-call) to
    the common or linear resampling loops.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libswresample/resample_template.c
  • lavc : add an option to enable side data-only packets during encoding

    29 avril 2014, par Anton Khirnov
    lavc : add an option to enable side data-only packets during encoding
    

    Some encoders (e.g. flac) need to send side data when there is no more
    data to be output. This enables them to output a packet with no data in
    it, only side data.

    • [DH] doc/APIchanges
    • [DH] libavcodec/avcodec.h
    • [DH] libavcodec/options_table.h
    • [DH] libavcodec/version.h
  • flac muxer : support reading updated extradata from side data

    26 mai 2014, par Anton Khirnov
    flac muxer : support reading updated extradata from side data
    
    • [DH] libavformat/flacenc.c
    • [DH] libavformat/flacenc.h
    • [DH] libavformat/flacenc_header.c
    • [DH] libavformat/matroskaenc.c