
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 (98)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 ;
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.
Sur d’autres sites (13917)
-
How to join two videos with cross fade transition using FFMpeg
20 juillet 2020, par Rohit BahekarI have tried this command but it is not generating expected result


finalDuration = video1Duration + video2Duration - transitionDuration

ffmpeg -i video1.mp4 -i video2.mp4 -filter_complex "color=black:1080x720:d={finalDuration}[base]; [0:v]setpts=PTS-STARTPTS[v0]; [1:v]format=yuva420p,fade=in:st=0:d={transitionDuration}:alpha=1, setpts=PTS-STARTPTS+((1)/TB)[v1]; [base][v0]overlay[tmp]; [tmp][v1]overlay,format=yuva420p[fv]; [0:a][1:a]acrossfade=d={transitionDuration}[fa]" -map "[fv]" -map "[fa]" output.mp4



Note : variable are shown inside
{}
. We need to replace the variables with actual values.

-
tools/uncoded_frame : fix double free
12 février 2014, par Lukasz Marektools/uncoded_frame : fix double free
in case av_interleaved_write_uncoded_frame fails it seems
frame is freed for the second time in fail section.Signed-off-by : Lukasz Marek <lukasz.m.luki@gmail.com>
Reviewed-by : Nicolas George <george@nsup.org>This commit also removes 1 trailing whitespace as otherwise the push hook rejects it
Signed-off-by : Michael Niedermayer <michaelni@gmx.at>
-
How to Concatenate Multiple Videos Using Cross fade in between and fade out at the end (FFMPEG)
27 novembre 2020, par RobertIs there a way to concatenate file1.mp4 add xfade file2.mp4 add fade out ?
The first file usually has 30 seconds while the second is 10 seconds long.



Also, is it possible to make the above merging work with multiple inputs/outputs ?
I know there's a way using the input using List.txt, but it would need some more clarification to get the above concatenation and fades work with the file paths instead of each file for input.



FileA.mp4+FileA2.mp4 = FileA.mp4
FileB.mp4+FileB2.mp4 = FileB.mp4