Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (55)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

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

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

Sur d’autres sites (7179)

  • How to split a video using black frames as markers in ffmpeg ?

    13 décembre 2019, par gramm

    I want to split a video so that when there are black frames it creates a new file.
    Is there a way to do this in one command in ffmpeg ?
    I can for the moment detect black frames using :

    ffmpeg -i myfile -vf blackdetect=d=2:pix_th=0.00 -f rawvideo -y /NUL

  • FFMPEG : Overlaying one video on another one, and making black pixels transparent

    26 juillet 2016, par Michael A

    I’m trying to use FFMPEG to create a video with one video overlayed on top another.

    I have 2 MP4s. I need to make all BLACK pixels in the overlay video transparent so that I can see the main video underneath it.

    I found two ways to overlay one video on another :

    First, the following positions the overlay in the center, and therefore, hides that portion of the main video beneath it :

       ffmpeg -i 1.mp4 -vf "movie=2.mp4 [a]; [in][a] overlay=352:0 [b]" combined.mp4 -y

    And, this one, places the overlay video on the left, but it’s opacity is set to 50% so at least other one beneath it is visible :

    ffmpeg -i 1.mp4 -i 2.mp4 -filter_complex "[0:v]setpts=PTS-STARTPTS[top]; [1:v]setpts=PTS-STARTPTS, format=yuva420p,colorchannelmixer=aa=0.5[bottom]; [top][bottom]overlay=shortest=0" -acodec libvo_aacenc -vcodec libx264 out.mp4 -y

    My goal is simply to make all black pixels in the overlay (2.mp4) completely transparent. How can this be done.

  • Why do I get a black box when I tile pictures with -filter_complex tile=2x1 in FFmpeg ?

    19 juin 2016, par Mateusz Piotrowski

    As I was trying to write a script (which attempts to join two pictures eventually) using FFmpeg I came across a very weird behaviour.

    I’ve found a command in an accepted answer for the very same problem I had (How to join two image into one by ffmpeg ?) :

    ffmpeg -i a.jpg -i b.jpg -filter_complex scale=120:-1,tile=2x1 output.jpg
    • Input : a.jpg, b.jpg

      a.jpg b.jpg

    • Output : output.jpg

      output.jpg

    What happened to the B cat ? Why is it missing from the output image ? I couldn’t find any information why tile=2x1 behaves like this.