Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (112)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (12932)

  • How to link libavcodec, libavformat in automake ?

    15 juillet 2014, par user2212461

    I am using the libavcodec and libavformat libraries from ffmpeg in a C++ project. Linking -lavcodec -lavformat with the g++ compiler works fine, but I’m not sure what goes wrong when I try to use the same code compiled in an automake project.

    Working fine :

    g++ -o test -D__STDC_CONSTANT_MACROS -lavcodec -lavformat test.cpp

    Not working Makefile.am :

    binaryname_LDFLAGS= -lavcodec -lavformat

    Error :

    ....
    /usr/lib/gcc/i686-linux-gnu/4.6/../../../i386-linux-gnu/libavformat.a(nut.o):function
    ff_nut_add_sp: error: undefined reference to 'av_tree_node_size'
    /usr/lib/gcc/i686-linux-gnu/4.6/../../../i386-linux-gnu/libavformat.a(nut.o):function
    ff_nut_add_sp: error: undefined reference to 'av_tree_insert'
    /usr/lib/gcc/i686-linux-gnu/4.6/../../../i386-linux-gnu/libavformat.a(nut.o):function
    ff_nut_free_sp: error: undefined reference to 'av_tree_enumerate'
    /usr/lib/gcc/i686-linux-gnu/4.6/../../../i386-linux-gnu/libavformat.a(nut.o):function
    ff_nut_free_sp: error: undefined reference to 'av_tree_destroy'
    /usr/lib/gcc/i686-linux-gnu/4.6/../../../i386-linux-gnu/libavformat.a(rtp.o):function
    ff_rtp_get_payload_type: error: undefined reference to 'av_opt_get_int'
    ...

    also not working :

    LDFLAGS=...-lavcodec -lavformat

    Error :

    src/dsp/audioDecoder.cpp:99: error: undefined reference to 'av_register_all'
    src/dsp/audioDecoder.cpp:101: error: undefined reference to 'avcodec_find_decoder'
    src/dsp/audioDecoder.cpp:109: error: undefined reference to 'avcodec_alloc_context'
    src/dsp/audioDecoder.cpp:120: error: undefined reference to 'avcodec_open2'
    src/dsp/audioDecoder.cpp:125: error: undefined reference to 'av_init_packet'
    src/dsp/audioDecoder.cpp:188: error: undefined reference to 'avcodec_decode_audio3'

    In the second case, if I don’t set any linker, the include header cannot be found so the linker seems somehow recognized.

    make V=1 returns :

    make  all-am
    make[1]: Go to '/path/to/trunk'
    /bin/bash ./libtool --tag=CXX   --mode=link g++  -O2 -lrt -D__STDC_CONSTANT_MACROS   -o binaryname progsrc/binaryname/binaryname-binaryname.o    -lm  -lpthread -ldl -lmygeneratedlibrary
    libtool: link: g++ -O2 -D__STDC_CONSTANT_MACROS -o binaryname progsrc/binaryname/binaryname-binaryname.o  -lm /path/to//trunk/.libs/lmygeneratedlibrary.a -lrt -lavutil -lavcodec -lavformat -lpthread -ldl
    make[1]: Leave '/path/to/trunk'

    What am I doing wrong here ?

  • How to link -lavcodec -lavformat in automake ?

    10 juillet 2014, par user2212461

    I am using the libavcodec and libavformat libraries from ffmpeg in a C++ project. Linking -lavcodec -lavformat with the g++ compiler works fine, but I’m not sure what goes wrong when I try to use the same code compiled in an automake project.

    Working fine :

    g++ -o test -D__STDC_CONSTANT_MACROS -lavcodec -lavformat test.cpp

    Not working Makefile.am :

    export CPPFLAGS="...-lavcodec -lavformat"

    Error :

    ....
    /usr/lib/gcc/i686-linux-gnu/4.6/../../../i386-linux-gnu/libavformat.a(nut.o):function
    ff_nut_add_sp: error: undefined reference to 'av_tree_node_size'
    /usr/lib/gcc/i686-linux-gnu/4.6/../../../i386-linux-gnu/libavformat.a(nut.o):function
    ff_nut_add_sp: error: undefined reference to 'av_tree_insert'
    /usr/lib/gcc/i686-linux-gnu/4.6/../../../i386-linux-gnu/libavformat.a(nut.o):function
    ff_nut_free_sp: error: undefined reference to 'av_tree_enumerate'
    /usr/lib/gcc/i686-linux-gnu/4.6/../../../i386-linux-gnu/libavformat.a(nut.o):function
    ff_nut_free_sp: error: undefined reference to 'av_tree_destroy'
    /usr/lib/gcc/i686-linux-gnu/4.6/../../../i386-linux-gnu/libavformat.a(rtp.o):function
    ff_rtp_get_payload_type: error: undefined reference to 'av_opt_get_int'
    ...

    also not working :

    export LDFLAGS="...-lavcodec -lavformat"

    Error :

    src/dsp/audioDecoder.cpp:99: error: undefined reference to 'av_register_all'
    src/dsp/audioDecoder.cpp:101: error: undefined reference to 'avcodec_find_decoder'
    src/dsp/audioDecoder.cpp:109: error: undefined reference to 'avcodec_alloc_context'
    src/dsp/audioDecoder.cpp:120: error: undefined reference to 'avcodec_open2'
    src/dsp/audioDecoder.cpp:125: error: undefined reference to 'av_init_packet'
    src/dsp/audioDecoder.cpp:188: error: undefined reference to 'avcodec_decode_audio3'

    I am using the following Makefile.am :

    ...
    ./autogen.sh ;
    ./autogen.sh ;
    ...
    export CXXFLAGS="..."
    export CFLAGS="..."
    export CPPFLAGS="..."
    echo ./configure
    ./configure
    chmod +x update_build_version.sh
    ./update_build_version.sh
    make clean &&
    make -j8 ; make install
    ...

    What am I doing wrong here ?

  • doc/general : update libilbc link

    12 janvier 2015, par Lou Logan
    doc/general : update libilbc link
    

    Signed-off-by : Lou Logan <lou@lrcd.com>

    • [DH] doc/general.texi