Recherche avancée

Médias (91)

Autres articles (112)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

Sur d’autres sites (8446)

  • 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

  • I want to create a video from images with transition applied

    29 mars 2023, par Kaleem Abbas

    I want to load images and create video with transition applied. I was able to create video but transitions are not being applied.

    


    ffmpeg -framerate 1/5 -start_number 1 -i "D :\video\photo\images%%d.jpg" -filter_complex "[0:v]split=5[0a][0b][0c][0d][0e] ;[0a]format=yuva420p,hflip[flip0] ;[0b]format=yuva420p[bg] ;[0c]format=yuva420p[bg1] ;[0d]format=yuva420p[bg2] ;[0e]format=yuva420p,hflip[flip1] ;[bg][flip0]overlay=x='min(-w*(t-1.5),0)':shortest=1[bg0] ;[bg0][bg1]overlay=x='min(-w*(t-0.5),0)':shortest=1,drawbox=t=fade:enable='between(t,0,1)':color=white[bg01] ;[bg01][flip1]overlay=x='min(-w*(t),0)':shortest=1,drawbox=t=fade:enable='between(t,0,1)':color=white[bg1] ;[bg1][bg2]overlay=x='min(-w*(t+0.5),0)':shortest=1,drawbox=t=fade:enable='between(t,0,1)':color=white[bg12] ;[bg12][1:v]overlay=shortest=1:x='if(gte(t,1),0,-w+(tw))':y=0,drawbox=t=fade:enable='between(t,0,1)':color=white[video]" -map "[video]" -c:v libx264 -crf 18 -preset veryfast -t 5 -vf "fade=t=out:st=4:d=1:alpha=1, wipe=w=0.5:h=0:y='H/2':x='if(gte(t,1),0,W-wt/2)':d=1" output.mp4