
Recherche avancée
Autres articles (88)
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
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 (9308)
-
doc/filters : fix typo in extrastereo docs
7 août 2016, par Paul B Mahol -
doc/filters : fix an option name in the unsharp docs
11 juillet 2013, par Anton Khirnov -
Need Help PRO ffmpeg Python input multi video type in folder for overlay logo and output to only mp4 with same or random name please
29 août 2021, par noobherepleasehelpmeI need help please
I'm new to python and ffmpeg.


Now I use this basic command To use ffmpeg add a logo overlay to the video file.


import ffmpeg
main = ffmpeg.input('1.mkv')
logo = ffmpeg.input('logo.png')
(
 ffmpeg
 .filter([main, logo], 'overlay', 10, 10)
 .output('2.mp4')
 .run(overwrite_output=True)
)




It works very well, I found it on here.
But is it possible to have ffmpeg to input all mp4 or mkv files in a folder ?


or command ffmpeg Find all types of video files in the folder. (if possible)


and insert the logo with filter overlay as usual


and output to the original file name or random name


thanks please help me