Recherche avancée

Médias (91)

Autres articles (68)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (9856)

  • Remove support for metadata plugin, replace with data-rule- and data-msg- (added in 907467e8) properties.

    23 novembre 2012, par mlynch

    m demo/custom-messages-data-demo.html m demo/index.html m jquery.validate.js - lib/jquery.metadata.js m test/index.html m test/rules.js m test/test.js Remove support for metadata plugin, replace with data-rule- and data-msg- (added in 907467e8) (...)

  • Save an animation on Python

    11 novembre 2018, par Nausicaa

    I am trying to save a simple animation maid by a Python code using the following commands :

       anim = animation.FuncAnimation(fig, animate, init_func=init,
                                      frames = 100, interval = 20, blit = True)
       anim.save('basic_animation.mp4', fps=30, extra_args=['-vcodec', 'libx264'])

    But Python returns :

    C:\Program Files\WinPython-64bit-3.6.1.0Qt5\python-3.6.1.amd64\lib\site-packages\matplotlib\animation.py:971: UserWarning: MovieWriter ffmpeg unavailable
    warnings.warn("MovieWriter %s unavailable" % writer)

    Traceback (most recent call last):

    File "", line 1, in <module>
    runfile('D:/Documents/Informatique/Spyder/test_anim2d.py', wdir='D:/Documents/Informatique/Spyder')

    File "C:\Program Files\WinPython-64bit-3.6.1.0Qt5\python-3.6.1.amd64\lib\site-packages\spyder\utils\site\sitecustomize.py", line 880, in runfile
    execfile(filename, namespace)

    File "C:\Program Files\WinPython-64bit-3.6.1.0Qt5\python-3.6.1.amd64\lib\site-packages\spyder\utils\site\sitecustomize.py", line 102, in execfile
    exec(compile(f.read(), filename, 'exec'), namespace)

    File "D:/Documents/Informatique/Spyder/test_anim2d.py", line 34, in <module>
    anim.save('basic_animation.mp4', fps=30, extra_args=['-vcodec', 'libx264'])

    File "C:\Program Files\WinPython-64bit-3.6.1.0Qt5\python-3.6.1.amd64\lib\site-packages\matplotlib\animation.py", line 978, in save
    raise ValueError("Cannot save animation: no writers are "

    ValueError: Cannot save animation: no writers are available. Please install ffmpeg to save animations.
    </module></module>

    However, I have installed ffmpeg so I have no clue...

    Maybe it is in the wrong directory ? I installed it in C :\Program Files\WinPython-64bit-3.6.1.0Qt5\scripts

    Thanks !

  • How to save fluent-ffmpeg output to URL ?

    10 avril 2024, par volume one

    I am using fluent-ffmpeg to process videos and I want to save the final output file to a remote URL, not on the local server.

    &#xA;

    Here is the code :

    &#xA;

       ffmpeg(&#x27;/path/to/file.mp4&#x27;)&#xA;      .videoCodec(VideoCodec)&#xA;      .audioCodec(AudioCodec)&#xA;      .format(&#x27;mp4&#x27;)&#xA;      .output(&#x27;http://localhost:8080/output.mp4&#x27;) // This does not work at all&#xA;      .output(&#x27;output.mp4&#x27;) // this works but saves file locally which I&#x27;m not allowed to do&#xA;      .run();&#xA;

    &#xA;

    How can I save the file directly to a remote location (that is, without saving it locally) ? I know you can stream the output using pipe, but I cannot use streams because then ffpmeg will not set the duration value of the file.

    &#xA;