
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (71)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
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 ;
-
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 (11510)
-
Could not write header for output file #0 - moviepy
22 avril 2021, par U11-ForwardI recently installed
moviepy
and wanted to edit videos with it.

I saw that people recommend using the
moviepy
ffmpeg_tools
for better performance.

So I tried this code :


moviepy.ffmpeg_tools.ffmpeg_extract_audio('before.mp4', 'audio.wav')
moviepy.ffmpeg_tools.ffmpeg_merge_video_audio('after.mp4', 'audio.wav', 'new.mp4')



But it gave this error :


Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument



I saw that it successfully saved the audio into a separate file
audio.wav
, but the problem is that it doesn't merge the video with the audio.

I searched and found some similar questions, like this one, but I can't figure out how to implement this into my code.


-
create animated FFMPEG video
23 octobre 2015, par Ashish TondakHi,
I am having trouble in creating a video with some transition effects on images
using FFMPEG commands.I have used this command to overlay multiple images with a background image and an audio file.
Working Fine :
ffmpeg -loop 1 -framerate 1 -i bg2.jpg -framerate 1/5 -i img%03d.jpg -i audio.mp3 -filter_complex overlay=(W-w)/2 :(H-h)/2:shortest=1,format=yuv420p -c:v libx264 -r 30 -c:a aac -strict experimental -b:a 192k -movflags +faststart -shortest bg_audio_images.mp4
But Now i want to have some effects to be added with this like some animation on images other than moving from left to right.. if i can move upside down or add zoom in effect on each image as they go left to right.
OR you can share me ideas on how people writing complex commands/using filter complex for animations.
Thanks a lot..
S/D Ashish Tondak -
avformat : allow .264 as extension for raw H.264 stream
22 janvier 2015, par Werner Robitzaavformat : allow .264 as extension for raw H.264 stream
In addition to .h264, .264 is also commonly used by people to name raw H.264
streams. Enables automatic recognition of the h264 format for the .264
extension.Signed-off-by : Werner Robitza <werner.robitza@gmail.com>
Signed-off-by : Michael Niedermayer <michaelni@gmx.at>