
Recherche avancée
Médias (3)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (101)
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
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 (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)
Sur d’autres sites (9813)
-
Building x264 on a Mac for android “No working C compiler found”
20 novembre 2015, par LostPuppyI am trying to build x264 and eventually use it to build ffmpeg the following is my script :
#!/bin/bash
NDK="/Users/account/Documents/FFmpeg/android-ndk-r10e"
TOOL_DIR_ARM="/Users/account/Documents/FFmpeg/android-ndk-r10e/sources/ffmpeg-2.8.2/my-android-toolchain"
SYSROOT=$NDK/platforms/platforms/android-21/arch-arm
echo "removing tool chain directory if it exists"
rm -r $TOOL_DIR_ARM
$NDK/build/tools/make-standalone-toolchain.sh \
--platform=android-21 \
--arch=arm \
--install-dir=$TOOL_DIR_ARM \
--toolchain=arm-linux-androideabi-clang3.6\
--llvm-version=3.6 \
--system=darwin-x86_64
if [ -d $SYSROOT ]; then
echo "$SYSROOT is a valid directory"
fi
function build_x264
{
cd x264
# another build for phone
./configure \
--cross-prefix=arm-linux-androideabi- \
--sysroot=$SYSROOT \
--host=arm-linux \
--enable-static \
--enable-pic \
--disable-cli
make -j4
make install
cd ../
}
function build_one
{
cd
# another build for phone
./configure \
--sysroot=$SYSROOT \
--target-os=linux \
--arch=arm \
--cross-prefix=$TOOL_DIR_ARM/bin/arm-linux-androideabi- \
--cc=$TOOL_DIR_ARM/bin/clang \
--enable-cross-compile \
--enable-encoder=mpeg4 \
--enable-pthreads \
--enable-gpl \
--enable-libx264 \
--enable-pic \
--extra-cflags='-I/usr/local/include' \
--extra-ldflags='-L/usr/local/lib'
make clean
make -j4
make install
}
echo "Building x_264 library"
build_x264
echo "Building FFmpeg"
build_oneI get an error saying
No working C compiler found.
Makefile:3: config.mak: No such file or directoryThe following is the output from the config.log file
checking for -mdynamic-no-pic... yes
checking for -arch x86_64... yes
x264 configure script
checking whether gcc works... yes
checking whether gcc supports for( int i = 0; i < 9; i++ ); with -std=gnu99... yes
checking for -mpreferred-stack-boundary=5... no
Failed commandline was:
--------------------------------------------------
gcc conftest.c -m64 -Qunused-arguments -Wall -I. -I$(SRCPATH) -mdynamic-no-pic -arch x86_64 -std=gnu99 -mpreferred-stack-boundary=5 -m64 -lm -arch x86_64$
clang: error: unknown argument: '-mpreferred-stack-boundary=5'
--------------------------------------------------
Failed program was:
--------------------------------------------------
int main (void) { return 0; }
--------------------------------------------------
checking whether yasm supports vpmovzxwd ymm0, xmm0... yesSolutions that I tried :
I made sure I have a working GCC
I have the update to date version of clang
I have the update to date version of LLVM
-
Building x264 on a Mac for android “No working C compiler found”
20 novembre 2015, par LostPuppyI am trying to build x264 and eventually use it to build ffmpeg the following is my script :
#!/bin/bash
NDK="/Users/account/Documents/FFmpeg/android-ndk-r10e"
TOOL_DIR_ARM="/Users/account/Documents/FFmpeg/android-ndk-r10e/sources/ffmpeg-2.8.2/my-android-toolchain"
SYSROOT=$NDK/platforms/platforms/android-21/arch-arm
echo "removing tool chain directory if it exists"
rm -r $TOOL_DIR_ARM
$NDK/build/tools/make-standalone-toolchain.sh \
--platform=android-21 \
--arch=arm \
--install-dir=$TOOL_DIR_ARM \
--toolchain=arm-linux-androideabi-clang3.6\
--llvm-version=3.6 \
--system=darwin-x86_64
if [ -d $SYSROOT ]; then
echo "$SYSROOT is a valid directory"
fi
function build_x264
{
cd x264
# another build for phone
./configure \
--cross-prefix=arm-linux-androideabi- \
--sysroot=$SYSROOT \
--host=arm-linux \
--enable-static \
--enable-pic \
--disable-cli
make -j4
make install
cd ../
}
function build_one
{
cd
# another build for phone
./configure \
--sysroot=$SYSROOT \
--target-os=linux \
--arch=arm \
--cross-prefix=$TOOL_DIR_ARM/bin/arm-linux-androideabi- \
--cc=$TOOL_DIR_ARM/bin/clang \
--enable-cross-compile \
--enable-encoder=mpeg4 \
--enable-pthreads \
--enable-gpl \
--enable-libx264 \
--enable-pic \
--extra-cflags='-I/usr/local/include' \
--extra-ldflags='-L/usr/local/lib'
make clean
make -j4
make install
}
echo "Building x_264 library"
build_x264
echo "Building FFmpeg"
build_oneI get an error saying
No working C compiler found.
Makefile:3: config.mak: No such file or directoryThe following is the output from the config.log file
checking for -mdynamic-no-pic... yes
checking for -arch x86_64... yes
x264 configure script
checking whether gcc works... yes
checking whether gcc supports for( int i = 0; i < 9; i++ ); with -std=gnu99... yes
checking for -mpreferred-stack-boundary=5... no
Failed commandline was:
--------------------------------------------------
gcc conftest.c -m64 -Qunused-arguments -Wall -I. -I$(SRCPATH) -mdynamic-no-pic -arch x86_64 -std=gnu99 -mpreferred-stack-boundary=5 -m64 -lm -arch x86_64$
clang: error: unknown argument: '-mpreferred-stack-boundary=5'
--------------------------------------------------
Failed program was:
--------------------------------------------------
int main (void) { return 0; }
--------------------------------------------------
checking whether yasm supports vpmovzxwd ymm0, xmm0... yesSolutions that I tried :
I made sure I have a working GCC
I have the update to date version of clang
I have the update to date version of LLVM
-
Building x264 on a Mac for android “No working C compiler found”
20 novembre 2015, par LostPuppyI am trying to build x264 and eventually use it to build ffmpeg the following is my script :
#!/bin/bash
NDK="/Users/account/Documents/FFmpeg/android-ndk-r10e"
TOOL_DIR_ARM="/Users/account/Documents/FFmpeg/android-ndk-r10e/sources/ffmpeg-2.8.2/my-android-toolchain"
SYSROOT=$NDK/platforms/platforms/android-21/arch-arm
echo "removing tool chain directory if it exists"
rm -r $TOOL_DIR_ARM
$NDK/build/tools/make-standalone-toolchain.sh \
--platform=android-21 \
--arch=arm \
--install-dir=$TOOL_DIR_ARM \
--toolchain=arm-linux-androideabi-clang3.6\
--llvm-version=3.6 \
--system=darwin-x86_64
if [ -d $SYSROOT ]; then
echo "$SYSROOT is a valid directory"
fi
function build_x264
{
cd x264
# another build for phone
./configure \
--cross-prefix=arm-linux-androideabi- \
--sysroot=$SYSROOT \
--host=arm-linux \
--enable-static \
--enable-pic \
--disable-cli
make -j4
make install
cd ../
}
function build_one
{
cd
# another build for phone
./configure \
--sysroot=$SYSROOT \
--target-os=linux \
--arch=arm \
--cross-prefix=$TOOL_DIR_ARM/bin/arm-linux-androideabi- \
--cc=$TOOL_DIR_ARM/bin/clang \
--enable-cross-compile \
--enable-encoder=mpeg4 \
--enable-pthreads \
--enable-gpl \
--enable-libx264 \
--enable-pic \
--extra-cflags='-I/usr/local/include' \
--extra-ldflags='-L/usr/local/lib'
make clean
make -j4
make install
}
echo "Building x_264 library"
build_x264
echo "Building FFmpeg"
build_oneI get an error saying
No working C compiler found.
Makefile:3: config.mak: No such file or directoryThe following is the output from the config.log file
checking for -mdynamic-no-pic... yes
checking for -arch x86_64... yes
x264 configure script
checking whether gcc works... yes
checking whether gcc supports for( int i = 0; i < 9; i++ ); with -std=gnu99... yes
checking for -mpreferred-stack-boundary=5... no
Failed commandline was:
--------------------------------------------------
gcc conftest.c -m64 -Qunused-arguments -Wall -I. -I$(SRCPATH) -mdynamic-no-pic -arch x86_64 -std=gnu99 -mpreferred-stack-boundary=5 -m64 -lm -arch x86_64$
clang: error: unknown argument: '-mpreferred-stack-boundary=5'
--------------------------------------------------
Failed program was:
--------------------------------------------------
int main (void) { return 0; }
--------------------------------------------------
checking whether yasm supports vpmovzxwd ymm0, xmm0... yesSolutions that I tried :
I made sure I have a working GCC
I have the update to date version of clang
I have the update to date version of LLVM