Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (35)

  • Participer à sa documentation

    10 avril 2011

    La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
    Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
    Pour ce faire, vous pouvez vous inscrire sur (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (7119)

  • How to apply zoompan filter on GIF using FFMPEG

    21 juin 2021, par Pradeep Kumar

    I am creating a video using images with audio length using FFMPEG. In which i have following inputs a background image, a overlay gif, text overlay png file and a watermark png image. I want to add a zoom in out animation effect on overlay.gif file. The animation effect is working fine But the GIF is not working as expected, it is showing as an image. This is working fine with the jpeg/png file. How can i achieve this so GIF is working as expected ?

    


    I am using below command.
    
This command also change the shape of the GIF.

    


    ffmpeg -loop,1,-i,background.jpg,-ignore_loop,0,-i,overlayfirst.gif,-loop,1,-i,textOverlay.png,-i,watermark.png,-i,audio.mp3,-filter_complex,[1]scale=493:493,zoompan=z='if(lte(mod(on,60),10),zoom+0.0020,zoom-0.0020)':x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)':d=200:s=493x493,geq=lum='p(X,Y)':a='st(1,pow(min(W/2,H/2),2))+st(3,pow(X-(W/2),2)+pow(Y-(H/2),2));if(lte(ld(3),ld(1)),255,0)',rotate=0.06*PI*t:c=black@0.0:ow='hypot(iw,ih)':oh=ow[b];[2]scale=375:375,rotate=0.06*PI*t:c=black@0.0:ow='hypot(iw,ih)':oh=ow[pic2];[3]scale=100:50[watermark];[0:v][b]overlay=(W-w)/2:(H-h)/2[over1],[over1][pic2]overlay=(W-w)/2:(H-h)/2[pic3],[pic3][watermark]overlay=(W-120):(H-60),scale=830:830,format=yuv420p,-ss,00:00:00,-to,00:00:07,-c:v,mpeg4,-b:a,3M,-c:a,aac,-b:a,192k,-q:v,1,-shortest,output.mp4


    


    I also checked this link

    
Please help me. Thanks in advance

    


  • FFMPEG wont keep the frame rate and duration

    28 avril 2018, par macprodukshunz

    I have a .mov video that is 53.15 fps, I need to convert it with the same duration and frame rate to a mp4. When I do it it gives me a 60 fps mp4. How do I tell it to keep the same framerate ?
    I tried :

    ffmpeg -i input.mov -r 53.15 output.mp4

    That works with framerate but the duration changes and the output looses one second. I want the video to have the exact same basic attributes after conversion.

    Im using the Terminal on macOS Sierra, if that matters.

  • Retrieving metadata from x264 ?

    29 février 2012, par Blender

    I am trying to exctract the meta data from x264-encoded video files. First priority is to map the IDR-frames structure. The work seams to be harder than expected and I am trying to find command line applications that I can control from my code.

    Mp4box has an option "-dump-xml" or similar but I can't figure out how it works. Not much help available on the net on this option.

    Anyone who can give me a hint on this or any other alternative ?

    Thank you.