
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (55)
-
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 -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...) -
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)
Sur d’autres sites (7246)
-
Python : Matplotlib Animation FFmpeg, RuntimeError : No MovieWriters available
10 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 !
-
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.