Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (42)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

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

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (11260)

  • Anomalie #3371 : faille sécurité ? balise meta+refresh dans un champ d’article

    26 juillet 2015, par cedric -

    Puisque la 3.1 affiche surtitre et sous titre dans les listes, il faut maintenant sanitizer ces 2 champs également

  • Revision fc88292ef2 : Remove Wextra warnings from vp9_sad.c As a side-effect, the sad unit tests for

    13 mai 2014, par Deb Mukherjee

    Changed Paths :
     Modify /test/sad_test.cc


     Modify /vp9/common/vp9_rtcd_defs.pl


     Modify /vp9/encoder/vp9_encodeframe.c


     Modify /vp9/encoder/vp9_mbgraph.c


     Modify /vp9/encoder/vp9_mcomp.c


     Modify /vp9/encoder/vp9_rdopt.c


     Modify /vp9/encoder/vp9_sad.c


     Modify /vp9/encoder/vp9_variance.h



    Remove Wextra warnings from vp9_sad.c

    As a side-effect, the sad unit tests for VP8 and VP9
    had to be separated.

    Fixes a bug in original patch :
    (https://gerrit.chromium.org/gerrit/#/c/70163/8)
    that was reverted due to a nightly test failure.

    Change-Id : Ia2a4e9e278fd3c89d6c3c82fcc6381320ec2a8a6

  • FFmpeg - Partial fade effect on overlay image

    22 octobre 2023, par antoox

    I'm having trouble with ffmpeg.

    


    I want to make a 3-second video (example here : https://streamable.com/7uhi7f) with :

    


      

    • A background image (300x350 jpeg file)
    • 


    • A logo overlaid in the center of the background image (100x40 png file)
    • 


    • And I would like the logo to fade in and out with the following opacity timeline :
    • 


    


      

    1. At 0 seconds, the opacity is 0.5
    2. 


    3. At 1 second, the opacity is 1
    4. 


    5. At 2 seconds, the opacity is 0.2
    6. 


    7. At 3 seconds, the opacity is 1.
    8. 


    


    So far I only succeeded in adding an overlay with a fully fade IN (between 0 to 1s) and a fully fade OUT (from 2s to 3s) :

    


    ffmpeg -loop 1 -i background.jpeg -framerate 30 -loop 1 -i logo.png -filter_complex "[0]format=rgba,scale=300:250[o];[1]format=rgba,fade=in:st=0:d=1:alpha=1,fade=out:st=2:d=1:alpha=1[i];[o][i]overlay=x=(W-w)/2:(H-h)/2" -c:v libx264 -t 3 output.mp4

    


    I also tried geq & blend filters without any success.

    


    What would be the more appropriate approach to handle that kind of effect ?