
Recherche avancée
Autres articles (95)
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (6719)
-
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 -
Use of library with GPL license on Android - ffmpeg
7 septembre 2016, par CarlosI am using some libraries in my android application and all of these are with Apache 2.0 license.
Only one has GPLv3 license :
https://github.com/WritingMinds/ffmpeg-android-javaSo, if I use this library I must share my application complete code online ? can I solve my problem differently ?
Thanks
-
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 ?