Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (13)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

Sur d’autres sites (6297)

  • 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
  • AVFrame : factor out freeing the side data

    18 juin 2014, par Roman Savchenko
    AVFrame : factor out freeing the side data
    

    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DBH] libavutil/frame.c
  • AVFrame : factor out freeing the side data

    18 juin 2014, par Roman Savchenko
    AVFrame : factor out freeing the side data
    

    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DH] libavutil/frame.c