
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (52)
-
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 (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (6006)
-
How to set Fontfile From assets folder in ffmpeg (android studio)
26 avril 2016, par Dhanveer thakurI want to set font file in ffmpegn from assets folder in android. Can someone suggest me how can i do that. Following is my drawtext command :-
drawtext=fontsize=60:fontfile=/system/fonts/DroidSans.ttf:fontcolor=green:text=Post:x=150:y=150 -
How can I programatically escape option strings for ffmpeg ?
27 mai 2014, par pixelearthI’m just using ffmpeg for my first serious project. I was happy until I had a string that needed escaping. Now I want to die.
I want to put this string into a blank video that will then (later) be appended to a separate video "Tango Milonga 1 : The Dance’s Music and History"
When I write it like this, it obviously doesn’t work becaues the : and ’ chars need escaping and probably others :
ffmpeg -y -f lavfi -i color=c=black:s=640x362 -t 4 -vf drawtext="fontfile=/Library/Fonts/Arial.ttf: text=Tango Milonga 1: The Dance's Music and History: fontcolor=white: fontsize=24: box=0: x=(w-text_w)/2: y=(h-text_h-line_h)/2","fade=t=out:st=3:d=1" /Users/user/my_life/sites/2007/idance/videos_in_production/intros/2621.mp4
To make matters more complicated, command and the text option in this example will really be dynamically generated from a DB and will be looped over thousands of times. This currently looks like this in my ruby script (another level of escaping) :
`ffmpeg -y -f lavfi -i color=c=black:s=640x362 -t 4 -vf drawtext="fontfile=/Library/Fonts/Arial.ttf: text=#{@lesson.name}: fontcolor=white: fontsize=24: box=0: x=(w-text_w)/2: y=(h-text_h-line_h)/2","fade=t=out:st=3:d=1" #{@dir}/intros/#{@lesson.id}.mp4`
How can I programatically escape the string @lesson.name above so that this command always works ?
-
Adding animated text / subtitles to a video
1er novembre 2023, par gmanILI'd like to write some code that gets an mp4 file and a subtitles json and create some kind of animated subtitles like shown on reels and shorts on every socail network.


For now, I'm using ffmpeg and ASS (SSA) format subtitles to display subtitles with various sizes, colors and fonts but it does not support animation.


I've started looking into remotion or maybe using After Effect templates somehow.
Any idea how this can be done ?