
Recherche avancée
Autres articles (18)
-
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
Participer à sa traduction
10 avril 2011Vous 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 (...) -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...)
Sur d’autres sites (1573)
-
Evolution #3488 : Stocker globalement toutes les requetes passées
30 juin 2015, par chan kalanÇa me semble un outil simple et pratique qui me servirait sans aucun doute. Dans le plugin dev ce serait génial...
-
_stricoll is unsolved while linking the libmingwex.a with vs2010
19 septembre 2013, par damantouI am tending to build some app which staticly links the ffmpeg libs on windows 8. I have successfully build the static lib of ffmpeg in mingw/msys env on windows 8. Then I use cmake to generate the vs2010 project to start work with my app.
While I am trying to build the first dead simple main program, I got quite some link errors.
extern "C" {
// to work around error:
// 'UINT64_C': identifier not found
#ifndef __STDC_CONSTANT_MACROS
#define __STDC_CONSTANT_MACROS
#endif
#include <libavcodec></libavcodec>avcodec.h>
#include <libavformat></libavformat>avformat.h>
#include <libswscale></libswscale>swscale.h>
}
int main(int argc, char *argv[])
{
av_register_all();
return 0;
}After struggling with a bunch of unresolved symbols, I come up with the following libraries to link with in order :
c:/MinGW/mingw32/lib/libiconv.a
libavcodec.a
libavdevice.a
libavfilter.a
libavformat.a
libavutil.a
libswresample.a
libswscale.a
c:/MinGW/lib/gcc/mingw32/4.8.1/libgcc.a
c:/MinGW/mingw32/lib/libws2_32.a
c:/MinGW/mingw32/lib/libmingw32.a
c:/MinGW/mingw32/lib/libmingwex.aFinally there is one unresolved symbol issue not able to fix :
libmingwex.a(glob.o) : error LNK2019: unresolved external symbol
_stricoll referenced in function _glob_matchI tried to add some a fake function, but still not help :(
int __cdecl _stricoll(_In_z_ const char * _Str1, _In_z_ const char * _Str2)
{
return 0;
};I googled it the whole morning, but nobody ever mentioned this problem. I guess there should be simple reason and solution for this, maybe because of my ignorance on simple knowledge.
-
_stricoll is unsolved while linking the libmingwex.a with vs2010
14 mai 2018, par damantouI am tending to build some app which staticly links the ffmpeg libs on windows 8. I have successfully build the static lib of ffmpeg in mingw/msys env on windows 8. Then I use cmake to generate the vs2010 project to start work with my app.
While I am trying to build the first dead simple main program, I got quite some link errors.
extern "C" {
// to work around error:
// 'UINT64_C': identifier not found
#ifndef __STDC_CONSTANT_MACROS
#define __STDC_CONSTANT_MACROS
#endif
#include <libavcodec></libavcodec>avcodec.h>
#include <libavformat></libavformat>avformat.h>
#include <libswscale></libswscale>swscale.h>
}
int main(int argc, char *argv[])
{
av_register_all();
return 0;
}After struggling with a bunch of unresolved symbols, I come up with the following libraries to link with in order :
c:/MinGW/mingw32/lib/libiconv.a
libavcodec.a
libavdevice.a
libavfilter.a
libavformat.a
libavutil.a
libswresample.a
libswscale.a
c:/MinGW/lib/gcc/mingw32/4.8.1/libgcc.a
c:/MinGW/mingw32/lib/libws2_32.a
c:/MinGW/mingw32/lib/libmingw32.a
c:/MinGW/mingw32/lib/libmingwex.aFinally there is one unresolved symbol issue not able to fix :
libmingwex.a(glob.o) : error LNK2019: unresolved external symbol
_stricoll referenced in function _glob_matchI tried to add some a fake function, but still not help :(
int __cdecl _stricoll(_In_z_ const char * _Str1, _In_z_ const char * _Str2)
{
return 0;
};I googled it the whole morning, but nobody ever mentioned this problem. I guess there should be simple reason and solution for this, maybe because of my ignorance on simple knowledge.