Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (46)

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (6311)

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

  • Make green nullsrc to black

    2 octobre 2016, par Ultgin

    I have a video which hasn’t 1920x1080 so I need to make it.

    I try to use next command :

    ffmpeg -i "video.avi" -filter_complex "nullsrc=size=1920x1080 [0:v]; [0:v] overlay=shortest=1:x=200:y=100" -r 30 -c:v libx264 -preset fast -crf 18 -profile:v high -bf 2 -flags +cgop -coder 1 -pix_fmt yuv420p -strict -2 -c:a aac -b:a 384k "video.mp4"

    But I got a green frame over the video like this - http://i.imgur.com/QNVUGb5.jpg

    I dont find a solution to make a green in any other color.

    How possible to make green frame to black frame ?

    Thanks.