
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (111)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (10530)
-
ffmpeg : move a local variable definition later.
6 mai 2013, par Nicolas George -
Revision 5ab920d2ae : Using local variable for token_cache. The difference with the old code is that
3 décembre 2013, par Dmitry KovalevChanged Paths :
Modify /vp9/decoder/vp9_decodeframe.c
Modify /vp9/decoder/vp9_detokenize.c
Modify /vp9/decoder/vp9_detokenize.h
Modify /vp9/decoder/vp9_onyxd_int.h
Using local variable for token_cache.The difference with the old code is that originally the whole token_cache
was initialized with zeros at the beginning of decode_coefs() function.
Now we set several zero values explicitly with "token_cache[scan[c]] = 0".Change-Id : I88cc5031f01d13012d1a4491739c36cb44f9401e
-
Making and displaying a video
4 mars 2018, par Mehdi ShojaeianI have to develop an app which shoud crop and cut video .
I decide to use ffmpeg and I tested below library :
https://github.com/WritingMinds/ffmpeg-android-javabut I get
[libx264 @ 0xf506d400] using cpu capabilities: none!
at console and running so so slowly.so I decide to build my own ffmpeg prebuilt and try my hard and test below link for make prebuild ffmpeg :
- https://github.com/WritingMinds/ffmpeg-android
- https://github.com/WritingMinds/ffmpeg-android-java
- http://writingminds.github.io/ffmpeg-android/
- http://writingminds.github.io/ffmpeg-android-java/
and so much more
But enety build has own error, such as "couldn’t find c comiler"
After too many search I found and build ffmpeg but the result is some .so file (listed below) :- libavcodec-58.so
- libavdevice-58.so
- libavformat-58.so
- libavutil-56.so
- libpostproc-55.so
- libswresample-3.so
- libswscale-5.so
my build.sh is :
NDK=/Users/mehdi/Documents/adt-bundle-mac-x86_64-20140702/ndk/android-ndk-r13b
SYSROOT=$NDK/platforms/android-24/arch-arm/
TOOLCHAIN=$NDK/toolchains/arm-linux-androideabi-4.9/prebuilt/darwin-x86_64
function build_one
{
./configure \
--prefix=$PREFIX \
--enable-shared \
--disable-static \
--disable-doc \
--disable-ffmpeg \
--disable-ffplay \
--disable-ffprobe \
--enable-avdevice \
--disable-doc \
--disable-symver \
--cross-prefix=$TOOLCHAIN/bin/arm-linux-androideabi- \
--target-os=linux \
--cpu=cortex-a8 \
--arch=arm \
--enable-cross-compile \
--sysroot=$SYSROOT \
--extra-cflags="-Os -fpic $ADDI_CFLAGS" \
--extra-ldflags="$ADDI_LDFLAGS" \
--enable-runtime-cpudetect \
--enable-gpl \
--enable-avfilter \
--enable-encoders \
--enable-muxers \
--enable-protocols \
--enable-parsers \
--enable-demuxers \
--enable-decoders \
--enable-bsfs \
--enable-network \
--enable-swscale \
--enable-asm
$ADDITIONAL_CONFIGURE_FLAG
make clean
make
make install
}
CPU=arm
PREFIX=$(pwd)/android/$CPU
ADDI_CFLAGS="-marm"
build_oneand I put .so files into cpp folder in android studio and make CMakeLists.txt.
every thing is ok up to now but where can I found ffmpeg file to execute command in java . - https://github.com/WritingMinds/ffmpeg-android