Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (72)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

Sur d’autres sites (9309)

  • Can not Record screen with headless chrome and FFmpeg

    26 janvier 2018, par Bill.Zhuang

    Before i used xvfb to render chrome, use selenium do button clicks, and use FFmpeg to capture it with -f x11grab.

    Now i want to use headless chrome to render my target site, i found i can not record the screen as before, seems FFmpeg not support yet.

    I have tried an idea like generate lots of screenshots and pipe to FFmpeg -f image2pipe, but it looks bit weird. I’m looking for more "native" way to do that.

    what’s the correct way in do that ? or i still need go back to xvfb solution ?

  • Cannot record screen with headless Chrome and FFmpeg

    26 janvier 2018, par Bill.Zhuang

    Before I used Xvfb to render Chrome, use selenium do button clicks and use FFmpeg to capture it with -f x11grab.

    Now I want to use headless Chrome to render my target site. I found I cannot record the screen as before. It seems FFmpeg doesn’t support it yet.

    I have tried an idea like generate lots of screenshots and pipe to FFmpeg -f image2pipe, but it looks bit weird. I’m looking for more "native" way to do that.

    What’s the correct way in do that ? Or do I need to go back to Xvfb solution ?

  • How to record UDP stream with FFMPEG in chunks ?

    30 janvier 2018, par user1394281

    I’m looking for a way to record a video UDP stream using ffmpeg but in 10mn chunks.
    I currently use the following to get 10mn of video (with h264 transcoding).

    "ffmpeg -i udp ://239.0.77.15:5000 -map 0:0 -map 0:1 -s 640x360 -vcodec libx264 -g 100 -vb 500000 -r 25 -strict experimental -vf yadif -acodec aac -ab 96000 -ac 2 -t 600 -y /media/test.m4 "

    My problem is that using command line ffmpeg needs time to resync with the udp stream loosing 2 seconds of video each time. Is it normal ?

    Any idea if there is a way to do it in command line or should I tried to use the ffmpeg API ?

    Thanks in advance