Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (60)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (6118)

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

  • 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

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