
Recherche avancée
Médias (91)
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (34)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip 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 2011MediaSPIP 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, parMediaSPIP 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 Leppkesspdifenc : 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. -
avcodec/cuviddec : fix AV1 decoding error
24 juin 2022, par Zhao Zhiliavcodec/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>
-
What's the easiest way to convert ogg to webm on Node without ffmpeg ?
12 mars 2023, par EvertI'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.


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

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

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