
Recherche avancée
Autres articles (54)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community. -
Le plugin : Gestion de la mutualisation
2 mars 2010, parLe plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
Installation basique
On installe les fichiers de SPIP sur le serveur.
On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
< ?php (...)
Sur d’autres sites (3940)
-
x264 : Map color parameters
13 avril 2015, par Luca Barbato -
avfilter/af_anlmdn : log used parameters
11 janvier 2019, par Paul B Mahol -
How to use input parameters in filter_() in ffmpeg-python ?
17 avril 2018, par LinkyuI am using the ffmpeg-python wrapper.
I want to use the crop filter to extract a cropped section of the video file ; I want the section’s size to be half the dimensions of the input.
According to ffmpeg’s documentation, I can use the input parameters
in_w
andin_h
like so :crop=1/2*in_w:1/2*in_h
(or
crop=w=1/2*in_w:h=1/2*in_h
with named parameters)However, I struggle to find how to use them in ffmpeg-python. I figured I could pass them as standard arguments like so :
filter_('crop', '1/2*in_w:1/2*in_h')
but I seem to misunderstand how direct arguments work here because this does not work.Obviously, I can’t use keyword arguments either like so :
filter_('crop', w=1/2*in_w, h=1/2*in_h)
because they’re interpreted as undefined names.