
Recherche avancée
Autres articles (75)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...)
Sur d’autres sites (12773)
-
ffmpeg : chain of multiple filter_complex, re-using intermediate output stream
17 décembre 2015, par jlarschHow can I apply two filter_complex commands sequentially ?
first, I want to blend a video with an image
then I want to take the output of that filter and split it into 4 tiles, as described in this post Stackoverflow.I have tried this :
(my strategy was to generate an intermediate output from filter_complex [int] and I wanted to re-use that output twice.ffmpeg.exe
-i videoIn.avi
-i imageIn.avi
-filter_complex "[1:0] setsar=sar=1 [1sared];[0:0][1sared]blend=all_mode='divide':repeatlast=1[int];
[int]crop=960:960:24:1055:[out1];
[int]crop=960:960:1056:1062:[out2]"
-map [out1] out1.avi
-map [out2] out2.avihowever, I am getting an error :
Stream specifier ’int’ in filtergraph description [int]crop=960:960:24:1055[out1] ;[int]crop=960:960:1056:1062 :[out2] matches no streamsthis code works if I only use one crop operation but not with two - so I am guessing the intermediate stream [int] cannot be re-used the way I am trying to do it ?
how can I re-use the intermediate stream multiple times for subsequent filters ?
-
avcodec/iff : finetune the palette size check in the mask case
22 juin 2019, par Michael Niedermayeravcodec/iff : finetune the palette size check in the mask case
Fixes : out of array access
Fixes : 15381/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_IFF_ILBM_fuzzer-5668057826983936Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Reviewed-by : Peter Ross <pross@xvid.org>
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
avcodec/scpr : mask bits to prevent out of array read
16 mai 2017, par Michael Niedermayeravcodec/scpr : mask bits to prevent out of array read
Fixes : 1615/clusterfuzz-testcase-minimized-6625214647500800
Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Reviewed-by : Paul B Mahol <onemda@gmail.com>
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>