Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (42)

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

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (3443)

  • How to crop videos with black frames on top and bottom

    14 février 2019, par jennie

    I want to crop videos with black frames on the bottom and top follow the scale as described in the video : https://youtu.be/QIXgvGF59CM

    Can you help me write code using ffmpeg ?

  • How do I use ffmpeg to bulk scale videos of different sizes to the same size (some potentially with black bar padding) ?

    9 décembre 2020, par Tumbleweed53

    I have a bunch of videos I want to stitch together. I want to scale them all to the same size, maintaining aspect ratio (thus adding black bar padding if necessary). Some videos will be downscaled, but most upscaled.

    


    Does anyone have a clever ffmpeg scale formula to accomplish this ? My alternative is to iterate through every video and calculate the scale formula based on its size, but I'd prefer not to do that if I don't have to.

    


  • Concatenate videos and add black frames between them with ffmpeg

    25 avril 2016, par user3406207

    I have three videos that I am concatenating with ffmpeg. I would like to add a few black frames in between them. Although I’ve found a few hints on the web it has not worked for me yet. I have tried to generate an ’empty’ video with just black frames with :

    ffmpeg -t 20 -s 1920x1080 -f rawvideo -pix_fmt rgb24 -r 25 -i c:\nul  E:\empty.avi

    and then concatenate with another one but doesn’t work. I have tried a few other things without success. Any help would be greatly appreciated

    EDIT : also tried to add black frames before and after video with the following code, but no success :

    ffmpeg -f lavfi -i color=c=black:s=1920x1080:r=25:d=100 -i middle_video.avi -filter_complex
    "[0:v]trim=start_frame=1:end_frame=21[blackstart];
    [0:v] trim=start_frame=1:end_frame=21 [blackend];
    [blackstart] [1:v] [blackend] concat=n=3:v=1:a=0[out]" -map "[out]" -c:v qtrle -c:a -copy output.avi

    EDIT2 :
    Output from ffprobe

    Metadata:
    encoder: Lavf57.3.100
    Duration: 00:00:10.05, start: 0.000000, bitrate: 43302 kb/s
    Stream #0:0: Video: mpeg4 (Simple Profile) (FMP4 / 0x34504D46), yuv420p, 192
    0x1080 [SAR 1:1 DAR 16:9], 43333 kb/s, 23.98 fps, 23.98 tbr, 23.98 tbn, 10k tbc
    Stream #0:1: Audio: mp3 (U[0][0][0] / 0x0055), 48000 Hz, stereo, s16p, 128 k
    b/s

    EDIT 3
    Link to the report of the ffmpeg console output :
    FFMPEG session report