Recherche avancée

Médias (1)

Mot : - Tags -/remix

Autres articles (52)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (9020)

  • ffmpeg command line not working

    5 mars 2016, par Cameron Swyft

    I’m still roughly new to ffmpeg and don’t really understand how its command line works. I have limited knowledge on Encoders and etc so was wondering if you could answer to why this isn’t working

    exec("ffmpeg -i $video->fullPathTemp -f mp4 -codec:v libx264 -preset medium -crf 20 -codec:a copy $video->fullPath 1> block.txt 2>&1");

    This was my old one that worked, if it helps any

    exec("ffmpeg -i $video->fullPathTemp -f mp4 -b 6000k -strict -2 $video->fullPath 2>&1");

    Much help appreciated !

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