Recherche avancée

Médias (91)

Autres articles (53)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-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

Sur d’autres sites (5888)

  • FFMPEG : what is the limit of parameter using for text to video ?

    11 juillet 2017, par Bunker Boy

    i am using ffmpeg for text to video conversion and everything working fine just only can not decide how much fontsize can accepted there and height & width limit for video as well as how many characters can allow ?
    the command i am using

    ffmpeg -f lavfi -i color=c=0x000000:s=1600x1600 -vf
    "drawtext=fontfile=PATHOFFONTS/DejaVuSans.ttf:fontsize=96:fontcolor=0xffffff:y=(h-line_h)/2:x=-(4*n)+W:text=’text
    text text long text long text long text’" -r 24 -t 1140
    PATHTOSAVE/video.mp4

    here text moving from right to left.

    -t 1140 // is the time i have calculated separately

    s=1600x1600 then video mime type got corrupted and video is not working well.

    can anybody let me know what is the minimum and maximum range i can pass for fontsize, height, width and text ?

  • avformat/matroskaenc : Don't use NULL for %s format string

    14 juin 2020, par Andreas Rheinhardt
    avformat/matroskaenc : Don't use NULL for %s format string
    

    The argument pertaining to a printf %s conversion specifier must not
    be NULL, even if the precision (i.e. the number of characters to write)
    is zero. If it is NULL, it is undefined behaviour.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/matroskaenc.c
  • ffmpeg : remove access to private FILE struct members on Windows

    3 août 2015, par Hendrik Leppkes
    ffmpeg : remove access to private FILE struct members on Windows
    

    The FILE struct is opaque in MSVC 2015, and the members of this struct
    were never meant to be accessed in any case.

    No conditions are known where this check was needed to get characters
    from stdin.

    • [DH] ffmpeg.c