
Recherche avancée
Autres articles (97)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (12339)
-
A PHP Error was encountered Severity : Core Warning Message : Module 'ffmpeg' already loaded Filename : Unknown Line Number : 0 Backtrace
3 septembre 2016, par SumonGetting the following error in live
"
A PHP Error was encountered
Severity : Core Warning
Message : Module ’ffmpeg’ already loaded
Filename : Unknown Line Number : 0
Backtrace :".But i did not receive this error in local host. I am using codeigniter 3. Need Some help..
-
Revision 40edab5e39 : mips dsp-ase r2 vp9 decoder convolve module optimizations Change-Id : I401536778
13 septembre 2013, par Parag SalasakarChanged Paths :
Modify /build/make/rtcd.sh
Modify /test/convolve_test.cc
Add /vp9/common/mips/dspr2/vp9_common_dspr2.h
Add /vp9/common/mips/dspr2/vp9_convolve8_avg_dspr2.c
Add /vp9/common/mips/dspr2/vp9_convolve8_avg_horiz_dspr2.c
Add /vp9/common/mips/dspr2/vp9_convolve8_dspr2.c
Add /vp9/common/mips/dspr2/vp9_convolve8_horiz_dspr2.c
Add /vp9/common/mips/dspr2/vp9_convolve8_vert_dspr2.c
Modify /vp9/common/vp9_rtcd_defs.sh
Modify /vp9/vp9_common.mk
mips dsp-ase r2 vp9 decoder convolve module optimizationsChange-Id : I401536778e3c68ba2b3ae3955c689d005e1f1d59
-
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 ?