
Recherche avancée
Médias (1)
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (93)
-
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 ) (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (15278)
-
Is it possible to add an outline/border/edge to a person in a chroma-key video ? [closed]
19 juillet, par Mouaad Abdelghafour AITALII hope you're doing well. Is it possible to use FFmpeg to add an outline to a chroma-keyed video, like in the images below ? My goal is to blend a background video with a foreground video, where the foreground has a white outline.






Here’s my current code that blends the background and foreground videos by removing the chroma key and replacing it with the background. I want to keep this functionality but add a white outline effect around the foreground video.


Thank you so much in advance for your help.


public static String overlayVideo(String backgroundCroppedPath,
 String foregroundVideoPath,
 String overlayedVideoPath,
 double fgDurationSec,
 OutputAudioSource audioSource) {

 // Format duration to 2 decimal places
 String duration = String.format(Locale.US, "%.2f", fgDurationSec);

 String bgInput = "-stream_loop -1 -i \"" + backgroundCroppedPath + "\"";
 String fgInput = "-i \"" + foregroundVideoPath + "\"";

 String filterComplex =
 "[0:v]trim=duration=" + duration + ",setpts=PTS-STARTPTS[bg];" +
 "[1:v]colorkey=0x01fe01:0.3:0.2,setpts=PTS-STARTPTS[fg];" +
 "[bg][fg]overlay=format=auto[outv]";

 String audioMap = (audioSource == OutputAudioSource.FOREGROUND)
 ? "-map [outv] -map 1:a?"
 : "-map [outv] -map 0:a?";


 return "-y " + bgInput + " " + fgInput +
 " -filter_complex \"" + filterComplex + "\" " +
 audioMap + " " +
 "-t " + duration + " " +
 "-c:v libx264 -crf 18 -preset ultrafast -pix_fmt yuv420p " +
 "\"" + overlayedVideoPath + "\"";}



-
Creating complicated ffmpeg videos (like those Facebook friendship videos) [on hold]
26 avril 2018, par onassarI’m trying to understand the technology used to create videos like these :
https://www.youtube.com/watch?v=b3PBN3zC4M0How are these kinds of things put together (eg what technologies) ? Want to learn more about this, and am assuming it’s related to ffmpeg, but I’m a bit of my depth.
Appreciate anything, including even just a list of the possible different technologies used to create something like that.
-
[FFMPEG]Add 20 black frames at beginning of video (seeking)
6 mai 2022, par Halano Siblee.MOV VFX video animation start at 00:00:00
I need ffmpeg Command for adding

20 black frame at start so video start at 00:00:20

ffmpeg -i input.mov -ss 20 -vcodec copy -acodec copy output.mov



this code above trim first 25 frame i need to add 25 black frames ?