
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (97)
-
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 ;
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)
Sur d’autres sites (16704)
-
avfilter/vf_deshake : use a void * comparator for consistency
24 octobre 2015, par Ganesh Ajjanagaddeavfilter/vf_deshake : use a void * comparator for consistency
For generality, qsort uses a comparator whose elements are void *. This
makes the comparator have such a form, and thus makes the void * cast of
the comparator pointer useless. Furthermore, this makes the code more
consistent with other usages of qsort across the codebase.Reviewed-by : Henrik Gramner <henrik@gramner.com>
Reviewed-by : wm4 <nfxjfg@googlemail.com>
Signed-off-by : Ganesh Ajjanagadde <gajjanagadde@gmail.com> -
ffmpeg change resolution by condition
22 décembre 2013, par Alexey LisikhinI want to change my video resolution with ffmpeg :
-s 852×480
How can I do it only when video width or height greater than 852×480 ?
I want something like this with ffmpeg, not with my programming language :
if video.width > 852:
resize width and proportionally resize height
if video.height > 480:
resize height and proportionally resize width
if video.width > 852 and video.height > 480:
resize height width -
ffmpeg change resolution by condition
29 août 2020, par TomI want to change my video resolution with ffmpeg :



-s 852×480




How can I do it only when video width or height greater than 852×480 ?



I want something like this with ffmpeg, not with my programming language :



if video.width > 852:
 resize width and proportionally resize height

if video.height > 480:
 resize height and proportionally resize width

if video.width > 852 and video.height > 480:
 resize height width