Recherche avancée

Médias (1)

Mot : - Tags -/intégration

Autres articles (112)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

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

Sur d’autres sites (15965)

  • avutil/xga_font_data : add getters to access the shared arrays

    22 juillet, par James Almer
    avutil/xga_font_data : add getters to access the shared arrays
    

    And stop exposing the arrays on the next major bump.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavutil/xga_font_data.c
    • [DH] libavutil/xga_font_data.h
  • download video by ffmpeg access denied [closed]

    14 septembre 2021, par Vĩnh Hội
  • OpenCV access live streaming from FFserver delay at start

    2 mai 2022, par Sandro Pellizza

    I've already posted this question on superuser.com (https://superuser.com/questions/1718608/ffmpeg-live-streaming-to-ffserver-delay-at-start), but since part of this question is OpenCV related, they suggested me to post it also here.

    &#xA;

    I'm trying to achieve a simple camera streaming using FFMpeg and FFserver. I have two slightly different systems acting as source, both Debian OS :

    &#xA;

    the first one runs ffmpeg 3.4.8, as indicated in figure 1

    &#xA;

    First system FFMPEG version

    &#xA;

    the second one runs ffmpeg 2.8.17, as indicated in figure 2

    &#xA;

    Second system FFMPEG version

    &#xA;

    The ffmpeg command used to send the stream to to ffserver is the following, identical for both systems :

    &#xA;

    ffmpeg -re -f v4l2 -s 640x360 -thread_queue_size 20 -probesize 32 -i /dev/video0 -threads 4 -fflags nobuffer -tune zerolatency http://myserverIP:myserverPort/liveFeed.ffm

    &#xA;

    In order to see the stream result I access the live stream from a third system using openCV pointing to the server URL :

    &#xA;

    VideoCapture videoCap = new VideoCapture("http://myserverIP:myserverPort/liveFeed.flv"); &#xA;...&#xA;videoCap.read(imageInput);&#xA;

    &#xA;

    and start grabbing the incoming frames from the stream.

    &#xA;

    The wierd thing happens here :

    &#xA;

      &#xA;
    • with the first system the video stream visualized through openCV is pretty much real time, with 1-2 seconds of delay from the original source.
    • &#xA;

    • with the second system the video stream is affected by a variable delay which is comparable with the elapsed time between the start time of the stream source and the start time of the stream acquisition with openCV (for example : if I start the source stream at 12:00:00 and wait 30 seconds before access the stream with openCV, I have a delay of about 30 seconds shown on the third system)
    • &#xA;

    &#xA;

    The ffserver configuration is the following

    &#xA;

    HTTPBindAddress 0.0.0.0&#xA;MaxHTTPConnections 2000&#xA;MaxClients 1000&#xA;MaxBandwidth 6000&#xA;CustomLog -&#xA;#NoDaemon&#xA;&#xA;<feed>&#xA;    File /tmp/SCT-0001_3.ffm&#xA;    FileMaxSize 5M&#xA;</feed>&#xA;&#xA;<stream>&#xA;    Format flv&#xA;    Feed liveFeed.ffm&#xA;&#xA;    VideoCodec libx264&#xA;    VideoFrameRate 20&#xA;    VideoBitRate 200&#xA;    VideoSize 640x360&#xA;    AVOptionVideo preset superfast&#xA;    AVOptionVideo tune zerolatency&#xA;    AVOptionVideo flags &#x2B;global_header&#xA;&#xA;    NoAudio&#xA;</stream>&#xA;&#xA;##################################################################&#xA;# Special streams&#xA;##################################################################&#xA;<stream>&#xA;    Format status&#xA;    # Only allow local people to get the status&#xA;    ACL allow localhost&#xA;    ACL allow 192.168.0.0 192.168.255.255&#xA;</stream>&#xA;&#xA;# Redirect index.html to the appropriate site&#xA;<redirect>&#xA;    URL http://www.ffmpeg.org/&#xA;</redirect> &#xA;

    &#xA;

    Any help to spot the problem would be great ! Thanks

    &#xA;