
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 (106)
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
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 (...)
Sur d’autres sites (9189)
-
libav avformat_open_input error code -1094995529
17 juin 2015, par mohamedI am using libav to decode njpeg stream, I read each frame as a byte array.
usingAVIOContext
to read the array and make anAVFormatContext
I got 2 frames decoded, the third one, the function
avformat_open_input
returns-1094995529
What is that error code, so I can find out the problem ?
-
FFMPEG : swr_convert error code -22
12 juillet 2014, par HyndrixI am trying to use
swr_convert
to convert audio between different formats. With a given set of parameters theswr_convert
returns-22
.What does this error mean ? Is there somewhere a list of error codes for FFMPEG ? I already checked the
error.h
header file of the FFMPEG project.Regards,
-
Error exporting animation ffmpeg - Matplotlib
4 décembre 2020, par jonboyI'm having issues with exporting an animation using python through anaconda on a Mac. I'm getting the following
RuntimeError
.

RuntimeError: Requested MovieWriter (ffmpeg) not available



Looking at other questions, the main options are to install
ffmpeg
via conda :

conda install -c conda-forge ffmpeg



Or designate the path :


plt.rcParams['animation.ffmpeg_path'] = '/usr/local/bin/ffmpeg'



The second option just returns the same
RuntimeError
. The first option returns a separate error :

BrokenPipeError: [Errno 32] Broken pipe


During handling of the above exception, another exception occurred:

Traceback (most recent call last):

 File "/Users/person/opt/anaconda3/lib/python3.8/site-packages/matplotlib/animation.py", line 1152, in save
writer.grab_frame(**savefig_kwargs)

 File "/Users/person/opt/anaconda3/lib/python3.8/contextlib.py", line 131, in __exit__
self.gen.throw(type, value, traceback)

 File "/Users/person/opt/anaconda3/lib/python3.8/site-packages/matplotlib/animation.py", line 232, in saving
self.finish()

 File "/Users/person/opt/anaconda3/lib/python3.8/site-packages/matplotlib/animation.py", line 368, in finish
self.cleanup()

 File "/Users/person/opt/anaconda3/lib/python3.8/site-packages/matplotlib/animation.py", line 411, in cleanup
raise subprocess.CalledProcessError(

CalledProcessError: Command '['ffmpeg', '-f', 'rawvideo', '-vcodec', 'rawvideo', '-s', '1600x1302', '-pix_fmt', 'rgba', '-r', '10', '-loglevel', 'error', '-i', 'pipe:', '-vcodec', 'h264', '-pix_fmt', 'yuv420p', '-b', '8000k', '-vcodec', 'libx264', '-y', 'test_text.mp4']' died with .



Chasing up this error then refers me back to uninstalling the
ffmpeg
package. But this just leads to the initial error statingffmpeg
isn't available.