Recherche avancée

Médias (91)

Autres articles (99)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Activation de l’inscription des visiteurs

    12 avril 2011, par

    Il est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
    Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
    Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)

Sur d’autres sites (10509)

  • avformat/movenc : handle EAC-3 extension bits for Atmos

    3 juin, par nyanmisaka
    avformat/movenc : handle EAC-3 extension bits for Atmos
    

    Based on a patch by nyanmisaka.
    Fixes commit #9996.

    Reviewed-by : Baptiste Coudurier <baptiste.coudurier@gmail.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/movenc.c
    • [DH] libavformat/version.h
  • How to implement spring animation (mass, tension, friction) in FFmpeg zoompan filter instead of linear interpolation ?

    29 mai, par Mykyta Manuilenko

    I'm trying to create a zoom-in and zoom-out animation using FFmpeg's zoompan filter, but I want to replace the linear interpolation with a spring animation that uses physics parameters (mass, tension, friction).

    &#xA;

    My input parameters :

    &#xA;

    "zoompan": {&#xA;  "focusRect": {&#xA;    "x": 1086.36,&#xA;    "y": 641.87,&#xA;    "width": 613,&#xA;    "height": 345&#xA;  },            &#xA;  "easing": {&#xA;    "mass": 1,&#xA;    "tension": 120,&#xA;    "friction": 20&#xA;  }&#xA;}&#xA;

    &#xA;

    Current working linear animation :

    &#xA;

    ffmpeg -framerate 25 -loop 1 -i input.png \&#xA;  -filter_complex "\&#xA;    [0:v]scale=6010:3380,setsar=1,split=3[zoomin_input][hold_input][zoomout_input]; \&#xA;    [zoomin_input]zoompan= \&#xA;      z=&#x27;iw/(iw/zoom &#x2B; (ow - iw)/duration)&#x27;: \&#xA;      x=&#x27;x &#x2B; (3400 - 0)/duration&#x27;: \&#xA;      y=&#x27;y &#x2B; (2009 - 0)/duration&#x27;: \&#xA;      d=25:fps=25:s=1920x1080, \&#xA;      trim=duration=1,setpts=PTS-STARTPTS[zoomin]; \&#xA;    [hold_input]crop=1920:1080:3400:2009,trim=duration=4,setpts=PTS-STARTPTS[hold]; \&#xA;    [zoomout_input]zoompan=\&#xA;      zoom=&#x27;if(eq(on,0),iw/ow,iw/(iw/zoom &#x2B; (iw-ow)/duration))&#x27;:\&#xA;      x=&#x27;if(eq(on,0),3400,x &#x2B; (0-3400)/duration)&#x27;:\&#xA;      y=&#x27;if(eq(on,0),2009,y &#x2B; (0-2009)/duration)&#x27;:\&#xA;      d=25:fps=25:s=1920x1080, \&#xA;      trim=duration=1,setpts=PTS-STARTPTS[zoomout];&#xA;    [zoomin][hold][zoomout]concat=n=3:v=1:a=0[outv]" \&#xA;  -map "[outv]" \&#xA;  -crf 23 \&#xA;  -preset medium \&#xA;  -c:v libx264 \&#xA;  -pix_fmt yuv420p \&#xA;  output.mp4&#xA;

    &#xA;

    Notes :

    &#xA;

      &#xA;
    • It creates a perfectly straight zoom path to the specific point on the screen (similar to pinch-zooming on a smartphone - straight zooming to the center of the focus rectangle)

      &#xA;

    • &#xA;

    • To improve the quality of the output, I upscale it beforehand

      &#xA;

    • &#xA;

    &#xA;

    What I want to achieve :

    &#xA;

    Instead of linear interpolation, I want to implement a spring function with these physics parameters :

    &#xA;

      &#xA;
    • mass : 1
    • &#xA;

    • tension : 120
    • &#xA;

    • friction : 20
    • &#xA;

    &#xA;

    Note that these params can be changed.

    &#xA;

    Also, I want to preserve a perfectly straight zoom path to the specific point on the screen (similar to pinch-zooming on a smartphone).

    &#xA;

    Question :

    &#xA;

    How can I properly implement a spring animation function in FFmpeg's zoompan filter ?

    &#xA;

  • hwcontext_vulkan : disable descriptor buffer extension on Intel

    12 avril, par Lynne
    hwcontext_vulkan : disable descriptor buffer extension on Intel
    

    Temporary workaround. Will be replaced with a version check once a fix is
    in the works and a known next version for Mesa with a fix is known.

    • [DH] libavutil/hwcontext_vulkan.c