Recherche avancée

Médias (91)

Autres articles (50)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

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

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (8023)

  • How to properly link ffmpeg project in eclipse linux

    23 juin 2015, par user3177342

    I have a little test project on linux eclipse using ffmpeg.
    It is oke to make it using command line

    g++ -o m_vector -I/usr/include -I/usr/local/include m_vector.cpp -lavformat -lavcodec -lavutil -lm -lz -lva -lpthread

    but in eclipse while linking i get a big list of errors

    /home/user/projects/ffmpeg/libavcodec/internal.h:194: undefined reference to `av_rescale_q'
    /usr/local/lib/libavcodec.a(mpegvideo.o): In function `update_picture_tables':
    /home/user/projects/ffmpeg/libavcodec/mpegvideo.c:663: undefined reference to `av_buffer_unref'
    /home/user/projects/ffmpeg/libavcodec/mpegvideo.c:663: undefined reference to `av_buffer_ref'
    /home/user/projects/ffmpeg/libavcodec/mpegvideo.c:664: undefined reference to `av_buffer_unref'
    /home/user/projects/ffmpeg/libavcodec/mpegvideo.c:664: undefined reference to `av_buffer_ref'
    /home/user/projects/ffmpeg/libavcodec/mpegvideo.c:665: undefined reference to `av_buffer_unref'
    /home/user/projects/ffmpeg/libavcodec/mpegvideo.c:665: undefined reference to `av_buffer_ref'

    and so on

    I’ve aded the needed libs in project and i use "extern c". My project knows also about needed includes. Digging internet did not give the answer.

  • Trouble compiling x264 on a mac OS X

    26 juin 2013, par Bernt Habermeier

    I'm having trouble compiling x264 (http://www.videolan.org/developers/x264.html) on a Mac with the command line tools from XCode. The following steps don't work :

    git clone git://git.videolan.org/x264.git
    cd x264
    ./configure
    make

    That ends up giving you the following error :

    gcc -Wshadow -O3 -ffast-math -m64  -Wall -I. -I. -falign-loops=16 -mdynamic-no-pic -arch x86_64 -std=gnu99 -mpreferred-stack-boundary=5  -I/usr/local/include    -I/usr/local/include   -fomit-frame-pointer -fno-tree-vectorize   -c -o x264.o x264.c
    In file included from ./extras/cl.h:27,
                    from common/opencl.h:31,
                    from common/common.h:209,
                    from x264.c:33:
    ./extras/cl_platform.h:64:10: warning: #warning This path should never happen outside of internal operating system development. AvailabilityMacros do not function correctly here!
    In file included from common/opencl.h:31,
                    from common/common.h:209,
                    from x264.c:33:
    ./extras/cl.h:1165: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘cl_mem’
    ./extras/cl.h:1175: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘cl_mem’
    ./extras/cl.h:1187: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘cl_int’
    ./extras/cl.h:1191: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘cl_int’
    ./extras/cl.h:1196: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘cl_int’
    ./extras/cl.h:1199: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘cl_int’
    ./extras/cl.h:1202: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘void’
    make: *** [x264.o] Error 1

    How do you compile x264 for Mac OS X with the latest XCode Command Line tools ?

  • Write two webcam video with avconv

    16 août 2014, par Jones

    Have problem capture video with avconv

    I using this commands video0 in shell 0 and video1 in shell 1

    avconv -f video4linux2 -i /dev/video0 video0.avi
    avconv -f video4linux2 -i /dev/video1 video1.avi

    But with start second video recorder message

    /dev/video1 : No space left on device

    Question there is the possibility of recording two videos simultaneously ?

    Other

    First capture of video0.avi is work perfectly, but if I interrupt with Ctrl+C and try execute same command the video is not captured.

    This message displayed in shell

    uvcvideo : Failed to resubmit video URB (-27)

    The process still running ?

    Removing webcam and reconnect work fine in first time.