
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (54)
-
D’autres logiciels intéressants
12 avril 2011, parOn 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, parMediaspip 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 2013Puis-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.htmlThe 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 JisatsuI 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 ShaikhI 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-FFMpegWhere am i going wrong ?