Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (57)

  • 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

  • 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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (9082)

  • Doxyfile : Set STRIP_FROM_INC_PATH to project root

    3 août 2016, par Timothy Gu
    Doxyfile : Set STRIP_FROM_INC_PATH to project root
    

    Show proper #include’s on struct pages.

    Before :

    #include <buffer.h>

    After

    #include <libavutil/buffer.h>

    • [DH] doc/Doxyfile
  • Revision d4124ea317 : [svc] Fix issue for setting layers through ffmpeg Root cause is number of spati

    27 mars 2014, par Minghai Shang

    Changed Paths :
     Modify /vpx/src/svc_encodeframe.c



    [svc] Fix issue for setting layers through ffmpeg

    Root cause is number of spatial layers is set through
    parse_options() when running from ffmpeg.

    Change-Id : Icd79cd13fd76e8712150d803838a33fee9117dcb

  • FFmpeg - Smooth Overlay Zoom ?

    20 mai 2021, par user11588722

    I have an ffmpeg command which zooms an image image of unknown size from 200% to 100% height then overlays it centered on a scaled+blurred background of the same input image. All works well, but the result is not at all smooth. How would I make the zoom effect smoother ?

    &#xA;

    Here's what I have :

    &#xA;

    ffmpeg -y -loop 1 -i "image.jpg" -filter_complex "[0]scale=1920:1080,boxblur=10:10,setsar=1[back]; [0]scale=-1:2160[img]; [img]scale=w=iw-iw*n/500:h=-1:eval=frame[front]; [back][front] overlay=x=(W-w)/2:y=(H-h)/2" -ss 0 -t 10 -r 60 "out.mp4"&#xA;

    &#xA;