
Recherche avancée
Médias (5)
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
-
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
Autres articles (59)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Changer son thème graphique
22 février 2011, parLe thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
Modifier le thème graphique utilisé
Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
Il suffit ensuite de se rendre dans l’espace de configuration du (...)
Sur d’autres sites (10499)
-
How can I add overlay images or text on top of videos in Android ?
12 mai 2015, par ori888I’m trying to add overlay images/text on top of mp4 videos inside an Android application.
Most solutions point to FFmpeg (or appunits AndroidFFmpeg) but isn’t stable and very complicated to maintain.
Is there a native way to do this using the Android SDK ? (MediaCodec ? MediaMuxer ?)Thank you,
Ori -
ERROR : jni not found building ffmpeg for Android
13 décembre 2019, par Jim RhodesI have successfully built ffmpeg libraries for Android and now I want to add MediaCodec support.
I have added
--enable-mediacodec --enable-jni
to my configure command line and-I$SYSROOT/usr/include
toextra-cflags
.At the end of config.log is the following :
check_headers jni.h
test_cpp
BEGIN /tmp/ffconf.m9iLX2Qm/test.c
1 #include
2 int x;
END /tmp/ffconf.m9iLX2Qm/test.c
/home/jr/android-ndk/toolchains/llvm/prebuilt/linux-x86_64/bin/clang
--sysroot=/home/jr/android-ndk/sysroot -D_ISOC99_SOURCE
-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Dstrtod=avpriv_strtod
-DPIC -target aarch64-none-linux-android
-I/home/jr/android-ndk/sysroot/usr/include/aarch64-linux-android
-I/home/jr/android-ndk/sysroot/usr/include -O3 -fPIC
-D__ANDROID_API__=21 -std=c11 -fPIE -fomit-frame-pointer -fPIC -E
-o /tmp/ffconf.m9iLX2Qm/test.o /tmp/ffconf.m9iLX2Qm/test.c
ERROR: jni not foundThere is a
jni.h
in/home/jr/android-ndk/sysroot/usr/include
.Is there anything else I need to add to my build script to get this to work ?
-
Building FFMPEG with Android Project
19 avril 2017, par ContextionerI have generated ffmpeg binaries and setup NDK with my Android Studio I have also generated static files of ffmpeg. I am new with Android NDK I need help with building ffmpeg with my Android Project can anyone guide me to do so.
Here is the
of the generated files.
This is my Android.mk file.
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_C_INCLUDES := $(ANDROID_NDK)/sources/ffmpeg-3.3
LOCAL_CFLAGS := -Os -fpic -marm -march=armv7-a -mfloat-abi=softfp -mfpu=neon
LOCAL_MODULE := MyFFmpeg
LOCAL_SRC_FILES := arm/videoKit.c arm/ffmpeg.c arm/ffmpeg_filter.c arm/ffmpeg_opt.c arm/cmdutils.c
LOCAL_STATIC_LIBRARIES := libavdevice libavformat libavfilter libavcodec libavutil libswresample libswscale
include $(BUILD_SHARED_LIBRARY)
$(call import-module,ffmpeg-2.2.3/android/arm)