Recherche avancée

Médias (91)

Autres articles (54)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

  • Matplotlib animation with FFmpeg : RuntimeError : No MovieWriters available

    11 décembre 2017, par ib-

    The problem I am getting is in code similar to this example :
    https://matplotlib.org/examples/animation/basic_example_writer.html

    The error :

    RuntimeError : No MovieWriters available occurs at Writer = animation.writers['ffmpeg'] in the example above.

    I am using mac, I have installed ffmpeg using brew, and even installed it with conda even though I am not using anaconda for this particular code.

    I am positive that it is installed - I have used it in terminal to change files but it is not working within the program.

    Thanks !

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