Recherche avancée

Médias (0)

Mot : - Tags -/médias

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

Autres articles (74)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • 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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (11985)

  • Use animation.save with ffmpeg writer within a Python package

    16 janvier 2021, par Logan Yang

    I'm writing a Python package that produces some animated plots. I can successfully use matplotlib.animation.save to save gifs as such :

    


    anim.save(f"./{file}", writer="imagemagick", fps=15)


    


    But if I try to save it to mp4 like this, it doesn't work because I guess it can't find ffmpeg on my system (MacOS)

    


    anim.save(f"./{file}",writer=FFMpegWriter(fps=15))


    


    Error :

    


    MovieWriter stderr:
dyld: Library not loaded: /usr/local/opt/x265/lib/libx265.165.dylib
  Referenced from: /usr/local/bin/ffmpeg
  Reason: image not found
...


    


    My intention is to make it platform agnostic, since it's a Python package I'm writing, I would like it to be portable so that the user can use it out-of-the-box with pip install . Since gif is already working with imagemagick, I'm not sure how to make it work for ffmpeg writer.

    


    I tried pip install ffmpeg in my project but that didn't work. Any suggestion is appreciated !

    


  • Revision 47a2154c0e : Move remaining per-frame data into partition 0 This commit moves a bit of data

    17 octobre 2012, par John Koleszar

    Changed Paths : Modify /vp8/decoder/decodemv.c Modify /vp8/encoder/bitstream.c Modify /vp8/encoder/encodemv.c Move remaining per-frame data into partition 0 This commit moves a bit of data that ended up packed with the modes/mv/residual partition during the change to interleaved encoding into (...)

  • How save an audio buffer with Fluent FFmpeg

    17 juin 2016, par Luke

    I have a Buffer object that contains audio data and I’m wondering if I can save this Buffer through Fluent FFmpeg without writing it to a file temporary first.

    I came across this other question : fluent-ffmpeg module : "end" event does not fire

    Which seems to do what I need but with video, however, this technique doesn’t seem to work for me. I get the following error :

    ffmpeg write error 'Input stream error: not implemented'

    How can I pipe a Buffer directly to Fluent FFmpeg without writing it to a temporary file first ?