
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (53)
-
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration 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 (...) -
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
Sur d’autres sites (8459)
-
simpleidct : fix project name.
1er février 2012, par Michael Niedermayersimpleidct : fix project name.
-
gsm.h : Fix project reference
1er février 2012, par Michael Niedermayergsm.h : Fix project reference
-
CMake configuration for ffmpeg in C++ project
7 mai 2024, par pp492I have installed ffmpeg (version 4) with Homebrew and I am trying to use the various ffmpeg libraries in a C++ project, but I am getting multiple errors during linking.



Undefined symbols for architecture x86_64:
 "_av_free", referenced from:
 _main in main.cpp.o
 "_av_packet_alloc", referenced from:
 _main in main.cpp.o
 "_av_parser_init", referenced from:
And so on ... 




I have included the libraries as follow



extern "C" {
 #include <libavutil></libavutil>frame.h>
 #include <libavutil></libavutil>mem.h>
 #include <libavcodec></libavcodec>avcodec.h>
}




But still, this doesn't work. I think I might have missed something in my
CMakeLists.txt
file, which at the moment looks like that :


cmake_minimum_required(VERSION 2.6)
project(decode_encode)

set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_FLAGS "-D__STDC_CONSTANT_MACROS")

add_executable(decode_encode main.cpp)




I most likely need to specify additional linking flags, but is there is a better way to handle the linking part in a
CMakeLists.txt
file ?