Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (112)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (17798)

  • Linking to ffmpeg libraries fails while installing OpenCV

    12 août 2015, par Serhan

    FFMpeg 2.7.2 and all necessary libav* libraries are installed on my Ubuntu 14.04 machine. However, when I try to install OpenCV 2.4.11 (with FFMpeg enabled), I get the following error :

    /usr/bin/ld: cannot find -lavcodec
    /usr/bin/ld: cannot find -lswresample
    /usr/bin/ld: cannot find -lavutil
    /usr/bin/ld: cannot find -lavformat
    /usr/bin/ld: cannot find -lavcodec
    /usr/bin/ld: cannot find -lswresample
    /usr/bin/ld: cannot find -lavutil
    /usr/bin/ld: cannot find -lavformat
    collect2: error: ld returned 1 exit status
    make[2]: *** [bin/opencv_annotation] Error 1
    make[1]: *** [apps/annotation/CMakeFiles/opencv_annotation.dir/all] Error 2
    make: *** [all] Error 2

    I already tried pointing LD_LIBRARY_PATH and PKG_CONFIG_PATH to the locations which contain the FFmpeg libraries. I also tried with OpenCV 3.0 and obtained the same error.

    It seems that there is some kind of incompatibility between these versions of FFMpeg and OpenCV. Is there a workaround for this ?

    EDIT :
    For example locate libavcodec.a outputs :

    /home/guel/cvpr2014/bin/dependencies/ffmpeg-2.4/libavcodec/libavcodec.a
    /home/guel/cvpr2014/bin/dependencies/lib/libavcodec.a
    /home/guel/cvpr2014/bin/dependencies/opencv-2.4.9/3rdparty/lib/libavcodec.a
    /home/guel/ffmpeg_build/lib/libavcodec.a
    /home/guel/git/ffmpeg/libavcodec/libavcodec.a
    /home/guel/mplayer/ffmpeg/libavcodec/libavcodec.a
    /home/guel/projects/mpegflow/dependencies/opencv-2.4.11/3rdparty/lib/libavcodec.a

    So, I have it in multiple places. Is that bad ?

  • Building opencv3 with ffmpeg

    7 novembre 2015, par liuge
    [ 40%] Building CXX object modules/videoio/CMakeFiles/opencv_videoio.dir/src/cap_ffmpeg.cpp.o

    In file included from /home/liuge/opencv-3.0.0/modules/videoio/src/cap_ffmpeg.cpp:45:0:

    /home/liuge/opencv-3.0.0/modules/videoio/src/cap_ffmpeg_impl.hpp: In member function ‘void CvCapture_FFMPEG::close()’:

    /home/liuge/opencv-3.0.0/modules/videoio/src/cap_ffmpeg_impl.hpp:317:36:
    error: ‘avcodec_free_frame’ was not declared in this scope
            avcodec_free_frame(&picture);
                                       ^
    /home/liuge/opencv-3.0.0/modules/videoio/src/cap_ffmpeg_impl.hpp: In member function ‘bool CvCapture_FFMPEG::open(const char*)’:

    /home/liuge/opencv-3.0.0/modules/videoio/src/cap_ffmpeg_impl.hpp:632:43: error: ‘avcodec_alloc_frame’ was not declared in this scope
                picture = avcodec_alloc_frame();
                                              ^

    /home/liuge/opencv-3.0.0/modules/videoio/src/cap_ffmpeg_impl.hpp:635:41: error: ‘PIX_FMT_BGR24’ was not declared in this scope
                        avpicture_get_size( PIX_FMT_BGR24,
                                            ^

    /home/liuge/opencv-3.0.0/modules/videoio/src/cap_ffmpeg_impl.hpp: In member function ‘bool CvCapture_FFMPEG::retrieveFrame(int, unsigned char**, int*, int*, int*, int*)’:

    .......

    it works when i type -D WITH_FFMPEG=OFF
    how do i build CV with FFmpeg ?

  • PHP Play HLS m3u8 File from outside root Nginx FFmpeg

    27 avril 2016, par Krasic

    I have the nginx root is : /home/krasic/wwwdir/

    PHP script on : /home/krasic/wwwdir/stream.php

    and streams folder is on /home/krasic/hls/

    Now the content of m3u8 look like :

    #EXTM3U
    #EXT-X-VERSION:3
    #EXT-X-TARGETDURATION:10
    #EXT-X-MEDIA-SEQUENCE:19
    #EXTINF:10.000000,
    95_19.ts
    #EXTINF:10.000000,
    95_20.ts
    #EXTINF:10.000000,
    95_21.ts
    #EXTINF:10.000000,
    95_22.ts
    #EXTINF:10.000000,
    95_23.ts
    #EXTINF:10.000000,
    95_24.ts

    I can read the m3u8 but cannot output the segments video which exist on the m3u8 file using readfile("/home/krasic/hls/news.m3u8");