
Recherche avancée
Autres articles (94)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (8550)
-
FFmpeg : how to put icon + text and border behind (see attached)
26 juillet 2022, par Erez gitI've icon.png and "8D Cover Use Headphones" text. How can I generate this icon+text with the rounded box behind ?
I've tried :


ffmpeg -i C:\Users\Erez\Desktop\output_wm_titles_pic.mp4 -vf "drawtext=fontfile='C\:\\Users\\Erez\\Desktop\\opensans_regular.ttf':text='8D Cover Use Headphones':fontcolor=white:fontsize=20:box=1:boxcolor=black@0.5:boxborderw=5:x=(w-text_w)/2:y=579" -codec:a copy -y C:\Users\Erez\Desktop\output_final.mp4



but when I add the image, it fails as :


-vf/-af/-filter and -filter_complex cannot be used together for the same stream.





-
mem : fix pointer pointer aliasing violations
26 janvier 2015, par Rémi Denis-Courmontmem : fix pointer pointer aliasing violations
This uses explicit memory copying to read and write pointer to pointers
of arbitrary object types. This works provided that the architecture
uses the same representation for all pointer types (the previous code
made that assumption already anyway).Signed-off-by : Luca Barbato <lu_zero@gentoo.org>
-
avformat/flv : correct the video frametype mask to 0x70
26 juillet 2023, par Steven Liuavformat/flv : correct the video frametype mask to 0x70
because the flv specification said the video frametype
should use value range from 0x00 to 0x70,
so use 0xF0 have no problem before support enhanced flv,
but the 0xF0 will get incorrect result after support enhanced flv,
so should set the video frametype mask 0x70 to make it correct now.Reported-By : flvAnalyser <hybase@qq.com>
Signed-off-by : Steven Liu <lq@chinaffmpeg.org>