
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (29)
-
Utilisation et configuration du script
19 janvier 2011, parInformations spécifiques à la distribution Debian
Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
Récupération du script
Le script d’installation peut être récupéré de deux manières différentes.
Via svn en utilisant la commande pour récupérer le code source à jour :
svn co (...) -
Publier sur MédiaSpip
13 juin 2013Puis-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 -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
Sur d’autres sites (3690)
-
Matomo Celebrates 15 Years of Building an Open-Source & Transparent Web Analytics Solution
-
Whats is the problem of my old .MOV file ?
3 septembre 2021, par PierDEVITWhat is the meaning of the problem ? I want to test the integrity of my old
.mov
file :

[dvvideo @ 0x7ffd8d819a00] Concealing bitstream errors
 Last message repeated 52 times



The file captured it from a MiniDV in the 2008 year


How can I fix this problem ? Thanks for the advice


-
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 !!
-