
Recherche avancée
Médias (91)
-
Spoon - Revenge !
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
My Morning Jacket - One Big Holiday
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Zap Mama - Wadidyusay ?
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
David Byrne - My Fair Lady
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Beastie Boys - Now Get Busy
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (71)
-
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 ;
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (11066)
-
Create a video from images where the video size is not much larger than the sum of all images
25 mars 2024, par Stefan FalkWhat I am describing is basically a slideshow.


I was hoping to be able to create a video which consistis of, for example, three different frames 1, 2 and 3 but each of them gets shown for an hour.


Let's say we have a file
inputs.txt


file 'img1.jpg'
duration 3600
file 'img2.jpg'
duration 3600
file 'img3.jpg'
duration 3600



I would like to concatenate these images like so :


ffmpeg -f concat -i inputs.txt output.mp4 -y



However, this is already giving me the warning of




More than 1000 frames duplicated




I have seen some parameters in the documentation like
decimate
ormpdecimate
but they do not seem to do the trick here.

Is it even possible to do what I am trying here ?


It seems like a "no-brainer" to just show a particular image after a certain amount of time but I am not sure how to achieve that.


By the way, I also tried to use MKV here, but this results in a video with just three frames instead of a three hours video :


ffmpeg -f concat -i inputs.txt output.mkv -y



-
ffmpeg not detecting corrupt video file
16 février 2018, par Nitishkumar SinghI have a video file with duration 2:06:43. The video can be played for 2 hours on vlc player, but as it reaches to 2:03:00 vlc player just skips to the end of duration. I assume reason for this behavior is corrupt video file.
I am trying to detect error in video file using ffmpeg using below command
ffmpeg -v error -sseof -60 -i source.mp4 -f null - 2>error.log
but no error log is generated for video file. is there any way I can detect these errors.
EDIT
tried running with warning and it produced below outputffmpeg -v warning -sseof -60 -i source.mp4 -f null - 2>error.log
Finishing stream 0:0 without any data written to it. Finishing stream
0:1 without any data written to it. Output file is empty, nothing was
encoded (check -ss / -t / -frames parameters if used) -
What is the most efficient way of stacking two videos using ffmpeg ?
4 octobre 2024, par technical_difficultyI want to stack two videos of a talk together vertically using ffmpeg. One shows the presentation (slides) and one shows the speaker. Since I want to do this for several talks, I'd like to do this in a more general way and as efficiently as possible. Most of the time the videos have different resolutions and aspect ratios.


My current workflow is :


- 

-
Scale the video with the lower resolution up to match the resolution of the other video :

ffmpeg -i video1.mp4 -s 1920x1080 -c:a copy video1_upscaled.mp4


-
Stack the two videos :

ffmpeg -i video1_scaled.mp4 -i video2.mp4 -filter_complex vstack=inputs=2 combined.mp4








The videos are between one and two hours long and the commands do take a while to complete. Is there any way of saving some time ?


Would it be faster to put black bars/borders around the smaller video instead of scaling it to the size of the other one ? Can the stacking be done in a more efficient way ? Would it help a lot if those two steps were combined into one ?


Some information that might be relevant :


- 

- it's always exactly two videos to stack vertically, one above the other
- the quality of the video is not incredibly important, both having the resolution of the video with the lower resolution would be perfectly fine
- disk space is not an issue
- the resolution and aspect ratio of the videos are known (use any for your example)
- both videos have the same audio
- both videos have the exact same length














-