
Recherche avancée
Médias (91)
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (101)
-
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
Taille des images et des logos définissables
9 février 2011, parDans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...) -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...)
Sur d’autres sites (5127)
-
FFPlay in Android
17 juillet 2020, par Meet RathodMy Android App, I want to show a preview of my FFmpeg command in exoplayer before the execution of the command.
I have checked the ffplay but how to use it in android there is no documentation or any library which works.


-
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