Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (70)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (10387)

  • Revision 3bcc2af8cd : Some data type changes in vp9_idct.c Resolves a visual studio warning, and incl

    4 octobre 2014, par Deb Mukherjee

    Changed Paths :
     Modify /vp9/common/vp9_idct.c



    Some data type changes in vp9_idct.c

    Resolves a visual studio warning, and includes some cleanups.

    Change-Id : I6a7576ef323c475b7d1c659800cd82c6cb1fd18d

  • Revision 9c6ce43df6 : Add some indirection to the quantize test Visual Studio and XCode require the a

    4 novembre 2014, par Johann

    Changed Paths :
     Modify /test/quantize_test.cc



    Add some indirection to the quantize test

    Visual Studio and XCode require the address of the functions be passed.

    Change-Id : Id39cab8e50061fdc6ac6018371a3a158c713e14b

  • Problems linking to FFMPEG library in Visual Studio 2010

    11 décembre 2013, par Dídac Pérez

    I have cross-compiled FFMPEG from Debian using the mingw32 toolchain. The result of the compilation is a set of .a files. When I try to use them in my project I get linker errors, concretely the following ones :

    1>RTSPCapture.obj : error LNK2019: unresolved external symbol _avformat_free_context referenced in function ...
    1>RTSPCapture.obj : error LNK2019: unresolved external symbol _avio_close referenced in function ...
    1>RTSPCapture.obj : error LNK2019: unresolved external symbol _avcodec_close referenced in function ...
    (and much more...)

    I have already included the header files like this :

    extern "C"
    {
       #include <libavcodec></libavcodec>avcodec.h>
       #include <libavformat></libavformat>avformat.h>
       #include <libavformat></libavformat>avio.h>
    }

    And I use the .a files like this :

    #pragma comment(lib, "libavcodec.a")
    #pragma comment(lib, "libavformat.a")
    #pragma comment(lib, "libavutil.a")

    May I know why I am still getting linker errors ? Best regards,

    EDIT : I have realized that this is not possible. So, what should I do to use FFMPEG library in my MSVC2010 project taking into account that I can't compile ffmpeg in Windows ? it seems to be REALLY difficult...