
Recherche avancée
Autres articles (53)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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 ;
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (6561)
-
Revision 3267 : Un logo sur la page de recherche Un extra/ aussi pour toutes les page=
18 avril 2010, par kent1 — LogUn logo sur la page de recherche
Un extra/ aussi pour toutes les page= -
Revision 3267 : Un logo sur la page de recherche Un extra/ aussi pour toutes les page=
18 avril 2010, par kent1 — LogUn logo sur la page de recherche Un extra/ aussi pour toutes les page=
-
Python FFmpeg : Getting this error while trying to add a logo to video (Unable to find a suitable output format for ..)
14 mai 2021, par prehistoricbeastHey guys I want to add a logo to my video with python subprocess and ffmpeg but I am getting this error while running the below command. What is the reason ? Please do help.


Unable to find a suitable output format for 'overlay=x=main_w-overlay_w-(main_w*0.01):y=main_h-overlay_h-(main_h*0.01)' overlay=x=main_w-overlay_w-(main_w*0.01):y=main_h-overlay_h-(main_h*0.01): Invalid argument.


subprocess.call([settings.VIDEO_ENCODING_FFMPEG_PATH, '-i', input_file_path,
 '-i', logo_path, '-filter_complex','scale=1920:1080',
 'overlay=x=main_w-overlay_w-(main_w*0.01):y=main_h-overlay_h-(main_h*0.01)',
 '-codec:v', 'libx264','-crf', '18',
 '-preset', 'slow', '-b:v', '1000k', '-maxrate', '2000k', '-bufsize', '2000k',
 "-pix_fmt", "yuv420p",
 '-codec:a', 'aac', '-b:a', '128k', '-strict', '-2', output_file_path])



Thanks