Recherche avancée

Médias (91)

Autres articles (111)

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

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

Sur d’autres sites (4363)

  • Infinite stream of images with node

    29 septembre 2016, par shilch

    I am creating a node server that reads images from the webcam with opencv and does some face recognition. The processed image should be sent to the browser.
    First I though of using websockets and sending each frame, but this was not efficient and slow.
    Now I am thinking of using the html video element and using a video stream. So I create this stream in node and put each new frame into this stream, so that it will be displayed in the video element. I have two questions regarding this idea :

    1. Are infinite video streams possible ? (not flash, should work in chrome)
    2. Is there any library to create this stream easily ? I read of a library called ’ffmpeg’. Can it do the job ?

    Of course I am open for other ideas :)

    Thank you in advance !

  • FFmpeg similar images filtering into png

    6 juillet 2020, par Udi

    I'm using FFmpeg on Mp4 and Avi videos, trying to output all the frames in configurable frame rate to png files using the following command :

    


    ./ffmpeg -i ~/Downloads/test.mp4 -vf mpdecimate=hi=1536:lo=640:frac=0.5,setpts=N/60/TB,fps=60/60 "/tmp/resultOutpu/(#%04d).png"


    


    test.mp4 is a 10 seconds video of my face using the phone and I expect it to take 10 frames and drop 9 because it is much similar to the first frame. (The video is 1 pose)

    


    The actual results it 10 frames of the actual first frame ! Meaning it actually using mpdecimate but it also creates 9 more frames of the first.

    


    Is there any way I can filter them out ? So my png results will be only frames that not similar to the previous one ?

    


  • Setting bitrate of video in ffmpeg c++

    9 août 2017, par ngân phạm

    Firstly, I know this is an old question. But I hope someone can help.
    I use FFmpeg to record video from a RTSP stream (the codec is H.264). It works. But I face a problem with the bitrate value. First, I set bitrate like below, but not work :

    AVCodecContext *m_c;
    m_c->bit_rate = bitrate_value;

    Following this question I can set bitrate manually with this command

    av_opt_set(m_c->priv_data, "crf", "39", AV_OPT_SEARCH_CHILDREN);

    But I have to test serveral times to choose value ’39’, which create acceptable video quality. It’s hard to do again if I use another camera setting (image width, height,...).
    I hope there is a way to set bitrate more easily, and adaptively. Could someone help ?