Recherche avancée

Médias (91)

Autres articles (44)

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

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (5953)

  • ffmpeg : concat two clips vertically, but upper one should be bigger

    19 juillet 2022, par Rittari771

    I have two 1920x1080 clips. I know how to concat two clips vertically (the clips share equally the space half, 50% upper clip - 50% bottom) => what would i need to do to get a ratio like 65% 35% ?
So the upper clip would take 65% of the screen space vertically, then the lower bottom clip would fill the rest 35% ?

    


    this is my current code to concat the clips vertically.

    


    ffmpeg -i clip_top.mp4 -i clip_bottom.mp4 -filter_complex "vstack=inputs=2" -vsync 2 final_clip.mp4


    


    here is the same explanation, but with a picture : enter image description here

    


  • How to do real-time video streaming frame by frame in python ?

    4 septembre 2018, par Leo

    What I need is to readin one frame of a video, then send this frame as a frame in video, like P-frame, to the server, and server decode it based on the information of the frames it received before this frame.(So only the first frame is sent as complete I-frame, the rest are just P-frame to save bandwidth)

    Then I need to do some real time operation on this frame.

    But I try ffmpeg’s and opencv’s built in streaming protocal, it can only save a complete video file. But I need to do some real time manipulate as soon as I receive one fram, so I cant wait till I have received the whole file.

    So what package should I use ? Or there is not existing lib/software that could do this ?

  • How to run the docker image of snickers : open source http api for media encoding

    16 juillet 2019, par Hossam Kandil

    I am trying to run snickers : open source http api for media encoding docker image
    https://hub.docker.com/r/flavioribeiro/snickers-docker/ .

    I tried to run the docker image by using

    docker run -i -t flavioribeiro/snickers-docker:v3 /bin/bash

    but it doesn’t expose any rest interface as expected. I don’t knew what I miss , maybe I am using wrong running command , I tried to search for it but no luck.