
Recherche avancée
Médias (1)
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
Autres articles (50)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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 (...) -
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.
Sur d’autres sites (8718)
-
how to trim and merge videos with single commend [duplicate]
18 mars 2020, par eomerIs it possible to trim a video and merge with another video at the same time ?



I am learning ffmpeg and I know that I can merge videos and trim videos



I could use output for trimmed video and merge with another but is it possible to do at one step ?


-
FFmpeg - Create Thumbnail Grid from Videos [duplicate]
28 février 2021, par John DoeIs it possible to create a grid of 9 videos to form one big video, then snapshot the first frame to create a thumbnail showing the first frames of all 9 videos ? I wish to take the first 9 videos from a contact.txt file


I started by trying with 4 videos but it still doesnt work :


ffmpeg -y -ss 00:00:01 -protocol_whitelist file,pipe -f concat -safe 0 -i "concat.txt" -filter_complex "[0:v][1:v]hstack=inputs=2[top];[2:v][3:v]hstack=inputs=2[bottom];[top][bottom]vstack=inputs=2[v]" -map "[v]" -s 1280x720 "thumb.jpg"



Trying to get this layout :



MUST use files from concat list in text file


-
Overlaying multiple videos with ffmpeg [closed]
21 juin 2015, par xZiseI’m trying to overlay multiple videos into one video with ffmpeg. There is already a question with only one overlay, but I want to add multiple videos at the same time (to avoid multiple encodings).
I try to use following line :
ffmpeg -i background.m2v -vf "movie=a.m2v [a]; movie=b.m2v [b]; [in][a] overlay=0:366, [b] overlay=592:41" combined.m2v
The error is now, that the overlay area (0,366) – (720,942) is not within the main area (0,0) – (720, 210). But if I use only one overlay file alone it works.
The sizes of the videos :
- background : 720x576
- a.m2v : 72x48
- b.m2v : 720x210
In the result I want the a.m2v video in the top left corner (the logo) and the b.m2v as a lower third.