Recherche avancée

Médias (5)

Mot : - Tags -/open film making

Autres articles (59)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip 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, par

    Cette 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, par

    Le 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 ori888

    I’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 Rhodes

    I 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 to extra-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 found

    There 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 Contextioner

    I 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 screenshot 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)