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 (7271)

  • avcodec/mlpenc : fix regression in encoding only zeroes

    10 octobre 2023, par Paul B Mahol
    avcodec/mlpenc : fix regression in encoding only zeroes
    

    Previously it would use more bits than neccessary.

    • [DH] libavcodec/mlpenc.c
  • ffprobe : fix XML rendering, review XML layout

    13 octobre 2023, par Stefano Sabatini
    ffprobe : fix XML rendering, review XML layout
    

    Fix rendering of int values within a side data element, which was
    broken since commit d2d3a83ad93, where the side data element was
    correctly marked as a variable fields element. Logic to render a
    string variable was implemented already, but it was not implemented
    for the int fields path, which was enabled by that commit.

    Also, code and schema is changed in order to account for multiple
    variable-fields elements - such as side data, contained within the
    same parent. Previously it was assumed that a single variable-fields
    element was contained within the parent, which was the case for tags,
    but is not the case for side-data.

    Previously data was rendered as :
    <side_data_list>
    <side_data side_data_type="CPB properties" max_bitrate="0" min_bitrate="0" avg_bitrate="0" buffer_size="327680" vbv_delay="-1"/>
    </side_data_list>

    Now as :
    <side_data_list>
    <side_data type="CPB properties">
    <side_datum key="side_data_type" value="CPB properties"/>
    <side_datum key="max_bitrate" value="0"/>
    <side_datum key="min_bitrate" value="0"/>
    <side_datum key="avg_bitrate" value="0"/>
    <side_datum key="buffer_size" value="49152"/>
    <side_datum key="vbv_delay" value="-1"/>
    </side_data>
    </side_data_list>

    Variable-fields elements are rendered as a containing element wrapping
    generic key/values elements, enabling use of strict XML schema.

    Fix trac issue :
    https://trac.ffmpeg.org/ticket/10613

    • [DH] Changelog
    • [DH] doc/ffprobe.xsd
    • [DH] fftools/ffprobe.c
    • [DH] tests/ref/fate/ffprobe_xml
    • [DH] tests/ref/fate/ffprobe_xsd
    • [DH] tests/ref/fate/flv-demux
    • [DH] tests/ref/fate/gapless-mp3-side-data
    • [DH] tests/ref/fate/mov-aac-2048-priming
    • [DH] tests/ref/fate/mov-zombie
    • [DH] tests/ref/fate/oggopus-demux
    • [DH] tests/ref/fate/ts-demux
    • [DH] tests/ref/fate/ts-opus-demux
    • [DH] tests/ref/fate/ts-small-demux
    • [DH] tests/ref/fate/ts-timed-id3-demux
  • fftools/ffmpeg_demux : add demuxing thread private data

    5 janvier 2024, par Anton Khirnov
    fftools/ffmpeg_demux : add demuxing thread private data
    

    To be used for data that never needs to be visible outside of the
    demuxer thread, similarly as was previously done for other components.

    • [DH] fftools/ffmpeg_demux.c