
Recherche avancée
Autres articles (106)
-
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. -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)
Sur d’autres sites (8459)
-
Why is only one of multiple overlayed videos playing in FFmpeg ? [closed]
27 mai 2023, par Sixtus AnyanwuOnly one out of multiple overlayed videos is playing FFmpeg


I am trying to overlay 2 playable videos on top of another video in ffmpeg.


ffmpeg -hide_banner -i finalagain.mp4 -i Tatsumaki0trim.mp4 -i Tatsumaki1trim.mp4 -filter_complex "[0][1]overlay=x=(W-w)/2:y=(H-h)/2:enable='between(t,4,8)'[v1]; [v1][2]overlay=x=(W-w)/2:y=(H-h)/2:enable='between(t,0,4)'[v2]" -map "[v2]" -map 0:a -preset ultrafast trial.mp4


But the 1st video gets played while the second remain static.
Here is the video on YouTube.
https://m.youtube.com/watch?v=XStgNnjTaLE&feature=youtu.be


-
Videos processed with ffmpeg are not 1080p as specified by flags
2 septembre 2012, par ensnareI'm converting videos in Python using ffmpeg + libx264.
I've noticed that when I use the below code, the output width and height are not consistent. All input files are 1080p, but the output files are sometimes 1080p, and other times twice the size or somewhere inbetween.
This is the 2-pass code I am using to generate my videos.
#Generate 1080p Movie
if not os.path.exists(destination_filename_1080):
pass_num = 1
while pass_num <= 2:
p = subprocess.Popen(['ffmpeg','-i', str(filename),
'-acodec' , 'aac' ,
'-ab' , '192k' ,
'-ac' , '2' ,
'-vcodec' , 'libx264' ,
'-strict' , '-2' ,
'-vpre' , 'ipod640' ,
'-threads' , '8' ,
'-s' , '1920x1080' ,
'-b:v' , '10M' ,
'-pass' , str(pass_num) ,
'-passlogfile' , random_1080 ,
'-y' ,
destination_filename_1080_temp])
p.wait()
pass_num = pass_num + 1It's my understanding that the "-s 1920x1080" flag should force the output to be 1080p, no ? I'm not sure how the output size can be greater than 1080p when the input is only 1080p.
Thanks in advance.
-
ffmpeg : concatenate videos of different frame rates ? [duplicate]
6 avril 2019, par WellsThis question already has an answer here :
I store some N number of videos in a text file
list.txt
like so :file /tmp/eef3e563eb32.mp4
file /tmp/video_152.mp4
file /tmp/video_153.mp4
file /tmp/video_154.mp4
file /tmp/video_155.mp4The
video_
files are 30fps, the others are 60fps. When I try to concatenate them doing :/usr/local/bin/ffmpeg \
-loglevel panic \
-y \
-f concat \
-safe 0 \
-an \
-i /tmp/list.txt \
"out.mp4"The
out.mp4
plays the 60ps one (first) fine, then the 30fps ones are all 2x speed.How can I resolve this ? Can I add options in
list.txt
or do I need a more complex solution withffmpeg
?