Recherche avancée

Médias (1)

Mot : - Tags -/wave

Autres articles (98)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • 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 (10311)

  • 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.

  • Properly using FFMPEG in Android [on hold]

    16 janvier 2017, par devxcon

    I know this question must have been asked several times. But none of the answers lead me anywhere useful.

    From what I understand, FFMPEG is a kind of converter that helps to convert a multimedia file format to another format. I have seen an implementation of FFMPEG called FFPLAY. But what I don’t understand is, how can we take a type of video convert and use it like a multimedia decoder. I went over to this project which teaches how to use ffmpeg (convert & so on). But my problem is, I cannot use this to show the video frames on android device. I am just using media player class from android to play whatever my device supports. I want to play other natively unsupported formats like ac3, vob and so on. Is there a way to accomplish this ? I am stuck in this for over 2 months.

    Also, android devices are not fast enough to convert and play a file at same time. I don’t understand how popular players like VLC or MX player uses ffmpeg.

    Thanks in advance.

  • Android ndk r7, ffmpeg on Windows

    10 janvier 2013, par Malaiselvan

    We are developing an android App which should convert the .3GP file to .FLV and upload to the web server.

    We completed the overall framework to upload a file to web server. But we are facing problem on converting the .3GP to .FLV.

    We searched google and couldn't able to find a working solution.

    1. We are using Windows OS
    2. We managed to install the NDK r7
    3. We managed to install cygwin.
    4. We downloaded the latest ffmpeg

    Now we need to compile the FFMPEG using the android NDK and use FFMPEG to convert the video file.

    Could someone help me to compile ffmpeg on android (windows) ?
    Or is there any other way simplest way to convert a video ?