Recherche avancée

Médias (91)

Autres articles (42)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (7952)

  • Révision 17456 : style manquant pour annuler le float pose plus haut sur les .haut

    20 mars 2011, par cedric -
  • Translate Command Line Input to Node Fluent ffmpeg

    20 mars 2016, par EladA

    I want to run the ffmpeg command line using node-fluent-ffmpeg (compile png images to a video) :

    ffmpeg -framerate 20 -i static/tmp/img%03d.png -c:v libx264 -r 30 -pix_fmt yuv420p out.mp4  

    I was trying the following, but with no luck.

    var ffmpeg = require('fluent-ffmpeg');

    var proc = new ffmpeg()
       .addInputOption('-framerate 20')
       .addInputOption('static/tmp/img%03d.png')
       .addInputOption('-c:v libx264')
       .addInputOption('-r 30')
       .addInputOption('-pix_fmt yuv420p out.mp4')
       .output('outputfile.mp4')
       .output(stream);

    I looked all over the github repository and all the Q/A on stackoverflow, but with no proper answer.

    How can I format the command line to js code ?

    Thanks !

  • ffmpeg : add progress speed to status line and report

    11 décembre 2015, par Moritz Barsnick
    ffmpeg : add progress speed to status line and report
    

    This adds a computation of the progress speed versus realtime ("Nx")
    to the status line and to the report log. It uses the progress time
    as already calculated for total output time as a base.

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] ffmpeg.c