
Recherche avancée
Autres articles (75)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, 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 (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
Sur d’autres sites (10631)
-
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) -
Android ffmpeg : Path with spaces
12 octobre 2017, par Javier ManzanoI have almost the same problem that this question : Android : ffmpeg with filenames containing spaces
The problem is I’m using this library : https://github.com/hiteshsondhi88/ffmpeg-android-java
In the stack overflow question that I’ve post the only way to achieve is passing the cmd command as String[] (which cannot be done with this library)