Recherche avancée

Médias (0)

Mot : - Tags -/api

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (54)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (9260)

  • avformat/movenc : Fix segfault upon allocation error

    28 septembre 2020, par Andreas Rheinhardt
    avformat/movenc : Fix segfault upon allocation error
    

    Reviewed-by : Jan Ekström <jeebjp@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/movenc.c
  • avfilter/delogo : Check that logo area is inside the picture

    10 mai 2016, par Jean Delvare
    avfilter/delogo : Check that logo area is inside the picture
    

    We can only remove the logo if it is inside the picture. We need at
    least one pixel around the logo area for interpolation.

    Fixes ticket #5527 (Delogo crash with x=0 and/or y=0).

    Signed-off-by : Jean Delvare <jdelvare@suse.com>
    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavfilter/vf_delogo.c
  • Serving a single JPEG using ffserver

    4 mai 2016, par Magnus

    I have a setup where a local application writes a sequence of JPEG images into a FIFO (Unix named pipe on Linux). On the other end I have ffmpeg picking up the sequence and passing it into an instance of ffserver :

    % ffmpeg -i fifo.mjpeg http://127.0.0.1:8090/feed.ffm

    The configuration for ffserver looks like this :

    HTTPPort 8090
    HTTPBindAddress 0.0.0.0
    MaxHTTPConnections 20
    MaxClients 10
    MaxBandwidth 1000

    <feed>
     File /tmp/feed.ffm
     FileMaxSize 200k

     ACL allow 127.0.0.1
    </feed>

    <stream>
     Format mpjpeg
     Feed feed.ffm

     VideoSize 960x600
     VideoFrameRate 2
     VideoIntraOnly
     Strict -1

     NoAudio
     NoDefaults
    </stream>

    This works fine, I can point my web browser to http://127.0.0.1:8090/stream.mpjpeg and see the video.

    Now I want to add a way to download a single JPEG (I think of it as snapshot of the video). I added the following to the ffserver configuration :

    <stream>
     Format singlejpeg
     Feed feed.ffm

     VideoSize 960x600
     VideoFrameRate 2
     VideoIntraOnly
     Strict -1

     NoAudio
     NoDefaults
    </stream>

    That only sort of works. Sure, if I point my browser to http://127.0.0.1:8090/image.jpg I do so a still picture from the video, but the browser never stops loading !

    Indeed, if I run wget http://127.0.0.1:8090/image.jpg I see that the MIME type is good (image/jpeg), but there seems to be no end to the image.

    Am I missing something in my configuration that makes ffserver sending more than a single image ?

    I should add I’ve tried this setup on both 2.8.6 (Debian Jessie, package comes from jessie-backports) and 3.0 (Arch Linux), with the same result in both cases.