
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (112)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
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 (...) -
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 (11582)
-
Unable to build ; undefined symbols for architecture x86_64 :
24 mars 2016, par swittIn the process of trying to create an RTSP screen streaming server, I tried looking at CocoaSplit for an example.
Problem is, I can’t get it to compile.
I have FFMpeg installed on my computer using Homebrew following FFMpeg’s guide on https://trac.ffmpeg.org/wiki/CompilationGuide/MacOSX .
But on compilation, Xcode is throwing out errors such as
Undefined symbols for architecture x86_64:
"_cmnMemAlloc", referenced from:_aac_encode_init in libavcodec.a(libvo-aacenc.o)
"_cmnMemCheck", referenced from:_aac_encode_init in libavcodec.a(libvo-aacenc.o)
"_cmnMemCopy", referenced from:_aac_encode_init in libavcodec.a(libvo-aacenc.o)
"_cmnMemFree", referenced from:_aac_encode_init in libavcodec.a(libvo-aacenc.o)
"_cmnMemSet", referenced from:_aac_encode_init in libavcodec.a(libvo-aacenc.o)and so on.
The header search paths field in project settings has the directory of
/usr/local/include
in it.What seems to be the problem here ?
-
Unable to build ; undefined symbols for architecture x86_64 :
30 août 2021, par swittIn the process of trying to create an RTSP screen streaming server, I tried looking at CocoaSplit for an example.



Problem is, I can't get it to compile.



I have FFMpeg installed on my computer using Homebrew following FFMpeg's guide on https://trac.ffmpeg.org/wiki/CompilationGuide/MacOSX .



But on compilation, Xcode is throwing out errors such as



Undefined symbols for architecture x86_64:

"_cmnMemAlloc", referenced from:_aac_encode_init in libavcodec.a(libvo-aacenc.o)
"_cmnMemCheck", referenced from:_aac_encode_init in libavcodec.a(libvo-aacenc.o)
"_cmnMemCopy", referenced from:_aac_encode_init in libavcodec.a(libvo-aacenc.o)
"_cmnMemFree", referenced from:_aac_encode_init in libavcodec.a(libvo-aacenc.o)
"_cmnMemSet", referenced from:_aac_encode_init in libavcodec.a(libvo-aacenc.o)




and so on.



The header search paths field in project settings has the directory of
/usr/local/include
in it.


What seems to be the problem here ?


-
FFmpeg 1.2.1 building fails
30 juin 2013, par Khaled DiabI tried to build ffmpeg 1.2.1 on Ubuntu 13.04 from sources following this guide : https://ffmpeg.org/trac/ffmpeg/wiki/UbuntuCompilationGuide
But with adding —enable-shared to ffmpeg configure command :
PKG_CONFIG_PATH="$HOME/ffmpeg_build/lib/pkgconfig" ./configure \
--prefix="$HOME/ffmpeg_build" \
--extra-cflags="-I$HOME/ffmpeg_build/include -fPIC" \
--extra-ldflags="-L$HOME/ffmpeg_build/lib -fPIC" \
--bindir="$HOME/bin" \
--extra-libs="-ldl" \
--enable-shared --disable-static \
--enable-pp --enable-pthreads --enable-gpl --enable-libass --enable-libfdk-aac --enable-libmp3lame --enable-libopus --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libx264 --enable-nonfree --enable-x11grabBut I got this error while compilation :
/usr/bin/ld: libavutil/lls.o: relocation R_X86_64_PC32 against undefined symbol `memset@@GLIBC_2.2.5' can not be used when making a shared object; recompile with -fPIC
Any clues on how to solve this error ?
Thanks