Recherche avancée

Médias (0)

Mot : - Tags -/logo

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

Autres articles (43)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (5571)

  • Add FM Screen Capture Codec decoder

    6 février 2017, par Paul B Mahol
    Add FM Screen Capture Codec decoder
    

    Signed-off-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Diego Biurrun <diego@biurrun.de>

    • [DBH] Changelog
    • [DBH] doc/general.texi
    • [DBH] libavcodec/Makefile
    • [DBH] libavcodec/allcodecs.c
    • [DBH] libavcodec/avcodec.h
    • [DBH] libavcodec/codec_desc.c
    • [DBH] libavcodec/fmvc.c
    • [DBH] libavcodec/version.h
    • [DBH] libavformat/riff.c
  • lavf : add samba protocol via libsmbclient

    13 juillet 2014, par Lukasz Marek
    lavf : add samba protocol via libsmbclient
    

    Signed-off-by : Lukasz Marek <lukasz.m.luki2@gmail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] Changelog
    • [DH] configure
    • [DH] doc/general.texi
    • [DH] doc/protocols.texi
    • [DH] libavformat/Makefile
    • [DH] libavformat/allformats.c
    • [DH] libavformat/libsmbclient.c
    • [DH] libavformat/version.h
  • Unresolved externals trying to use ffmpeg

    29 août 2013, par Asik

    I'm trying to use some functions from ffmpeg and am running into resilient linker errors. Here's what I did :

    • Downloaded the latest 32-bit "Dev" build from http://ffmpeg.zeranoe.com/builds/ (i.e. ffmpeg-20130418-git-ee94362-win32-dev)
    • Created a "General - empty" C++ project in Visual Studio 2012 Premium
    • Added the [ffmpeg]/lib folder to Linker -> Input -> "Additional Library Directories"
    • Added "swscale.lib ;avutil.lib ;avformat.lib ;avdevice.lib ;avcodec.lib ;" to Linker -> Input -> "Additional Dependencies"
    • Added the following under C++ -> General -> Additional Include Directories :
      • [ffmpeg]/include
      • [ffmpeg]/include/libswscale
      • [ffmpeg]/include/libavformat

    This is my main.cpp :

    #include "avformat.h"

    int main()
    {
       av_register_all();
    }

    This fails with :

    error LNK2019 : unresolved external symbol "void __cdecl
    av_register_all(void)" (?av_register_all@@YAXXZ) referenced in
    function _main

    How can I fix this error ?