
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (107)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)
Sur d’autres sites (9940)
-
is it possible to merge 2 videos to a single video using FFMPEG in flutter
22 juillet 2020, par I'm Sunil3I am developing an application in flutter, user add two videos and I want to merge them into a single video and give the output containing two video side by side, the given videos will have different height and different width.


Currently am using a FFmpeg command
'-i $filePath -i $widget.videopath -filter_complex hstack $combinedvideopath'
to merge two video files.
it prompting me a error,


input 1 height 512 does not match input 0 height 1280.


-
ffmpeg crossfade between 2 videos
8 novembre 2016, par valii2334I have multiple videos and I want to concatenate them with the crossfade effect between. This is an example with 2 720p videos but the command resize the output at 960x720.
command = "ffmpeg -i 7.mp4 -i 8.mp4 -f lavfi -i color=black -filter_complex \"[0:v]format=pix_fmts=yuva420p,fade=t=out:st=6:d=1:alpha=1,setpts=PTS-STARTPTS[va0];[1:v]format=pix_fmts=yuva420p,fade=t=in:st=0:d=1:alpha=1,setpts=PTS-STARTPTS+6/TB[va1];[2:v]scale=1280x720,trim=duration=11[over];[over][va0]overlay[over1];[over1][va1]overlay=format=yuv420[outv]\" -map [outv] out.mp4"
system command -
How can I concatenate different videos while maintaining the original display and aspect ratio ?
11 décembre 2019, par LaurenIs it possible to concatenate different videos with different aspect ratio into a single video ? And also in the end the final video would maintain the original aspect ratio of each part.
I’ve tried the following FFmpeg command :
ffmpeg -i 1.mp4 -i 2.mp4 -y -filter_complex "[0:v:0] [0:a:0] [1:v:0] [1:a:0] concat=unsafe=1:n=2:v=1:a=1 [v] [a]" -map "[v]" -map "[a]" out.mp4
I’m using unsafe=1 which almost works.
The only issue is that some videos stretch.
So, how can I concatenate different videos while maintaining the original display and aspect ratio ?