Recherche avancée

Médias (91)

Autres articles (34)

  • 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

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

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

Sur d’autres sites (5259)

  • spdifenc : support ac3 core+eac3 dependent streams

    3 avril 2018, par Hendrik Leppkes
    spdifenc : support ac3 core+eac3 dependent streams
    

    Such streams are found on Blu-ray, and identified as EAC3 type in
    avformat, while the bitstream of the core stream is actually a pure AC3
    frame.

    Adjust the parsing accordingly, since AC3 frames always hold 6 blocks
    and the numblkscod syntax element is not present.

    • [DH] libavformat/spdifenc.c
  • avcodec/cuviddec : fix AV1 decoding error

    24 juin 2022, par Zhao Zhili
    avcodec/cuviddec : fix AV1 decoding error
    

    cuvidParseVideoData only supports pure OBUs, it reports an unknown
    error with AV1CodecConfigurationRecord. Check whether extradata
    is AV1CodecConfigurationRecord and skip the first 4 bytes to fix
    the issue.

    The bug is revealed in ffmpeg cmd since 45e3b6a68 and ffd1316e.

    Signed-off-by : Timo Rothenpieler <timo@rothenpieler.org>

    • [DH] libavcodec/cuviddec.c
  • What's the easiest way to convert ogg to webm on Node without ffmpeg ?

    12 mars 2023, par Evert

    I'm working on a Telegram bot that can receive voice messages and then let OpenAI's Whisper transcribe them and then respond using OpenAI's chat completions API.

    &#xA;

    Anyway, Whisper does accept a webm file as an input, but not an ogg file. Even though ironically, from what I've read, a webm container can contain a pure ogg file as its soundtrack.

    &#xA;

    I can't use ffmpeg, because I'm deploying this as a serverless function (on Vercel for now) and I have no guarantee that ffmpeg will be installed there. But I was thinking, since webm is simply a container file which can contain the raw ogg opus codec as the soundtrack, wouldn't it be possible to just take the binary audio data that I can get from Telegram, using const audioData = await response.arrayBuffer(), and just add some bytes to the beginning and end of it that represent the webm container ?

    &#xA;

    If yes, then can someone please tell me which bytes I'd need to add exactly ?

    &#xA;