Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (59)

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (8611)

  • lavfi : add attribute_align_arg to all public entry points

    26 juillet 2013, par Hendrik Leppkes
    lavfi : add attribute_align_arg to all public entry points
    

    Previously it was partly only added to central functions called
    internally, however if GCC would inline these into the public fuction, the
    alignment attribute would not take effect.

    Instead, add it to all public entry points to avoid these problems.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavfilter/buffersink.c
    • [DH] libavfilter/buffersrc.c
  • udp : Allow specifying multicast include/blocks as host names as well

    26 juillet 2013, par Ed Torbett
    udp : Allow specifying multicast include/blocks as host names as well
    

    Previously this only allowed literal IP addresses. When these
    are conveyed in a SDP file as in RFC4570, host names are allowed
    as well.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/udp.c
  • h264dsp : Factorize code into a new function, h264_find_start_code_candidate

    5 août 2013, par Ben Avison
    h264dsp : Factorize code into a new function, h264_find_start_code_candidate
    

    This performs the start code search which was previously part of
    h264_find_frame_end() - the most CPU intensive part of the function.

    By itself, this results in a performance regression :
    Before After
    Mean StdDev Mean StdDev Change
    Overall time 2925.6 26.2 3068.5 31.7 -4.7%

    but this can more than be made up for by platform-optimised
    implementations of the function.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavcodec/h264_parser.c
    • [DBH] libavcodec/h264dsp.c
    • [DBH] libavcodec/h264dsp.h