Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (90)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

Sur d’autres sites (7380)

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