
Recherche avancée
Autres articles (68)
-
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 ;
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (9538)
-
How to merge/mix/overlay multiple videos, with time-shifts ? [duplicate]
17 février 2021, par BasjHow to merge/mix/overlay multiple videos, with time-shifts ?


Example : I'd like to take :


- 

- 4 seconds of
1.mp4
and it should start at 0'10" in the output video - 8 seconds of
2.mp4
and it should start at 0'11" in the output video - 16 seconds of
3.mp4
and it should start at 0'12" in the output video








They will be overlaying/overlapping themselves ; example : if
1.mp4
is 400x400,2.mp4
is 200x200, and3.mp4
is 100x100 pixels, then at 0'12" we will see the 3 videos at the same time, overlapping each other.

ffmpeg -t 4 -i 1.mp4
 -t 8 -i 2.mp4
 -t 16 -i 3.mp4
 -filter_complex [0][1][2]overlay[out]
 -map [out]
 out.mp4 -y



I see there is a
overlay
t
parameter, but how to specify a different starting-timestamp for each video ?

It seems we cannot use
-itsoffset
for multiple sources at the same time : https://trac.ffmpeg.org/ticket/1349

- 4 seconds of
-
Creating time lapse video from ffmpeg with jpg images
16 mai 2021, par Rikard SvenningsenI am trying to creating time lapse video.
I have images file named
IM_date_time.jpg
as inIMG_20210516_235523.jpg
(2048 × 1536)
I have around 3700 files.
I have used this command :

ffmpeg -y -i IMG*.jpg -r 5 -s hd1080 output.mp4



This is not working, and I don't understand why it want to write to my images. The
-y
should not be needed.

I what to get a video in hd (full hd or just hd) and one images to represent 1 or 2 frames per sec.


I am using Linux Ubuntu 20.04.02 LTS and ffmpeg 4.2.4.


-
how to play multiple videos at the same time using ffplay ?
13 juillet 2016, par Jong Hyeok ParkI install the ffmpeg source file and I can play one video file using ffplay.
However, I have to play multiple video files at the same time, using ffplay ?
How can I do ?++ what is the method of rewind/fast-forward in ffplay using command line option.
(I can’t find that contents in DOC file.)++ If I can play the multiple video files, I make a script file for play multiple video files automatically.