
Recherche avancée
Autres articles (51)
-
Activation de l’inscription des visiteurs
12 avril 2011, parIl est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (7646)
-
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