
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 (88)
-
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)
Sur d’autres sites (5415)
-
Revision f45fe16684 : configure.sh : quote local variables fixes issue #711 specifying a multiword CC
7 mars 2014, par James ZernChanged Paths :
Modify /build/make/configure.sh
configure.sh : quote local variablesfixes issue #711
specifying a multiword CC, e.g., CC='gcc -m32', would cause the failure
under dashreported in
https://bugs.gentoo.org/show_bug.cgi?id=498136patch by floppymaster at gmail dot com
Change-Id : I2ba246f765646161538622739961ec0f6c2d8c2d
-
rtpdec_qt : Use a local variable instead of RTP_FLAG_KEY
4 mars 2015, par Martin Storsjö -
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