
Recherche avancée
Médias (91)
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (72)
-
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 ;
-
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 -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)
Sur d’autres sites (10327)
-
resize and crop HD video into square video using ffmpeg
7 mai 2021, par Ahmet CetinI want to scale and crop HD video (1920x1080) into square one while adding watermark. I tried


ffmpeg

-i video.mp4

-i watermark.png

-filter_complex "[0]scale=720:720,crop=720:720[a] ;[1]scale=720:720[b] ;[a][b]overlay=(W-w)/2 :(H-h)/2"

output.mp4

but it produces output with 889x500. Can anyone help me ? What I'm doing wrong ?


-
ffmpeg remove multiple segments from a video rotate and crop video
2 novembre 2017, par 1234567ffmpeg remove multiple segments from a video rotate and crop video
I have a video of 2 min 25 seconds , i want to remove part from 10 second to 16 second and 20 second to 26 second and rotate video and crop it
I am trying this command
"-y", "-i", j,
"-filter_complex",
"[0:v]trim=start=10:end=16,setpts=PTS-STARTPTS[a]; " +
"[0:v]trim=start=20:end=26,setpts=PTS-STARTPTS[b]; " +
"[0:a]atrim=start=10:end=16,asetpts=PTS-STARTPTS[c]; " +
"[0:a]atrim=start=20:end=26,asetpts=PTS-STARTPTS[d]; " +
"[a][c][b][d]concat=n=2:v=1:a=1[e][f],"+
"crop=" + 40 + ":" + 20 + ":" + 100 + ":" + 100,"+
"transpose=1", "-map", "'[e]'" ,"-map",
"'[f]'", "-preset", "ultrafast",outwhat is the correct command to do it
-
How to merge webm video with mp4 video with transperency ?
30 novembre 2017, par kostya572I have 1080p webm video and 500x300 mp4 video. How could I place muted mp4 video on top-center position of webm video with transparency ? The output file format needed ".webm". Here what similar code I found, but it uses two mp4 videos and second video scales full width on front of first one :
ffmpeg \
-i in1.mp4 -i in2.mp4 \
-filter_complex " \
[0:v]setpts=PTS-STARTPTS, scale=480x360[top]; \
[1:v]setpts=PTS-STARTPTS, scale=480x360, \
format=yuva420p,colorchannelmixer=aa=0.5[bottom]; \
[top][bottom]overlay=shortest=1" \
-vcodec libx264 out.mp4