
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (52)
-
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 ) (...) -
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
Sur d’autres sites (8273)
-
Merging four videos with different resolution in a Grid with ffmpeg
5 juillet 2015, par TaufiqI want to marge four videos in to one as show below. I have achieve the correct output given all the videos have the same resolution. But I get an undesirable result with different resolution. See below for more details.
i need ffmpeg code to get to merge 4 videos of different resolution in a grid format
ffmpeg.exe -i "1.avi" -vf "[in] scale=iw:ih, pad=2*iw:ih [left];movie=2.avi, scale=iw:ih [right]; [left][right] overlay=main_w/2:0 [out]" -b:v 768k "Output1.mp4"
ffmpeg.exe -i "3.avi" -vf "[in] scale=iw:ih, pad=2*iw:ih [left];movie=4.avi, scale=iw:ih [right]; [left][right] overlay=main_w/2:0 [out]" -b:v 768k "Output2.mp4"
ffmpeg.exe -i "Output1.mp4" -vf "pad=iw:2*ih [top]; movie=Output2.mp4 [bottom]; [top][bottom] overlay=0:main_h/2" "Output_Stacked.mp4"Code above gives the follow output.
But the problem arises when I rotate one of the videos and merge them.
.
Please tell me what I need to change to get the desired result. Thanks
-
How to downsample all '.MTS' videos in a folder via using FFmpeg/or python ?
24 mai 2020, par kkkrr000I have a list of videos('.MTS') formatt.How can I downsample it (keeping the aspect ratio same).I want to downsample all of them to a particular size.



f"ffmpeg -i {vname} -filter:v scale={width}:{height} -c:




I came across this piece of code. Should I do this via terminal or via a python interpreter ?
Can has experience with this ?


-
How to extract video from multiple videos with ffmpeg ?
6 janvier 2021, par Abbas PerçinI want to extract video from multiple videos with ffmpeg. Normally, I could extract the video file from one large video file with the following command.


ffmpeg -ss 648 -t 29 -i /MatrixMovie.ts -f mpegts -pix_fmt yuv422p -c:v libx264 -preset ultrafast -map 0 snapshot.ts



But now I have 10 minutes of parts of this video file (MatrixMovie_part1.ts, MatrixMovie_part2.ts etc) instead of one large file. And the video that I want to extract starts on one of these parts and ends on the other.


My question is How to extract video from multiple videos with ffmpeg ?


I've been dealing with ffmpeq for days but couldn't manage it. I would appreciate it if you could help. Thank you.