Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (30)

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

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (2165)

  • I need help setting up a FFmpeg command that adds a small watermark in the bottom right of the first 5 seconds of multiple videos [closed]

    23 avril 2024, par hwm

    There are hundreds of videos that we'd like to add a small FFmpeg watermark to the bottom right during the first 5 seconds of each video. I don't know if there's a way to automate the command to all files in the folder, and if there is a way to make the output filename the same as the original video, or adding a -2 to the new filename. Some videos may have different file formats.

    


    Not sure if there's an app that can facilitate this for someone not well versed in programming, or can help do it to all the videos with one command. This could potentially be done in Linux, Windows or Mac. If the command changes based on OS, please let me know what the process would be for that specific OS.

    


    This is for a large project we are planning on releasing for free to the public fan space. Thanks !

    


    I can likely find someone that's more competent than me but getting the full command line to make this seamless would be ideal.

    


  • FFmpeg how generate a sequence of videos with bash

    27 janvier 2018, par Massimo Vantaggio

    i try to write an .sh that read a folder create a playlist of mp4 files and then generate an only big video with a sequence of all videos find in the folder, and encode it for dash :

    printf "file '%s'\n" ./*.mp4 > playlist.sh
    ffmpeg -f concat -safe 0 -i playlist.sh -c copy concat.mp4

    Till now i follow the demux concat official guido to ffmpeg website.
    Without result, also the following give me "more than 1000 frames duplicated between videos of the sequence"

    ffmpeg -f concat -i playlist.sh -c:a aac -b:a 384k -ar 48000 -ac 2 -c:v libx264 -x264opts 'keyint=50:min-keyint=50:no-scenecut' -r 25 -b:v 2400k -maxrate 2400k -bufsize 1200k -vf "scale=-1:432 " out.mp4

    Thanks a lot

  • ffmpeg create 2 videos from images with a consistent (exact same) duration

    3 septembre 2021, par danday74

    I have exactly 1500 jpg's named rgb_00000.jpg rgb_00001.jpg etc. Each image has dimensions 1920 x 1440 (aspect ratio 4:3). These images are sequential and represent someone filming a car.

    


    I have exactly 1500 png's named depth_00000.png depth_00001.png etc
Each image has dimensions 256 x 192 (aspect ratio 4:3). These images are sequential and represent a depth visual for the first set of images.

    


    From these 2 sets of images I want to create 2 videos with the exact same length. The user will then be able to flip between videos.

    


    So I ran this command to generate the first video

    


    cat depth_*.png | ffmpeg -y -f image2pipe -framerate 30 -i - -pix_fmt yuv420p -c:v libx264 depth.mp4


    


    Video created with success. Then I ran this command to output duration information

    


    ffprobe -v quiet -show_entries format=duration -of default=noprint_wrappers=1:nokey=1 depth.mp4


    


    The duration was 51.534

    


    I then repeated these exact same commands on the jpg set of images. Again video was created with success. But this time the duration is 51.905

    


    Why is the duration different given an identical frame rate and image count ? How can I make it so that the duration is identical for both videos (to support jumping between them) ?

    


    Note : I don't want to just truncate the videos to the same length since then they would not be parallel and flipping / jumping between the videos would not be smooth

    


    Many thanks