
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 (44)
-
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 (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)
Sur d’autres sites (5660)
-
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