Recherche avancée

Médias (0)

Mot : - Tags -/flash

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (59)

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

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

Sur d’autres sites (10668)

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