
Recherche avancée
Autres articles (58)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (13988)
-
Revision dbdb87b72f : Fix a visual studio warning Change-Id : I7f935e61c8c0ade7893a5212701f07bb346d78c
4 septembre 2014, par Yaowu XuChanged Paths :
Modify /vpxenc.c
Fix a visual studio warningChange-Id : I7f935e61c8c0ade7893a5212701f07bb346d78cb
-
ffmpeg latest visual studio builds or linking with (.a) libs
23 juin 2013, par user1657348there is a problem.
I need to link ffmpeg(particularly libavcodec) statically into visual studio 2008 project.I found some visual studio solutions in internet but they are very old (around 0.6 version) and i need latest version, so this way is not an option for me.
Next, I made static build (with —enable-satic —disable-shared flags) using MinGW/msys and obtained (*.a) libraries in output.
In Visual Studio I go to the linker properities and add to Additional Dependencies(Linker->Input) libvacodec.a and libgcc.a.
Then i wrote simple application :#include
#include
extern "C"
{
#ifdef __STDC_CONSTANT_MACROS
#define __STDC_CONSTANT_MACROS
#endif
#include "libavcodec/avcodec.h"
}
#include "libavformat/avformat.h"
int main()
{
av_register_all();
return 0;
}Compilation of this code was succeeded but linking failed. There is an error was obtained :
error LNK2019: unresolved external symbol "void __cdecl av_register(void)" (?av_register_all@@YAXXZ) referenced in function _main.
So, there are two questions :
-
How to link Visual Studio application with libavcodec.a ?
-
If it possible, where can i get visual studio solution which includes ffmpeg latest version ?
Thanks in advance !!
-
-
How to use .a lib files with Visual Studio 2008 ?
18 mars 2014, par SpenderSo I have some C/C++ library compiled into .a files. library is ffmpeg (52). Could any one provide me with detailed instructions on how to use it in visual studio 2008 (how to link it to VS so that compiler would find it and so on) ?