Recherche avancée

Médias (91)

Autres articles (67)

  • 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 ;

  • Ecrire une actualité

    21 juin 2013, par

    Pré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 ) (...)

  • 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 (9169)

  • vaapi_h264 : Scale log2_max_pic_order_cnt_lsb with max_b_frames

    5 janvier 2017, par Mark Thompson
    vaapi_h264 : Scale log2_max_pic_order_cnt_lsb with max_b_frames
    

    Before this change, it was possible to overflow pic_order_cnt_lsb and
    generate a stream with invalid POC numbering. This makes sure that
    the field is large enough that a single IDR B* P sequence uses fewer
    than half the available POC lsb values.

    (cherry picked from commit 89725a8512721fffd190021ded2d3f5b42e20e2a)

    • [DH] libavcodec/vaapi_encode_h264.c
  • avfilter/scale : refactor common code for scaling height/width expressions

    2 février 2017, par Aman Gupta
    avfilter/scale : refactor common code for scaling height/width expressions
    

    Implements support for height/width expressions in vf_scale_vaapi,
    by refactoring common code into a new libavfilter/scale.c

    Signed-off-by : Mark Thompson <sw@jkqxz.net>

    • [DH] libavfilter/Makefile
    • [DH] libavfilter/scale.c
    • [DH] libavfilter/scale.h
    • [DH] libavfilter/vf_scale.c
    • [DH] libavfilter/vf_scale_npp.c
    • [DH] libavfilter/vf_scale_vaapi.c
  • how to add watermark in multiple areas using ffmpeg and scale watermarks in relation to main video ?

    1er août 2022, par Agdg

    I am currently using these command :

    &#xA;

    $command = &lt;&lt;usr/local/bin/ffmpeg -i $source -stream_loop -1 -i $gifPath \&#xA;            -i $gifPath -i $gifPath -i $gifPath \&#xA;            -filter_complex " \&#xA;            [0][1]overlay=x=W-w:y=0:shortest=1[tr]; \&#xA;            [tr][2]overlay=x=0:y=0:shortest=1[tl]; \&#xA;            [tl][3]overlay=x=W-w:y=H-h:shortest=1[br];&#xA;            [br][4]overlay=x=0:y=H-h:shortest=1" \&#xA;            -c:v h264 \&#xA;            $destination&#xA;            COMMAND;&#xA;

    &#xA;

    But i want to make watermarks 10% the size of the main video

    &#xA;