Recherche avancée

Médias (0)

Mot : - Tags -/inscription3

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (74)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (10101)

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