Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (97)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains 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, par

    Par 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, par

    Dans 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 Ajjanagadde
    avfilter/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>

    • [DH] libavfilter/vf_deshake.c
  • ffmpeg change resolution by condition

    22 décembre 2013, par Alexey Lisikhin

    I 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 Tom

    I want to change my video resolution with ffmpeg :

    &#xA;&#xA;

    -s 852&#xD7;480&#xA;

    &#xA;&#xA;

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

    &#xA;&#xA;

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

    &#xA;&#xA;

    if video.width > 852:&#xA;   resize width and proportionally resize height&#xA;&#xA;if video.height > 480:&#xA;   resize height and proportionally resize width&#xA;&#xA;if video.width > 852 and video.height > 480:&#xA;   resize height width&#xA;

    &#xA;