
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (55)
-
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 (5281)
-
: and - characters not showing when applying drawtext
6 mars 2019, par SPYBUG96I am trying to get the characters ’-’ and ’ :’ to show up when I draw text on an image so I can have the date and time show up properly formatted. When I run the python code and all that to set up the text it is exactly how I want it, I printed it to the screen. When the command is run though, the date and time don’t show, at least when I try drawing this :
2018-12-12 T03:20:40
What shows up on the image is12 T
This is an example of the ’ :’ and ’-’ characters having a problem
ffmpeg -y -i TifImageLoc -vf vflip,drawtext=fontfile=C:WINDOWS\Fonts\sserife.fon:fontsize=200:fontcolor=white:x=(w-text_w)/2:y=(h-texth-texth)/2:text="Hello\-\ \:World" -frranes:v 1 output1.tif
When this is run I want the result of
Hello- :World
to be drawn on the image, but the actual result isHello
perfectly centered on the pictureHow do you draw the ’-’ and ’ :’ to an image using FFmpeg so that a date in this
2018-12-12 T03:20:40
format can be on the image ? -
Showfreqs and showwaves over background image ?
11 octobre 2017, par JeremyI’m wanting to get FFMPEG to export my podcast audio to a file I can upload to youtube that is visually interesting.
currently I am using the following piece of code, which I don’t fully grasp :
ffmpeg -i E04_ProphetsPrey.wav -filter_complex \
" [0:a]showfreqs=mode=line:ascale=log:fscale=rlog:s=1280x518,pad=1280:720[vs]; \
[0:a]showfreqs=mode=line:ascale=log:fscale=rlog:s=1x1[ss]; \
[0:a]showwaves=s=1280x202:mode=p2p[sw]; \
[vs][ss]overlay=w[bg]; \
[bg][sw]overlay=0:H-h,drawtext=fontfile=/usr/share/fonts/TTF/Vera.ttf:fontcolor=white:x=10:y=10:text='\"Rated80s Prophets Prey\" by Comics On Film'[out]" \
-map "[out]" -map 0:a -c:v libx264 -preset fast -crf 18 -c:a copy -threads 0 output.mkvwhat I would like to do is set a (branded) background image, and have showfreqs render over it on the top half and showwaves render over it on the bottom half.
Is that possible, and if so could you provide me a detailed example ?
(I’m on arch linux)
-
ffmpeg draw text filter - Invalid argument when sending url as a text
2 novembre 2017, par emanaltalI’m trying to write a ffmpeg command to live stream a .ts file & write the same url as text overlay through python subprocess
subprocess.call(’ffmpeg -i %s -vframes 1 -q:v 1 -vf "scale=720:480" -vf drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf : text=%s : x=500 :y=500" %s.jpg -hide_banner’%(url,url,filename),shell = True)
URL example : http://orbitiptv.com:2500/live/99068566091761/99068566091761/6587.ts
I get an error
Error reinitializing filters !
Failed to inject frame into filter network : Invalid argumentThe issue is related to url having special characters, when i run it directly in cmd i can skip : with \
but how to implement that with python ?