
Recherche avancée
Autres articles (93)
-
Automated installation script of MediaSPIP
25 avril 2011, parTo 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 2011La 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, parLa 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 palcuFix path for jquery.ui.widget in AMD module
-
libavcodec : Implementation of AAC_fixed_decoder (LC-module) [2/4]
30 juin 2015, par Jovan Zelinceviclibavcodec : 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 Guapoi 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('fluent-ffmpeg');
var proc = new ffmpeg({ source: 'uploads/robocop-tlr1_h480p.mov', nolog: false})
.withVideoCodec('libx264')
.withVideoBitrate(800)
.withAudioCodec('libvo_aacenc')
.withAudioBitrate('128k')
.withAudioChannels(2)
.toFormat('mp4')
.saveToFile('output/robocop.mp4',
function(retcode, error){
console.log('file has been converted succesfully');
});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 ?