Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (31)

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

  • 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

Sur d’autres sites (5660)

  • how to draw n number of rectangles on video with ffmpeg

    29 octobre 2017, par taltal115

    Im trying to create a video for testing framrate html5 players
    this video need to contain rectanges for each frame for the first 10 frames
    i need it to be dynamic.

    for now i have the following command :

    ffmpeg -loop 1 -i black.png -c:v libx264 -t 15 -r 30 -vcodec h264 -pix_fmt yuv420p \
          -vf "[in]drawtext=fontfile=/usr/share/fonts/open-sans/OpenSans-Regular.ttf : text=%{n}:x=(w-tw): y=h-(lh): fontcolor=white: box=1: boxcolor=0x00000099, \
               drawbox=x='mod(t\,10)*32':w=16:h=16:color=white@1[out]" \
          -y out123.mp4

    again im trying to draw a rectangle for each frame in the to image like so :
    x=16*0,x=16*1,x=16*2...

    the only mving pate here is the x param and its not moving
    can any one help ?

  • Android video compression using ffmpeg

    3 août 2016, par Nikhil Desale

    I am compressing video using ffmpeg library.
    user can browse for any video and compress it. It is working fine for videos with video name don’t have white spaces.But if video name have white spaces compression is not working.we try to double quote for video path but still it is not working. for eg. our video path is like this - /storage/sdcard1/Video/teri jhuki nazar.mp4

    how to fix this issue ?

  • FFMPEG image overlay zoompan leaving shadow

    21 octobre 2018, par Pier Giorgio Misley

    I have the code for adding many images overlay to a video. It works fine, but since every overlay a white shadow of the image is kept until the end of the video, like this :

    enter image description here
    As you can see, a white shadow of all images is kept in the center of the image.

    This is my code :

    -i "input.mp4" -i "1.png" -filter_complex "[1:v]format=yuva422p,scale=7290x4850,setsar=1/1,pad=1.5*iw:1.5*ih:(ow-iw)/2:(oh-ih)/2:color=black@0,zoompan=z='min(zoom+0.0010,1.5)':s=729x485:d=400:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)',fade=in:st=0:d=3:alpha=1,fade=out:st=13:d=3:alpha=1,setpts=PTS+22/TB[im1];[0][im1]overlay=(main_w-overlay_w)/2:(main_h - overlay_h)/2" -pix_fmt yuv420p -c:a copy "output.mp4"

    (in that code I add only one image, but there might be more)

    Why this white shadow is kept since the overlay to the end of the video ?

    Thanks