Recherche avancée

Médias (91)

Autres articles (38)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (3748)

  • Revision b02c4d364f : Increase border size from 96 to 160. This is required because upon downscaling,

    12 juillet 2013, par Ronald S. Bultje

    Changed Paths :
     Modify /vpx_scale/yv12config.h



    Increase border size from 96 to 160.

    This is required because upon downscaling, if a motion vector points
    partially into the UMV (e.g. all minus 1 of 64+7 pixels, i.e. 70),
    then we can point up to 140 pixels into the larger-resolution (2x)
    reference buffer UMV, which means the UMV for reference buffers in
    downscaling needs to be 140 rounded up to the nearest multiple of 32,
    i.e. 160.

    Longer-term, we should probably handle the UMV differently by detecting
    edge coverage on-the-fly and using a temporary buffer for edge extensions
    instead of adding 160 pixels on all sides of the image (which means a
    CIF image uses 3x its own area size for borders).

    Change-Id : I5184443e6731cd6721fc6a5d430a53e7d91b4f7e

  • build ffmpeg with my static lib "undefined reference to" [duplicate]

    7 septembre 2020, par Vassago

    exec

    


    nvcc xtest.cu -c
ar rcs libxtest.a xtest.o


    


    get libxtest.a

    


    dir : /root/work/xtest.cu /root/work/include/xtest.h /root/work/lib/libxtest.a

    


    Then I copy root/work/include/xtest.h root/work/lib/libxtest.a to /root/work/FFmpeg/libavfiler direction
And add my fuc : int test() (which is in xtest.cu) to myfilter.c

    


    next

    


    ./configure \
  --prefix="$HOME/ffmpeg_build" \
  --pkg-config-flags="--static" \
  --extra-cflags="-I/root/work/include" \
  --extra-ldflags="-L/root/work/lib" \
  --extra-libs="-lpthread -lm" \
  --bindir="$HOME/bin" \
  --enable-gpl \
  --enable-gnutls \
  --disable-libaom \
  --enable-libass \
  --disable-libfdk-aac \
  --disable-libfreetype \
  --disable-libmp3lame \
  --disable-libopus \
  --disable-libvorbis \
  --disable-libvpx \
  --enable-nonfree

make


    


    error :

    


    AR  libavfilter/libavfilter.a
LD  ffmpeg_g
libavfilter/libxtest.a(vf_colorcalc.o): In function `colorcale_filter_frame':
/root/work/FFmpeg/libavfilter/vf_colorcalc.c:166: undefined reference to `test'
collect2: error: ld returned 1 exit status
Makefile:114: recipe for target 'ffmpeg_g' failed
make: *** [ffmpeg_g] Error 1



    


    please teach me how to build static lib to FFmpeg

    


  • Including ffmpeg library in AWS Lambda

    30 décembre 2016, par Alex Konetchy

    I’m trying to include the ffmpeg library with AWS.

    drwxrwxrwx 2 root root        0 Dec 22 13:04 bin
       -rwxrwxrwx 1 root root 40166912 Dec 22 11:50 ffmpeg.exe
       -rwxrwxrwx 1 root root       30 Dec 22 13:04 version.sh

    drwxrwxrwx 2 root root        0 Dec 22 16:35 node_modules
    -rwxrwxrwx 1 root root      594 Dec 22 13:03 package.json
    -rwxrwxrwx 1 root root      818 Dec 30 11:04 SplitFrames.js

    Below is what’s in the main js file, SplitFrames.js

    var execute = require('lambduh-execute');
    var validate = require('lambduh-validate');

    process.env['PATH'] = process.env['PATH'] + ':/tmp/:' + process.env['LAMBDA_TASK_ROOT']

    exports.handler = function(event, context, callback) {
       var exec = require('child_process').exec;
       var cmd = 'ffmpeg -version';

       exec(cmd, function(error, stdout, stderr) {
           console.log(stdout);
           callback(null, stdout);
       });
    }

    I test the function in lambda and it outputs nothing. Wondering how to include the ffmpeg library with AWS and node js. Any help is greatly appreciated.