Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (55)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (8235)

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

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

  • 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