Recherche avancée

Médias (91)

Autres articles (108)

  • 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 ;

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (11505)

  • FFmpeg recorded video is dark with Xvfb and chrome headless on Centos 7

    15 juin 2023, par narsy4

    I am trying to do a video recording of headless chrome session on Centos 7 (Amazon EC2 instance) using ffmpeg. I have installed ffmpeg, Xvfb and google chrome on the machine. I started Xvfb on :99, verified the display using xdpyinfo and started chrome. However when I run the ffmpeg cmd to capture the video (no errors in ffmpeg debug logs), the output is dark with a X sign in the centre of video screen. What am I doing wrong here ? Any help is appreciated.

    


    **Xvfb and chrome commands**
Xvfb :99 -screen 0 1920x1080x24 &
export DISPLAY=:99
google-chrome --headless --disable-gpu --no-sandbox --start-maximized --window-size=1920x1080 https://www.google.com



    


    **FFmpeg command**
ffmpeg -video_size 1920x1080 -framerate 30 -f x11grab -i :99 -loglevel debug -pix_fmt yuv420p /tmp/video.mp4



    


    dark video

    


    Searched for and read a few threads on this, but couldn't get it to work.

    


  • NuGet : where is AForge.Video.FFMPEG

    1er juin 2018, par Evgeniy175

    Good day. I want to use AForge.Video.FFMPEG in my project. So, i try to find it on the NuGet. But i’m not found it here.

    So, here it exists : https://code.google.com/archive/p/aforge/downloads

    But, if i want to restore it automatically from nuget (after git clone and rebuild), it’s not allowed in this case ? Only store this dll in project and push/fetch it always ?

  • Dependency in requirement.txt not installed

    5 mars 2017, par Cheng Jaycee Jiang

    I need to deploy a flask app to google app engine.
    I used docker and there lines are in Dockerfile :

    ADD requirements.txt /app/requirements.txt
    RUN pip install -r /app/requirements.txt

    In requirements.txt file :

    Flask==0.12
    gunicorn==19.6.0
    boto==2.46.1
    gcs-oauth2-boto-plugin==1.8
    ffmpeg-normalize

    It is supposed to install install all dependencies. But somehow "ffmpeg-normalize" is not installed in google app engine instances.

    Can anyone help me with that ?

    If there is another better way doing the package installation, I will be happy to go with as well. Thanks !!