Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (69)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • 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" (...)

Sur d’autres sites (7636)

  • How to use pipe in ffmpeg within c#

    21 avril 2016, par Andrew Simpson

    I have 100 jpegs.

    I use ffmpeg to encode to a video file which is written to a hard drive.

    Is there a way to pipe it directly to a byte/stream ?

    I am using C# and I am using the process class to initate ffmpeg.

    Thanks

  • Revision ea9b2c0312 : add tile test vectors 1920x1080 vp90-2-08-tile_1x2_frame_parallel.webm vp90-2-

    28 octobre 2013, par James Zern

    Changed Paths :
     Modify /test/test-data.sha1


     Modify /test/test.mk


     Modify /test/test_vector_test.cc



    add tile test vectors

    1920x1080

    vp90-2-08-tile_1x2_frame_parallel.webm
    vp90-2-08-tile_1x2.webm
    vp90-2-08-tile_1x4_frame_parallel.webm
    vp90-2-08-tile_1x4.webm

    vpxenc blue_sky_1080p25.y4m \
    —codec=vp9 -p 2 \
    —frame-parallel=$fpm \
    —tile-columns=$tc \
    —limit=10 \
    —auto-alt-ref=1 \
    —lag-in-frames=5 \
    —target-bitrate=2500

    Change-Id : Id9c94b722cc553a6865d443a94e8482c78b038bb

  • Ffmpeg compilation fails due to undefined symbol _x264_encoder_open_112 for architecture x86_64

    23 février 2012, par Saptarshi Biswas

    I am compiling ffmpeg on Snow Leopard from source. Using Macport is not an option since I have some custom modification in ffmpeg. The make commands are :

    $ ./configure --enable-gpl --enable-libmp3lame --enable-static \
               --disable-shared --enable-libx264 --enable-pthreads \
               --disable-doc --enable-avfilter
    $ make

    The error :

    CC  ffplay.o
    ffplay.c: In function ‘SDL_main’:
    ffplay.c:3157: warning: assignment discards qualifiers from pointer target type
    LD  ffplay_g
    Undefined symbols for architecture x86_64:
     "_x264_encoder_open_112", referenced from:
         _X264_init in libavcodec.a(libx264.o)
    ld: symbol(s) not found for architecture x86_64
    collect2: ld returned 1 exit status
    make: *** [ffplay_g] Error 1

    I have compiled libx264 from source, which went fine.

    $ cd x264-snapshot-20101228-2245; ./configure && make && sudo make install

    ... and it contains the symbol "_x264_encoder_open_112"

    $ nm ./libx264.a | grep _x264_encoder_open_112
    0000000000003ef0 T _x264_encoder_open_112
    000000000000d7b0 S _x264_encoder_open_112.eh

    What might be going wrong ?