Recherche avancée

Médias (5)

Mot : - Tags -/open film making

Autres articles (111)

  • 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

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

Sur d’autres sites (5186)

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

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

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