Recherche avancée

Médias (91)

Autres articles (47)

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

  • Aligning multiple words vertically with drawtext & ffmpeg

    26 mai 2023, par CRAIG

    I am needing to vertically align several drawtext chained commands that are of various font sizes off of a center point, but in a way where similar fonts/sizes will appear to be correctly aligned off of their baselines.

    


    The $centerline is a vertical top positioned line that theoretically is the vertical center that each text would sit upon regardless of total text height/font size so even differing fonts of differing sizes will look good together.

    


    But the max_glyph_a is to ensure that the same fonts with the same font size will sit on the same baseline. I would think this would do it, but no, it's off vertically.

    


     $y = '(' . $centerline . '+(text_h/2)-max_glyph_a)';


    


    I can't wrap my noggin around this. Any ideas ?

    


  • How to convert a 16:9 video to 4:3 video with top & bottom blurred video bars by using ffmpeg ?

    27 décembre 2018, par Wai Gyi

    I would like to convert a landscape video to a square video with blur bars at top and bottom.

    I tried to adapt the commands from the following link but not succeeded.

    FFmpeg : How to convert horizontal video 16:9 to vertical video 9:16, with blurred background on top and bottom sides

    So, can someone share a ffmpeg command with me ?

    Thank you very much for your help.

    Update : I tried again and get a working command. Please check and review.

       ffmpeg -i in.mp4 -lavfi "[0:v]scale=iw:iw*3/4,boxblur=luma_radius=min(h\,w)/40:luma_power=3:chroma_radius=min(cw\,ch)/40:chroma_power=1[bg];[bg][0:v]overlay=(W-w)/2:(H-h)/2,setsar=1,crop=h=iw*3/4" out.mp4
  • Delay in setting RTP packets using FFMpeg [on hold]

    25 janvier 2018, par rurtle

    So, I’m trying to stream video using FFMpeg from my embedded box to VLC media player on a PC. While doing so, I’m noticing lots of video freezing. VLC is reporting -
    pulse audio output debug: underflow. I’m using the following command to start streaming with FFMpeg -

    ./ffmpeg -stream_loop -1 -re -i generic.ts -acodec copy -vcodec copy -f rtp_mpegts rtp://239.224.0.1:5000?pkt_size=200

    When I set the pkt_size to 400, streaming performance is a lot worse. FFMpeg version : 3.4.

    Accidentally, I found that if I start ping from PC to my box, the performance improves dramatically. I am using Linux on the dev box.

    So, my questions are -

    1. Is there any command line option that I can use on FFMpeg to improve streaming ?
    2. How ping can affect the streaming performance ?

    Thanks in advance !