
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (56)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (9757)
-
How to convert .mp4 video file to .yuv (YUV420) and vice-versa using FFmpeg and subprocess module in python ?
7 avril 2020, par Ann BaijuI have to convert a .mp4 video file to .yuv (YUV420) and vice versa in my python program. How do you do this using FFmpeg and subprocess module in python ?


-
Matplotlib : 'module' object has no attribute 'FFMpegWriter' / 'Writer'
23 février 2015, par osnozI’m trying to animate a graph with Matplotlib, something which I’ve done on a previous system. My code, however, seems to fail with my current setup.
Here’s the problem :
Writer = animation.writers['ffmpeg']
Traceback (most recent call last) :
File "/Users/oliversanders/Documents/Code/PyCharm/plottools/animationTest.py", line 17, in
Writer = animation.writers[’ffmpeg’]
AttributeError : ’module’ object has no attribute ’writers’Or alternatively :
mywriter = animation.FFMpegWriter(fps=15)
Traceback (most recent call last) :
File "/Users/oliversanders/Documents/Code/PyCharm/plottools/animatedPointPlotter.py", line 101, in
mywriter = animation.FFMpegWriter(fps=15)
AttributeError : ’module’ object has no attribute ’FFMpegWriter’I’ve just re-installed matplotlib (1.4.2) and ffmpeg (2.5.3) for good measure. I’ve also deleted all .pyc files from matplotlib’s directory to make sure they aren’t messing anything up.
I’ve looked around but been unable to find a solution. See also :
Using FFmpeg and IPython, What could be wrong in saving the following animation in Python ?.Thanks in advance.
-
Distributing a Python module with ffmpeg dependency
22 janvier 2015, par arafasseRookie software developer here. I’m working on a Python module that harnesses some functionality from the FFmpeg framework - specifically, the ebur128 filter function. Ideally the module will stand on its own as an independent, platform agnostic tool for verifying that audio clips comply with EBU loudness standards. It’s being designed so that end users need only perform one simple, (hopefully !) painless installation procedure, which will encompass the installation of both the FFmpeg libraries and my Python wrapper/GUI.
I apologize for the rather vague question, but does anyone have general advice for creating Python module with external dependencies, or specific advice for standardizing the FFmpeg installation across platforms ? Distutils seems pretty helpful – are there other guidelines or standard practices for developing a neatly packaged Python tool ? I want to minimize any installation headaches for end users.
Thanks very much.