Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (17)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (2322)

  • UAC compliant webcams (mic) Access under Android in general and under FFMPEG for Android

    21 décembre 2012, par user1545779

    The traditional way to access a UAC compliant webcam mic has always been :
    ffmpeg -f alsa -i plughw:CARD=U0x46d0x821,DEV=0
    under Android versions upto and including version 4.0 However as we all know, alsa implementation is one of the most problematic areas in sound implementation on Android.

    Has there been any changes in recent versions of Android as to how to access the builtin mic in a UAC complaint webcam or for that matter a USB mic

  • Android NDK error when using FFmpeg in Android ?

    15 janvier 2013, par AB1209

    Hi I am using FFmpeg library.I have used code from appunite.I have imported both FFmpegLibrary & FFmpegExample in Eclipse.

    But when I try to generate .so file using Android NDK & Cygwin I am getting following error message.

    Android NDK: ERROR:jni/yuv2rgb/Android.mk:ffmpeg-prebuilt: LOCAL_SRC_FILES points to a missing file
    Android NDK: Check that jni/ffmpeg-build/armeabi/libffmpeg.so exists  or that its path is correct
    /cygdrive/D/AndroidNDK/android-ndk-r8c/build/core/prebuilt-library.mk:43: *** Android NDK: Aborting    .  Stop.

    If anyone has successfully used this library.Please guide me.

    Thanks

  • Android jni "No Rule to make Target issue"

    19 juillet 2012, par RAJESH

    I am trying to compile the project which i got from below link .
    Github project fmpeg. But while compiling that to create .so files using andriod ndk version 5 i am getting the following issue . Please advice me to solve it .

    make: *** No rule to make target `/cygdrive/D/Shakthi/jhotovy/jhotovy-android-ffmpeg-fab1412/Project/jni/ffmpeg/ffmpeg.c', needed by `/cygdrive/D/Shakthi/jhotovy/jhotovy-android-ffmpeg-fab1412/Project/obj/local/armeabi/objs/ffmpeg/ffmpeg/ffmpeg.o'.  Stop.

    My Android.mk file code.

    LOCAL_PATH := $(call my-dir)

    include $(CLEAR_VARS)

    LOCAL_MODULE  := ffmpeg

    FFMPEG_LIBS := $(addprefix ffmpeg/, \
    libavdevice/libavdevice.a \
    libavformat/libavformat.a \
    libavcodec/libavcodec.a \
    libavfilter/libavfilter.a \
    libswscale/libswscale.a \
    libavutil/libavutil.a \
    libpostproc/libpostproc.a )

    OGG_LIBS := $(addprefix libogg/output/lib/, \
    libogg.a )

    VORBIS_LIBS := $(addprefix libvorbis/output/lib/, \
    libvorbis.a \
    libvorbisenc.a \
    libvorbisfile.a )

    THEORA_LIBS := $(addprefix libtheora/output/lib/, \
    libtheora.a \
    libtheoraenc.a \
    libtheoradec.a )

    LOCAL_CFLAGS += -g -Iffmpeg -Ivideokit -Wno-deprecated-declarations
    LOCAL_LDLIBS += -llog -lz $(FFMPEG_LIBS) $(THEORA_LIBS) $(OGG_LIBS) x264/libx264.a
    LOCAL_SRC_FILES := ffmpeg_android/ffmpeg_android.c ffmpeg/ffmpeg.c ffmpeg/cmdutils.c

    include $(BUILD_SHARED_LIBRARY)

    # Use to safely invoke ffmpeg multiple times from the same Activity
    include $(CLEAR_VARS)

    LOCAL_MODULE := ffmpeginvoke

    LOCAL_SRC_FILES := ffmpeg_invoke/ffmpeg_invoke.c
    LOCAL_LDLIBS    := -ldl

    include $(BUILD_SHARED_LIBRARY)