
Recherche avancée
Autres articles (64)
-
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 ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (12312)
-
ffmpeg how to remove black background overlay image on video [duplicate]
5 mai 2021, par Abhi Panchal'ffmpeg -y -i video.mp4 -i bells_sticker.png -filter_complex "[1:v]rotate='90*PI/180:c=black@0'[rotate] ;[rotate]scale=238:238[b] ;[0][b] overlay=100:50:enable='between(t,0,20)'" -codec:a copy StickerWithVideo.mp4'


I get black background behind the input image


try also this for remove background


c=0x00000000
c=none






i'm say thanks in advance


-
How to load a movie from network share in FFMPEG's filters ? [migrated]
19 juin 2013, par bokanI'm trying to overlay a video on top of another using ffmpeg filters but I have problem with escaping of the file path when it is on a network share.
ffmpeg -i "\\my_nas\path\to\source.mov" -vf "movie='\\my_nas\how\to\properly\escape\this\path.mov'[clip2]; [in] scale=640:360,pad=640:368:0:0:white [resized]; [resized][clip2] overlay=W-128:H-8 [out]" ...other params... -y "\\my_nas\path\to\dest.mp4"
Thanks for your help.
-
best way to take a "screenshot" of a movie and resize it to rectangular ?
30 novembre 2013, par RubytasticWhat would be the best way to take a screenshot with ffmeg ( say the first frame of movie ) and then
make a 200x200 image from it ?Im not sure what method to look for in docs or api to accomplish these tasks.