Recherche avancée

Médias (3)

Mot : - Tags -/pdf

Autres articles (81)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • 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

Sur d’autres sites (4661)

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