Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (46)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (6439)

  • Fade in image on existing video [closed]

    2 décembre 2024, par csphmay

    I'm currently trying to create a video which has a background image and a mp3 set for background audio and now I want to achieve to add a second image which fades in over 5 seconds. The result should be a video where the background image is shown and the second image is laying over it (The second image is basically a logo which I would like to place in the bottom right corner).

    


    To this point I wasn't able to achieve the result described above with a single FFMPEG command.
With the following two commands I generate the video with the first background image and with the second command I try to add the overlay which should fade in from 0-5 seconds. Unfortunately the second video will be black for the first 5 seconds and afterwards just the background image fades in from 5-10 seconds and the overlay is not even shown.

    


    ffmpeg -framerate 25 -loop 1 -t 00:04:52 -i background.jpg -i wedding.mp3 -c:v libx264 -c:a aac -pix_fmt yuv420p -shortest -y part1.mp4


    


    ffmpeg -i part1.mp4 -framerate 25 -loop 1 -t 00:04:52 -i overlay.png -filter_complex "[0:v][1:v]overlay=enable='between(t,5,4.52)':shortest=1,fade=t=in:st=5:d=5[v]" -map "[v]" -map 0:a -c:v libx264 -c:a aac -pix_fmt yuv420p -y output.mp4


    


    Is there a way to make this work with FFMPEG (at best only with one command) ?

    


  • ffmpeg Apply overlay without streching source image

    9 avril 2019, par Tabassum Latif

    I have to apply overlay on an image and I’m using Ffmpeg for this purpose. The output is generating fine but the issue that I’m facing is that if size of source image is less than overlay image (i.e. source is 500x500 and overlay is 500x1000 then source image streches to fill the whole area and output image is 500x1000. What I want is that it should not strecth the source image in the output after aplying overlay. But output should be of size as it is giving me now 500x1000. Following is my FFmpeg command : Any ideas would be appreciable. Thanks

    Required input

    enter image description here

    ffmpeg commond :

    command = new String[]{"-y", "-i", filePath,
                   "-i", overlayPath, "-filter_complex",
                   "[1][0]scale2ref[i][m];[m][i]overlay[v]", "-map", "[v]",
                   "-map", "0:a?", "-ac", "2", output};

    Result output

    enter image description here

  • FFmpeg - add an image (cropped by mask) to the video

    10 mars 2021, par zeromodule

    I have 3 inputs :

    


      

    1. Video file
    2. 


    3. Image file (GIF)
    4. 


    5. Mask file (transparent PNG with some black pixels) - the same resolution as the video
    6. 


    


    I want to put the image on the video, but throw out all image pixels that are transparent in the mask (replace them with transparent ones).

    


    Video
    
Mask
    
Image
    
Result

    


    My current command, without masking (it works fine) :

    


    ffmpeg -i input.mp4 -ignore_loop 0 -i image.gif -filter_complex "[1]scale=700x700[scaled_gif];[0][scaled_gif]overlay=50:30:shortest=1" -codec:a copy output.mp4


    


    I know I should probably use alphamerge, but I don't understand how to use it properly.