Recherche avancée

Médias (91)

Autres articles (112)

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

Sur d’autres sites (11226)

  • FFMpeg - move overlay from point a to b to c to d

    26 août 2017, par techr

    I used somebody else’s code posted by LordNeckbeard here : FFmpeg move overlay from one pixel coordinate to another

    I modified it a bit to this :

       ffmpeg -i 4632.mpg -i 4632.bmp -filter_complex "[0]scale=320:240[over];
       [1][over]overlay=enable='between=(t,0,50)':x=20+t*30:y=20+t*20" -s
       1280:720 -c:a copy -y output.mpg

    I’d like to be able to limit the movement so the overlay does not go off screen.
    How can I move a scaled clip overlay in four directions, X & Y starting from originating location and back ?

  • Work around broken floating point limits on some systems.

    14 novembre 2013, par Anton Khirnov
    Work around broken floating point limits on some systems.
    

    The values of FLT,DBL_MAX,MIN macros on some systems (older musl
    libc, some BSD flavours) are not exactly representable, i.e.
    (double)DBL_MAX == DBL_MAX is false
    This violates (at least some interpretations of) the C99 standard and
    breaks code (e.g. in vf_fps) like
    double f = DBL_MAX ;
    [...]
    if (f == DBL_MAX) // f has not been changed yet
    [....]

    • [DH] compat/float/float.h
    • [DH] compat/float/limits.h
    • [DH] configure
  • Revision c24d922396 : Add averaging-SAD functions for 8-point comp-inter motion search. Makes first 5

    25 juin 2013, par Ronald S. Bultje

    Changed Paths :
     Modify /vp9/common/vp9_rtcd_defs.sh


     Modify /vp9/encoder/vp9_mcomp.c


     Modify /vp9/encoder/vp9_onyx_if.c


     Modify /vp9/encoder/vp9_sad_c.c


     Modify /vp9/encoder/vp9_variance.h


     Modify /vp9/encoder/x86/vp9_sad_sse2.asm



    Add averaging-SAD functions for 8-point comp-inter motion search.

    Makes first 50 frames of bus @ 1500kbps encode from 3min22.7 to 3min18.2,
    i.e. 2.3% faster. In addition, use the sub_pixel_avg functions to calc
    the variance of the averaging predictor. This is slightly suboptimal
    because the function is subpixel-position-aware, but it will (at least
    for the SSE2 version) not actually use a bilinear filter for a full-pixel
    position, thus leading to approximately the same performance compared to
    if we implemented an actual average-aware full-pixel variance function.
    That gains another 0.3 seconds (i.e. encode time goes to 3min17.4), thus
    leading to a total gain of 2.7%.

    Change-Id : I3f059d2b04243921868cfed2568d4fa65d7b5acd