Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (56)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-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 (11936)

  • Module not found, ffmpeg not found

    5 juin 2020, par Arsh Suri

    I 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 osnoz

    I’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_ye

    I 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 ?