Recherche avancée

Médias (1)

Mot : - Tags -/bug

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 (13425)

  • Demos : Remove the dead link to psyrens.com

    16 décembre 2014, par jzaefferer
    Demos : Remove the dead link to psyrens.com
  • FFMPEG : undefined reference to `avcodec_register_all' does not link

    30 juin 2014, par Belov

    So I have a very sample code for trying to decode a FFMPEG video stream.
    My problem is avcodec does not want to link, to do so I made a clean installation of Ubuntu 13.04. I have build ffmpeg from source following the guide here : https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu

    I just want to compile my file. Note that my ubuntu does not have any implementations or header files for avcodec. The command line I use is :

    gcc -I/home/USER/ffmpeg_build/include -L/home/USER/ffmpeg_build/lib -lavcodec -o test.exe Downloads/auv/src/dronerosvideo/src/ar2.cpp

    /tmp/ccKTprFq.o : In function `fetch_and_decode(int, int, bool)’ :

    ar2.cpp :(.text+0x36e) :
    undefined reference to `avcodec_register_all’

    ar2.cpp :(.text+0x378) :
    undefined reference to `av_log_set_level’

    ar2.cpp :(.text+0x382) :
    undefined reference to `avcodec_find_decoder’

    ar2.cpp :(.text+0x3b1) :
    undefined reference to `avcodec_alloc_context3’

    ar2.cpp :(.text+0x3d6) :
    undefined reference to `avcodec_open2’

    ar2.cpp :(.text+0x46d) :
    undefined reference to `av_init_packet’

    ar2.cpp :(.text+0x50a) :
    undefined reference to `avcodec_decode_video2’

    ar2.cpp :(.text+0x534) :
    undefined reference to `av_free_packet’

    /tmp/ccKTprFq.o :(.eh_frame+0x13) : undefined reference to
    `__gxx_personality_v0’

    collect2 : error : ld returned 1 exit status

    Just for a sane test if I remove the -L argument compiler says :

    /usr/bin/ld: cannot find -lavcodec

    Which means that the linker finds the library in /home/USER/ffmpeg_build/lib. Also if we check the library for implementation it exists :

    nm ffmpeg_build/lib/libavcodec.a | grep "register_all"
    0000000000000000 T avcodec_register_all

    Also as advised since it is C++ I have exten "C" around the include of the library.

    At this point I’m falling out of any ideas at all, why exactly compilation fails ?

  • x86 : h264dsp : Fix link failure with optimizations disabled

    25 juin 2014, par Diego Biurrun
    x86 : h264dsp : Fix link failure with optimizations disabled
    

    With optimzations disabled compilers have trouble doing dead code
    elimination on ’if (foo && 0)’ expressions, while ’if (0 && foo)’
    still works, so use the latter to avoid problems.

    Bug-Id : 707

    • [DH] libavcodec/x86/h264dsp_init.c