Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

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

Autres articles (93)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

  • Participer à sa documentation

    10 avril 2011

    La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
    Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
    Pour ce faire, vous pouvez vous inscrire sur (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (8856)

  • Fix path for jquery.ui.widget in AMD module

    3 juillet 2015, par palcu
    Fix path for jquery.ui.widget in AMD module
  • libavcodec : Implementation of AAC_fixed_decoder (LC-module) [2/4]

    30 juin 2015, par Jovan Zelincevic
    libavcodec : Implementation of AAC_fixed_decoder (LC-module) [2/4]
    

    Add fixed point implementation of functions for generating tables

    Signed-off-by : Nedeljko Babic <nedeljko.babic@imgtec.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/aac.h
    • [DH] libavcodec/aacdectab.h
    • [DH] libavcodec/aactab.c
    • [DH] libavcodec/aactab.h
    • [DH] libavcodec/cbrt_fixed_tablegen.c
    • [DH] libavcodec/cbrt_tablegen.c
    • [DH] libavcodec/cbrt_tablegen.h
    • [DH] libavcodec/cbrt_tablegen_template.c
    • [DH] libavcodec/sinewin.c
    • [DH] libavcodec/sinewin.h
    • [DH] libavcodec/sinewin_fixed.c
    • [DH] libavcodec/sinewin_fixed_tablegen.c
    • [DH] libavcodec/sinewin_tablegen.c
    • [DH] libavcodec/sinewin_tablegen.h
    • [DH] libavcodec/sinewin_tablegen_template.c
    • [DH] libavcodec/tableprint.h
  • Using Node.js module fluent-ffmpeg to convert video but my files end up corrupt

    19 septembre 2013, par El Guapo

    i am writing a node based media encoding tool and have found a few good node packages that will help me to do this, but the output files are either totally corrupt or it only encodes half the video.

    The main node package i am using is fluent-ffmpeg, and i am trying it with the following code :

    var ffmpeg = require(&#39;fluent-ffmpeg&#39;);

    var proc = new ffmpeg({ source: &#39;uploads/robocop-tlr1_h480p.mov&#39;, nolog: false})
     .withVideoCodec(&#39;libx264&#39;)
     .withVideoBitrate(800)
     .withAudioCodec(&#39;libvo_aacenc&#39;)
     .withAudioBitrate(&#39;128k&#39;)
     .withAudioChannels(2)
     .toFormat(&#39;mp4&#39;)
     .saveToFile(&#39;output/robocop.mp4&#39;,
       function(retcode, error){
           console.log(&#39;file has been converted succesfully&#39;);
    });

    There is not a problem with the source video as i encoded it just fine using FFmpeg normally with the following comand line string (i run it from a batch file) :

    "c:\ffmpeg\bin\ffmpeg.exe" -i %1 -acodec libvo_aacenc -b:a 128k -ac 2 -vcodec libx264 -b:v 800k -f mp4 "../output/robocop2.mp4"

    Any ideas what i am doing wrong here ?