Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (110)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (10352)

  • How can I notify that ffmpeg started recording ? [closed]

    20 avril 2021, par Jisatsu

    I have a little script that runs ffmpeg to record my desktop. And I want this script to send me notification that recording has been started. I tried to add && operator but it seems that it runs second command only when first command ended.

    


    screencast.sh :

    


    #!/bin/sh

ffmpeg -y \
-f x11grab \
-s 1920x1080 \
-i :0.0 \
-f alsa -i default \
-c:v h264 \
-c:a aac $1 && notify-send "Started recording"
            ^^^^^^^^^^^^^^


    


    In addition, I want to know how can I stop this script correctly, if I run it outside of terminal (for ex. from dmenu). And can I get some notification that "Recording has been stoped" or smth ?

    


    I'll be glad to hear all suggestions. Thanks.

    


  • getting exception Your FFProbe version is too old and does not support `-help` option

    26 mai 2015, par Sameer Shaikh

    I installed ffmpeg by doing sudo apt-get install ffmpeg

    From a terminal, when I run /usr/bin/ffprobe -help it runs properly, but it is not running from my package. Instead I get the exception in the title : Your FFProbe version is too old and soes not support '-help'

    I am using laravel and i have installed this package https://github.com/PHP-FFMpeg/PHP-FFMpeg

    Where am i going wrong ?

  • building ffmpeg library for android on linux

    27 juillet 2015, par Harpreet Kaur

    I am trying to install ffmpeg libaray on linux for my android application.
    The link which I am following is https://www.assetbank.co.uk/support/documentation/install/ffmpeg/
    I have successfully completed all the steps except the last one
    i.e " Run "/sbin/ldconfig" as root. "

    It is showing the following error in the linux terminal :
    anirudh@anirudh-System-Product-Name :/sbin$ ldconfig
    /sbin/ldconfig.real : Can’t create temporary cache file /etc/ld.so.cache : Permission denied

    Please comment if anyone can suggest something regarding this issue.