
Recherche avancée
Autres articles (100)
-
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 (...) -
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 (13189)
-
Anomalie #4086 (Nouveau) : Exception pour le proxy
2 février 2018, par - EquipementBonjour. Quand j’ajoute une exception pour le proxy (dans le menu [Configuration] / [Fonctions avancées]), j’ai constaté que certaines exceptions fonctionnent et que d’autres ne fonctionnent pas. Je précise que je renseigne une seule exception à la fois.
Dans inc/distant.php, la fonction need_proxy effectue en particulier les tests suivants :
and (strpos(" $http_noproxy ", " $host ") === false and (strpos(" $http_noproxy ", " $domain ") === false)))
D’après php.net/manual/fr/function.strpos.php, la fonction strpos ( string $haystack , mixed $needle [, int $offset = 0 ] ) cherche la position numérique de la première occurrence de needle dans la chaîne de caractères haystack.
Aussi, la fonction need_proxy semble chercher la position du host dans la chaîne http_noproxy (puis chercher la position du domaine dans la chaîne http_noproxy).
En remplaçant le code précité, par le code ci-dessous, cela fonctionne à chaque exception testée :
and (strpos($host, $http_noproxy) === false and (strpos($domain, $http_noproxy) === false)))
Cordialement,
Equipement -
Is it possible to vertically rotate a showwaves (or showfreqs) overlay using ffmpeg ?
5 février 2019, par IntrospectreI wish to take a
showwaves
(orshowfreqs
) overlay and center it vertically using ffmpeg, e.g.ffmpeg -i input.mp3 -filter_complex "[0:a]showspectrum=color=fiery:saturation=2:slide=scroll:scale=log:win_func=gauss:overlap=1:s=960x1080,pad=1920:1080[vs]; [0:a]showspectrum=color=fiery:saturation=2:slide=rscroll:scale=log:win_func=gauss:overlap=1:s=960x1080[ss]; [0:a]showwaves=s=1920x540:colors=B80000|950000|690000:mode=p2p,inflate[sw]; [vs][ss]overlay=w[out]; [out][sw]overlay=0:(H-h)/2[out]" -map "[out]" -map 0:a -c:v libx264 -preset fast -crf 18 -c:a copy output.mkv
As shown above, the
showwaves
output is centered horizontally. But would it also be possible to have it centered vertically ? Specifically, using a single-filter_complex
command argument ?I’ve looked through the ffmpeg manual and searched stackoverflow for an answer, but to no avail.
-
doc/resampler : add exact_rational option
13 juin 2016, par Muhammad Faiz