Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

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

Autres articles (35)

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

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

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (7059)

  • How to route FFMPEG screen capture output to Python for OpenCV processing ?

    16 décembre 2016, par Bitani

    I am trying to capture the screen of a Mac, specifically game windows, and process them in real-time using OpenCV. I currently have it working with pyscreenshot and a conversion to a numpy array, but the max framerate of this method, on any system, appears to be around 10 FPS.

    Obviously with games it would be very beneficial to be able to process 30+ FPS, and so I found that FFMPEG could record the screen using this command :

    ffmpeg -y -f avfoundation -capture_cursor 1 -i "1" -pix_fmt yuv420p -vf scale=1024:-1 -r 30 out.mp4

    That will write the screen to a file, out.mp4, with a width of 1024 and a frame rate of 30 FPS. Works perfectly ! But now I’ve searched and searched and searched for a method to route FFMPEG’s output to Python and.. no luck.

    If anybody knows of a way to do this I would be greatly appreciative, as I’ve been trying to solve this for quite a while !

    Thanks, and happy holidays !

  • Stream part of the screen on linux

    1er juin 2014, par Boris Brodski

    How can I stream part of my screen using ffmpeg (avconv) on Linux ?

    I can record part of my screen :

    ffmpeg -f alsa -ac 1 -i pulse -acodec pcm_s16le -f x11grab -r 24 -s 100x200 -i :0.0+20,30 ...

    But trying to stream it adding

    -f rtp rtp://127.0.0.1:1234

    doesn’t work. ffmpeg starts to stream, but ffplay complains

    $ ffplay rtp://127.0.0.1:1234
    [rtp @ 0xaf8026a0] Unable to receive RTP payload type 96 without an SDP file describing it
    [rtp @ 0xaf8026a0] Estimating duration from bitrate, this may be inaccurate
    Input #0, rtp, from 'rtp://127.0.0.1:8080':
     Duration: N/A, bitrate: N/A
    rtp://127.0.0.1:8080: could not open codecs
    1401611400.39 A-V:  0.000 s:0.0 aq=    0KB vq=    0KB sq=    0B f=0/0  

    What do I missing ?

  • How to stop ffmpeg when get a long black screen

    4 juin 2018, par sonseiya

    i want to know if there is a way to stop ffmpeg command when a black frame in an interval of time is detected.

    I mean, if the video i am getting is a black screen and it is of 3 seconds of duration, for example, i would like ffmpeg stops.

    Regards