
Recherche avancée
Autres articles (111)
-
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
Que fait exactement ce script ?
18 janvier 2011, parCe script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
Installation de dépendances de MediaSPIP
Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...) -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (9671)
-
ffmpeg subtitle background
30 janvier 2019, par RatanI am trying to add subtitles to a video in marathi language and to make it user friendly i have added a background to subtitle however there are some black lines coming in the background. Please help me in removing those lines.
ffmpeg -i output_mp4.mp4 -vf "subtitles=transcript_srt.srt: force_style='OutlineColour=&H80000000,BorderStyle=3,Outline=1,Shadow=1'" -c:a copy output_srt.mp4
This is the command i have used.
-
ffmpeg text watermark bottom left
6 mars 2023, par Bálinth IstvánI have found out how ffmpeg can add image watermark at the bottom left of a video



ffmpeg -i "C:\test.mp4" -i "C:\test\watermark.png" -filter_complex "overlay=10:main_h-overlay_h-10" "C:\test-watermark.mp4"




but I am looking for a way to add text (white, 12px text, with black shadow to make the text readable) instead of an image. Can somebody help me ?


-
ffmpeg text watermark bottom left
2 août 2016, par Bálinth IstvánI have found out how ffmpeg can add image watermark at the bottom left of a video
ffmpeg -i "C:\test.mp4" -i "C:\test\watermark.png" -filter_complex "overlay=10:main_h-overlay_h-10" "C:\test-watermark.mp4"
but I am looking for a way to add text (white, 12px text, with black shadow to make the text readable) instead of an image. Can somebody help me ?