Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (112)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains 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 ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (12802)

  • Build android native application for many types of CPU

    30 novembre 2012, par tunght_53

    I want to use ffmpeg library in my application so I wrote an Android.mk file as follow :

    LOCAL_PATH := $(call my-dir)
    TOP_LOCAL_PATH := $(LOCAL_PATH)

    include $(CLEAR_VARS)
    LOCAL_C_INCLUDES += $(LOCAL_PATH)/android-8/armv5te/include/

    LOCAL_CPP_EXTENSION := .cpp
    LOCAL_C_EXTENSION := .c

    LOCAL_CFLAGS := -O3
    LOCAL_MODULE    := FilterEngine
    LOCAL_SRC_FILES := \
       decoding_encoding.c \

    LOCAL_LDLIBS    := -lm -llog -ljnigraphics -L$(LOCAL_PATH)/android-8/armv5te/lib/ -lavcodec -lavfilter -lavutil -lm -lz
    LOCAL_STATIC_LIBRARIES := avcodec avfilter avutil

    include $(BUILD_SHARED_LIBRARY)

    This make file only builds the library for ARM v5 CPU, to create an ARM v7 build of the library I have to modify the Android.mk file (change from armv5te to armv7a). How can I specify 2 types of CPU in the make file so I can build the library for both CPUs at one.
    Thanks in advance.

  • How to get video frames from mp4 video using ffmpeg in android ?

    3 juin 2013, par Mihir Shah

    I have successfully compiled and build ffmpeg library in android after 3,4 days research work.
    Now I want to grab frames from video. But I don't know which ffmpeg method with command to be called from java class to grab the all frames. Any one have idea about it ? or I want to overlay 2 videos. Is there any direct method available in ffmpeg to merge two videos one over another ? If yes, how to call it from java class ?

  • Android FFMPEG example to get frames from video using NDK

    22 avril 2016, par Mihir Shah

    I want to develop video merge application in android. I just able to generate ffmpeg.so file using NDK and JNI. But now I want to get frames of input video(around 15 sec.). Any one have an idea how to get the frames from video using ffmpeg ? Is there direct native method available for that to get frames in ffmpeg ? And how to pass command from java class to native mathod to perform video merging functionality ? Just give me solution for that.