Recherche avancée

Médias (0)

Mot : - Tags -/auteurs

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (71)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

Sur d’autres sites (9294)

  • 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.