
Recherche avancée
Médias (91)
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (77)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (9195)
-
fftools/ffmpeg_demux : Fix leak on error
6 octobre 2023, par Andreas Rheinhardtfftools/ffmpeg_demux : Fix leak on error
An AVFormatContext leaks on errors that happen before it is attached
to its permanent place (an InputFile). Fix this by attaching
it earlier.Given that it is not documented that avformat_close_input() is usable
with an AVFormatContext that has only been allocated with
avformat_alloc_context() and not opened with avformat_open_input(),
one error path before avformat_open_input() had to be treated
specially : It uses avformat_free_context().Reviewed-by : Anton Khirnov <anton@khirnov.net>
Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com> -
matroskadec : validate audio channels and bitdepth
15 juin 2015, par Andreas Cadhalpunmatroskadec : validate audio channels and bitdepth
In the TTA extradata re-construction the values are written with
avio_wl16 and if they don’t fit into uint16_t, this triggers an
av_assert2 in avio_w8.Reviewed-by : Michael Niedermayer <michaelni@gmx.at>
Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> -
Chain encoding MP4 to FLAC on GAE using FFmpeg
24 octobre 2019, par IgniterI’m trying to encode MP4 to FLAC on GAE instance.
I have the functions chain where ffmpeg is synchronously invoked several times.
All those functions work great except this final snippet which dies without errors on GAE.const ffmpegPath = require('@ffmpeg-installer/ffmpeg').path;
const ffmpeg = require('fluent-ffmpeg');
ffmpeg.setFfmpegPath(ffmpegPath);
ffmpeg(`/tmp/${iid}/${file}`) // file.mp4
.outputOptions(['-c:a flac','-sample_fmt s16','-ar 16000','-ac 1'])
.on('end', () => console.log('All went OK!'))
.on('error', console.log)
.save(`/tmp/${iid}/${file.split('.')[0]}.flac`);Looks like I missed something basic in ffmpeg command construction, how can I debug it ?
Or maybe this exact command could be constructed using other fluent-ffmpeg methods ?