
Recherche avancée
Autres articles (97)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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. -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (5926)
-
Module not found, ffmpeg not found
5 juin 2020, par Arsh SuriI have being trying to use the ffmpeg module on anaconda for my recent project.
I am unable to import the package for some reason. I have added/installed ffmpeg to my path environment.
I have tried installing the ffmpeg to the anaconda working file, still it shows



ModuleNotFoundError Traceback (most recent call last)
 in 
----> 1 import ffmpeg



ModuleNotFoundError : No module named 'ffmpeg'



How do i proceed with this,


-
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.
-
FFmpeg that can be packaged by Pyinstaller as a module ?
26 avril 2020, par Andy_yeI created a program that would extract a mp3 file from a webm file. It uses FFmpeg as a conversion tool, and when I turn it into a exe file it works well on my computer, but there are some problems.



- 

-
When using a nother computer, in does not work because the FFmpeg is not present
-
When changing location of the FFmpeg, for example, in a folder with my exe, it does not work







so Is there any way to 1.point the python file to the ffmpeg or 2. use some package that includes ffmpeg in itself ?


-