
Recherche avancée
Autres articles (112)
-
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
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 ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (5738)
-
avcodec/xbmenc : Pre-compute variables once for parse_str_int()
1er février 2021, par Jose Da Silvaavcodec/xbmenc : Pre-compute variables once for parse_str_int()
Some compilers are very intuitive, and others are not so much, so let's
pre-compute the variables e and keylen outside the for loop. Ensuring a
minor speed increase regardless of if compiler is smart enough to solve
this improvement for itself, or not.Signed-off-by : Joe Da Silva <digital@joescat.com>
-
ffmpeg make : *** No rule to make target 'distclean'. Stop
11 octobre 2016, par DjaveI’m installing ffmpeg using this guide https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu on a Digital Ocean droplet.
I’ve run all the commands down to
$ make distclean
and after I do this I get the error
make: *** No rule to make target 'distclean'. Stop.
How can I get past this step ?
-
How to reduce CPU usage on ffmpeg when recording screen (Mac)
23 septembre 2018, par GabrielleI am trying to record my screen using ffmpeg, but the CPU usage grows A LOT, it gets to 85% of CPU and 20 threads... after 1 hour recording it is impossible to use the computer.
I’ve tried to set
threads=2
to reduce the 20 (I can see the threads on the Activity Monitor) but it didn’t work at all..This is the command I am using :
ffmpeg -threads 2 -f avfoundation -i 1 -capture_cursor 1 -capture_mouse_clicks 1 -video_size 2560x1600 -b:v 2M -maxrate 2M -bufsize 1.5M -tune zerolatency -crf 17 -preset ultrafast -pix_fmt yuv420p -qp 0 -r 20 video.mkv -y -an
I’ve tried to use
.mkv
and.mov
and there is not much of a difference, others shows a very poor quality, I’ve tried to increasecrf
, decreaseb
andmaxrate
.Any idea of how to reduce the CPU usage ? I am already with a terrible video quality (transitions are a mess) and on top of that, I have my computer very slow...
I know that stack already has some answers to it, but (1) none of them solved/helped my issue ; (2) they are a little bit old, so, maybe new versions came with new solutions to it...