
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 (73)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (12041)
-
How to statically build ffmpeg with librtmp without root on centos 6.4 ?
22 avril 2014, par Shumani forked STVS’s batch build script here. only added lines for rtmp ? but why it’s not working , the error i got is
*** Building FFmpeg ***
ERROR: librtmp not foundif i check the config.log file
gcc -D_ISOC99_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600 -I/usr/tmp/tmp/ffmpeg-static-test/target/include -I/usr/tmp/tmp/ffmpeg-static-test/target/include -static --static -std=c99 -fomit-frame-pointer -pthread -I/usr/tmp/tmp/ffmpeg-static-test/target/include/opus -I/usr/tmp/tmp/ffmpeg-static-test/target/include -Wl,-z,relro -L/usr/tmp/tmp/ffmpeg-static-test/target/lib -c -o /var/tmp/ffconf.CIIzEs8o.o /var/tmp/ffconf.bBYD2amo.c
gcc -L/usr/tmp/tmp/ffmpeg-static-test/target/lib -lm -L/usr/tmp/tmp/ffmpeg-static-test/target/lib -lm -static -Wl,--as-needed -I/usr/tmp/tmp/ffmpeg-static-test/target/include -Wl,-z,relro -L/usr/tmp/tmp/ffmpeg-static-test/target/lib -o /var/tmp/ffconf.goVEXKQq /var/tmp/ffconf.CIIzEs8o.o -lrtmp -lssl -lcrypto -ldl -lz -L/usr/tmp/tmp/ffmpeg-static-test/target/lib -lopus -lmp3lame -lfaac -lm -pthread -lbz2 -lz -lrt
/usr/bin/ld: cannot find -lssl
collect2: ld returned 1 exit status
ERROR: librtmp not foundi then checked my openssl install, it’s installed and
> which openssl
/usr/bin/openssl
> ldd /usr/bin/openssl
linux-vdso.so.1 => (0x00007fffd19ff000)
libssl.so.10 => /usr/lib64/libssl.so.10 (0x0000003358000000)
libgssapi_krb5.so.2 => /lib64/libgssapi_krb5.so.2 (0x0000003357c00000)
libkrb5.so.3 => /lib64/libkrb5.so.3 (0x0000003356c00000)
libcom_err.so.2 => /lib64/libcom_err.so.2 (0x0000003355800000)
libk5crypto.so.3 => /lib64/libk5crypto.so.3 (0x0000003357400000)
libcrypto.so.10 => /usr/lib64/libcrypto.so.10 (0x0000003355c00000)
libdl.so.2 => /lib64/libdl.so.2 (0x000000334e800000)
libz.so.1 => /lib64/libz.so.1 (0x000000334f000000)
libc.so.6 => /lib64/libc.so.6 (0x000000334e000000)
libkrb5support.so.0 => /lib64/libkrb5support.so.0 (0x0000003356800000)
libkeyutils.so.1 => /lib64/libkeyutils.so.1 (0x0000003357000000)
libresolv.so.2 => /lib64/libresolv.so.2 (0x000000334fc00000)
libpthread.so.0 => /lib64/libpthread.so.0 (0x000000334ec00000)
/lib64/ld-linux-x86-64.so.2 (0x000000334dc00000)
libselinux.so.1 => /lib64/libselinux.so.1 (0x0000003350000000)which means i have libssl.so already. i tried adding -L/usr/lib64 to the configure script, but still it’s not working.
previously in the build script
CFLAGS="-I$TARGET_DIR/include" LDFLAGS="-L$TARGET_DIR/lib -lm" ./configure --prefix=${OUTPUT_DIR:-$TARGET_DIR} --extra-cflags="-I$TARGET_DIR/include" --extra-ldflags="-L$TARGET_DIR/lib -lm" --extra-version=static --disable-debug --disable-shared --enable-static --extra-cflags=--static --disable-ffplay --disable-ffserver --disable-doc --enable-gpl --enable-pthreads --enable-postproc --enable-gray --enable-runtime-cpudetect --enable-libfaac --enable-libmp3lame --enable-libopus --enable-libtheora --enable-libvorbis --enable-libx264 --enable-libxvid --enable-bzlib --enable-zlib --enable-nonfree --enable-version3 --enable-libvpx --disable-devices --enable-librtmp
i tried
CFLAGS="-I$TARGET_DIR/include" LDFLAGS="-L$TARGET_DIR/lib -L/usr/lib64 -lm" ./configure --prefix=${OUTPUT_DIR:-$TARGET_DIR} --extra-cflags="-I$TARGET_DIR/include" --extra-ldflags="-L$TARGET_DIR/lib -L/usr/lib64 -lm" --extra-version=static --disable-debug --disable-shared --enable-static --extra-cflags=--static --disable-ffplay --disable-ffserver --disable-doc --enable-gpl --enable-pthreads --enable-postproc --enable-gray --enable-runtime-cpudetect --enable-libfaac --enable-libmp3lame --enable-libopus --enable-libtheora --enable-libvorbis --enable-libx264 --enable-libxvid --enable-bzlib --enable-zlib --enable-nonfree --enable-version3 --enable-libvpx --disable-devices --enable-librtmp
same error, what am i missing ?
-
frame : allow align=0 (meaning automatic) for av_frame_get_buffer()
8 février 2017, par Anton Khirnov -
avdevice/x11grab : rename the "w" Window to "root" in paint_mouse_pointer
8 septembre 2014, par Antonio Ospiteavdevice/x11grab : rename the "w" Window to "root" in paint_mouse_pointer
This specifies better the meaning of the variable, and is also in
preparation of a subsequent change which will introduce a temporary
Window variable for which "w" is an good name.Signed-off-by : Antonio Ospite <ao2@ao2.it>
Signed-off-by : Michael Niedermayer <michaelni@gmx.at>