Recherche avancée

Médias (1)

Mot : - Tags -/swfupload

Autres articles (72)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (10383)

  • AForge.Video.VideoException : Cannot allocate video picture

    23 octobre 2015, par user5389242

    I’m trying to convert images into a video file, but I’m getting the following error :

    An unhandled exception of type ’AForge.Video.VideoException’ occurred in AForge.Video.FFMPEG.dll

    Additional information : Cannot allocate video picture.

    The error occurs on writer.Open :

    writer = new VideoFileWriter();
    writer.Open("/output.avi", width, height, 30, VideoCodec.MPEG4, 1000000);
  • FFMPEG curtain effect slideshow from images

    15 janvier 2020, par Atta

    I have bunch of images that i have to convert to slideshow with curtain effect. currently i am running this command that convert images to video.

    ffmpeg -r 1/5 -i img%d.png -c:v libx264 -vf "fps=25,format=yuv420p" video.mp4

    But how to achieve this kind of effect with ffmpeg. Image link Required result

    I searched online but not found any solution. I have clue of alpha mask but no idea how to use it for such result.

  • Mix original clip audio with audio of an overlay clip

    28 octobre 2019, par Mr. Messy

    I have a video clip on which I want to add commentary videos (someone talking in a bubble).
    I have 3 commentary videos I need to insert in specific times.

    The video rendering is working well, but I can’t seem to add the audio tracks.
    I tried both amix and amerge, but I got the same issue.

    When I added "[0:1][2:1]amerge ;" I get the follwing :

    enter image description here

    and the process freezes.

    The full ffmpeg command is as follows :

    ffmpeg -y   -i story.mp4
           -loop 1 -i mask.png
           -itsoffset 10 -i commentary1.mp4
           -itsoffset 22 -i commentary2.mp4
           -itsoffset 34 -i commentary3.mp4
           -filter_complex "[0:v]scale=w=1/2*in_w:h=1/2*in_h[vid1],
                           [2:v]crop=w=480:h=480:x=0:y=120[vid2in],
                               [1:v]fifo[2af],[2af]alphaextract[alf2],[vid2in][alf2]alphamerge[vid2alf],
                               [vid2alf]format=yuva420p,fade=in:st=10:d=0.5:alpha=1,fade=out:st=22.7294:d=0.5:alpha=1[vid2fade],
                               [vid2fade]scale=w=-1:h=160[vid2],
                               [vid1][vid2]overlay=790:10:enable='between(t\,10,21)'[out2],
                           [3:v]crop=w=480:h=480:x=0:y=120[vid3in],
                               [1:v]fifo[3af],[3af]alphaextract[alf3],[vid3in][alf3]alphamerge[vid3alf],
                               [vid3alf]format=yuva420p,fade=in:st=22:d=0.5:alpha=1,fade=out:st=32.768733:d=0.5:alpha=1[vid3fade],
                               [vid3fade]scale=w=-1:h=160[vid3],
                               [out2][vid3]overlay=790:10:enable='between(t\,22,33)'[out3],
                           [4:v]crop=w=480:h=480:x=0:y=120[vid4in],
                               [1:v]fifo[4af],[4af]alphaextract[alf4],[vid4in][alf4]alphamerge[vid4alf],
                               [vid4alf]format=yuva420p,fade=in:st=34:d=0.5:alpha=1,fade=out:st=44.598189:d=0.5:alpha=1[vid4fade],
                               [vid4fade]scale=w=-1:h=160[vid4],
                               [out3][vid4]overlay=790:10:enable='between(t\,34,45)'[out4]"
           -map [out4] -pix_fmt yuv420p -c:v libx264 -crf 18
           final_video.mp4

    (mask.png is a circle on a transparent image that crops the video to a bubble)

    Thank you for your help.