Recherche avancée

Médias (33)

Mot : - Tags -/creative commons

Autres articles (82)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

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

Sur d’autres sites (11889)

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

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

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