
Recherche avancée
Autres articles (70)
-
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 ;
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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 (5454)
-
Anomalie #2954 : chevauchement titre rubrique et logo
8 mars 2013, par chan kalanréponse de Cédric : oui mais malheureusement ce n’est pas si simple. Le float avait evidement été utilisé en première intention, mais je me souviens être passé à cette alternative à cause de bug IEx/Win. Il faudrait remonter dans le temps des commits pour retrouver l’origine du problème et vérifier qu’on (...)
-
Révision 22657 : Optimisation du logo affiché dans le pied des pages publiques
12 décembre 2015, par brunobergot@gmail.comOn passe d’un png32 de 5234 octets à un png8 optimisé par trimage de 2452 octets (thx nfriedli pour le signalement)
-
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