Recherche avancée

Médias (1)

Mot : - Tags -/berlin

Autres articles (89)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP 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 (...)

Sur d’autres sites (11796)

  • A PHP Error was encountered Severity : Core Warning Message : Module 'ffmpeg' already loaded Filename : Unknown Line Number : 0 Backtrace

    3 septembre 2016, par Sumon

    Getting 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 Salasakar

    Changed 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 optimizations

    Change-Id : I401536778e3c68ba2b3ae3955c689d005e1f1d59

  • 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('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 ?