Recherche avancée

Médias (91)

Autres articles (54)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • Prérequis à l’installation

    31 janvier 2010, par

    Préambule
    Cet article n’a pas pour but de détailler les installations de ces logiciels mais plutôt de donner des informations sur leur configuration spécifique.
    Avant toute chose SPIPMotion tout comme MediaSPIP est fait pour tourner sur des distributions Linux de type Debian ou dérivées (Ubuntu...). Les documentations de ce site se réfèrent donc à ces distributions. Il est également possible de l’utiliser sur d’autres distributions Linux mais aucune garantie de bon fonctionnement n’est possible.
    Il (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (8872)

  • How to convert .mp4 video file to .yuv (YUV420) and vice-versa using FFmpeg and subprocess module in python ?

    7 avril 2020, par Ann Baiju

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

    


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

    


  • 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.