Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (99)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 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, par

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

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

Sur d’autres sites (11751)

  • aarch64 : Use .data.rel.ro for const data with relocations

    16 novembre 2014, par Martin Storsjö
    aarch64 : Use .data.rel.ro for const data with relocations
    

    This reverts commit c00365b46d464ce47716315c1801818d811bdb9a
    in addition to using a different section.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavcodec/aarch64/fft_neon.S
    • [DH] libavcodec/aarch64/opus_imdct_neon.S
    • [DH] libavutil/aarch64/asm.S
  • I keep having the message "MovieWriter ffmpeg unavailable ; using Pillow instead." I want to save as MP4 an animation

    6 décembre 2023, par Enrra

    I am doing an animation :

    &#xA;

    animation = FuncAnimation(fig, update, frames=len(time_values), interval=250, repeat=False)&#xA;with a simple frame update function, I want it save it as a MP4 format :

    &#xA;

    animation.save(f&#x27;{save_path}/heat_map.mp4&#x27;, writer=&#x27;ffmpeg&#x27;, fps=10)

    &#xA;

    I get the error message "MovieWriter ffmpeg unavailable ; using Pillow instead."

    &#xA;

    I tried to do the following :

    &#xA;

    plt.rcParams[&#x27;animation.ffmpeg_path&#x27;] =&#x27;C:\\ProgramData\\Anaconda3\\LIB\\site-packages\\ffmpeg&#x27;&#xA;FFwriter = animation.FFMpegWriter()&#xA;animation.save(f&#x27;{save_path}/heat_map.mp4&#x27;, writer = FFwriter, fps=10)&#xA;

    &#xA;

    This gets me an error message :

    &#xA;

    Traceback (most recent call last):&#xA;  File "Graph_V1-8.py", line 406, in <module>&#xA;    FFwriter = animation.FFMpegWriter()&#xA;AttributeError: &#x27;FuncAnimation&#x27; object has no attribute &#x27;FFMpegWriter&#x27;&#xA;</module>

    &#xA;

    and I also tried to do the following :&#xA;animation.save(f&#x27;{save_path}/heat_map.mp4&#x27;, writer=&#x27;ffmpeg&#x27;, fps=10, codec=&#x27;libx264&#x27;)

    &#xA;

    which also get me the error :&#xA;"MovieWriter ffmpeg unavailable ; using Pillow instead."

    &#xA;

    When I write :

    &#xA;

    pip install ffmpeg&#xA;Requirement already satisfied: ffmpeg in c:\programdata\anaconda3\lib\site-packages (1.4)&#xA;

    &#xA;

    Thank you in advance for your help

    &#xA;

  • ffmpeg is buffering 10 seconds of data every 10 seconds, but I need 1 second of data every second

    30 juillet 2014, par user306517

    I am trying to render an URL, and when I use ffmpeg to do it, it is giving me 10 seconds of data, every 10 seconds. I need to get the data in a way that I am getting 1 second of data every second.

    it looks like the URL i am trying to read from is a "m3u8" url, which contains a bunch of m3u8 files, which contain .ts files (transport stream).

    any help here would be appreciated.

    per suggestion - my ffmpeg command looks like this :

    ffmpeg -y -i ".....m3u8" -ar 32000 -ac 1 -acodec pcm_s16le /tmp/foo.wav