Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (83)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Diogene : création de masques spécifiques de formulaires d’édition de contenus

    26 octobre 2010, par

    Diogene est un des plugins ? SPIP activé par défaut (extension) lors de l’initialisation de MediaSPIP.
    A quoi sert ce plugin
    Création de masques de formulaires
    Le plugin Diogène permet de créer des masques de formulaires spécifiques par secteur sur les trois objets spécifiques SPIP que sont : les articles ; les rubriques ; les sites
    Il permet ainsi de définir en fonction d’un secteur particulier, un masque de formulaire par objet, ajoutant ou enlevant ainsi des champs afin de rendre le formulaire (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

Sur d’autres sites (14264)

  • Android NDK Linking shared library unsatisfied Linker Error

    6 janvier 2014, par nmxprime

    i have a problem,

    Below is the Android.mk

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

    include $(CLEAR_VARS)
    LOCAL_MODULE := ffmpegbuilt
    LOCAL_SRC_FILES := libffmpeg.so
    LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/
    include $(PREBUILT_SHARED_LIBRARY)


    LOCAL_PATH := $(INITIAL_PATH)
    LOCAL_MODULE    := main_module
    LOCAL_ARM_MODE := arm  # remove this if you want thumb mode
    LOCAL_SRC_FILES := main.c
    LOCAL_LDLIBS := -llog
    LOCAL_SHARED_LIBRARIES := ffmpegbuilt
    include $(BUILD_SHARED_LIBRARY)

    It creates the two shared_libraries as expected. i see those two libraries inside libs/armeabi folder
    When i run the application, Unsatisfied Linker error occurs as

    01-06 20:21:38.281: E/AndroidRuntime(435): FATAL EXCEPTION: main
    01-06 20:21:38.281: E/AndroidRuntime(435): java.lang.UnsatisfiedLinkError: Cannot load library: link_image[1962]:    32 could not load needed library 'libffmpeg.so' for 'libmain_module.so' (load_library[1104]: Library 'libffmpeg.so' not found)
    01-06 20:21:38.281: E/AndroidRuntime(435):  at java.lang.Runtime.loadLibrary(Runtime.java:434)
    01-06 20:21:38.281: E/AndroidRuntime(435):  at java.lang.System.loadLibrary(System.java:554)

    What could be the problem, also though i defined LOCAL_MODULE := ffmpegbuilt, why the prebuilt library's module name is not changing ?

  • Exoplayer FFmpeg support

    12 octobre 2016, par srujith poondla

    I am using Android-FFmpeg .aar file fromAndroid-FFmpeg for loading FFmpeg binaries. Is there any way to link the ffmpeg command line output from that module to exoplayer so that it streams the video with out saving the video. Otherwise should i have to develop some FFmpeg decoder to decode video as an extension to exoplayer using Media Codec Renderer ?

  • Installing libmp3lame to work with FFMPEG on raspberry pi

    13 octobre 2016, par Gloin

    I am using the moviepy module with python 3.2 on my RPi 2. It uses FFMPEG to read and write the video, so I installed FFMPEG using these instructions to the letter. Now when I run the program, it says that my video export failed because FFMPEG didn’t find the libmp3lame codec that it needs. How do I got about installing the libmp3lame codec onto my RPi 2 (running Raspian Wheezy) ?

    I think I have to reinstall FFMPEG to install the codec.. how do I do that correctly ?