Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (56)

  • 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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (9020)

  • Add direct link to ML in missing_feature_sample()

    3 juin 2014, par Michael Niedermayer
    Add direct link to ML in missing_feature_sample()
    

    Reviewed-by : Clément Bœsch <u@pkh.me>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] ffmpeg.c
    • [DH] libavcodec/utils.c
    • [DH] libavutil/log.c
  • Demos : Remove the dead link to psyrens.com

    16 décembre 2014, par jzaefferer
    Demos : Remove the dead link to psyrens.com
  • Link FFMpeg in Android

    9 juin 2014, par Sayaki

    I want to use FFMpeg on android. I’m really new to this topic. I build libraries with this tutorial]1. Now I have .so and .h files but I dont know how to use them in my project. I probably need to link it in my Android.mk file. Here is my .mk and .c file in my project :

    Android.mk

    LOCAL_PATH := $(call my-dir)

    include $(CLEAR_VARS)

    LOCAL_LDLIBS := -llog

    LOCAL_MODULE    := ndksetup
    LOCAL_SRC_FILES := native.c

    include $(BUILD_SHARED_LIBRARY)

    native.c

    #include
    #include
    #include <android></android>log.h>

    #define DEBUG_TAG "NDKSetupActivity"

    void Java_com_example_ndksetup_MainActivity_printLog(JNIEnv *env, jobject this, jstring logString)
    {
       jboolean isCopy;
       const char * szLogString = (*env)->GetStringUTFChars(env, logString, &amp;isCopy);

       __android_log_print(ANDROID_LOG_DEBUG, DEBUG_TAG, "NDK: %s", szLogString);

       (*env)->ReleaseStringUTFChars(env, logString, szLogString);
    }

    jint Java_com_example_ndksetup_MainActivity_fibonacci(JNIEnv * env, jobject this, jint value)
    {
       if (value &lt;= 1) return value;
       return Java_com_example_ndksetup_MainActivity_fibonacci(env, this, value-1)
               + Java_com_example_ndksetup_MainActivity_fibonacci(env, this, value-2);
    }

    Can anyone tell me how I can use .so and .h files in my native.c file ?