Recherche avancée

Médias (1)

Mot : - Tags -/stallman

Autres articles (53)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • 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

Sur d’autres sites (9109)

  • Unable to load ffmpeg.so from Android system.loadlibrary

    22 janvier 2014, par Whoami

    I tried bulding ffmpeg version 2.1.3 for android, and following this link :

    http://www.roman10.net/how-to-build-ffmpeg-for-android/

    Somehow i could able to compile the code, and generated .so file, now while loading in the android application through system.loadlibrary(), it generates

    01-22 21:17:31.405: A/libc(886): Fatal signal 11 (SIGSEGV) at 0xdeadbaad (code=1), thread 886 (testbuildffmpeg)

    I have no clue of source of this issue, and it will be really grateful if you point out
    what went wrong ?

  • x86/vp9lpf : add a preload system in FILTER_UPDATE.

    25 janvier 2014, par Clément Bœsch
    x86/vp9lpf : add a preload system in FILTER_UPDATE.
    

    Allow some macro refactoring in filter14().

    • [DH] libavcodec/x86/vp9lpf.asm
  • System.load() is not loading the .so files though they are there

    22 février 2018, par Anuran Barman

    I am trying to load FFMPEG .so files from the /files folder of the application but System.load() is not loading them. My code look like this below :

    static {
           try {
               String[] libs={
                       App.getInstance().getFilesDir().getAbsolutePath()+"/sharedLibs/libavfilter.so",
                       App.getInstance().getFilesDir().getAbsolutePath()+"/sharedLibs/libswscale.so",
                       App.getInstance().getFilesDir().getAbsolutePath()+"/sharedLibs/libavformat.so",
                       App.getInstance().getFilesDir().getAbsolutePath()+"/sharedLibs/libffmpeg-jni.so",
                       App.getInstance().getFilesDir().getAbsolutePath()+"/sharedLibs/libswresample.so",
                       App.getInstance().getFilesDir().getAbsolutePath()+"/sharedLibs/libavutil.so",
                       App.getInstance().getFilesDir().getAbsolutePath()+"/sharedLibs/libavcodec.so"
               };
               for(int i=0;icode>

    If I remove them android studio logcat says library file not found specifying the exact location like /data/0/emulated/myPKGName/files/sharedLibs/.so so it is loading the so files but if I provide them it still shows UnsatisfiedLinkError error, like below :

    java.lang.UnsatisfiedLinkError: dlopen failed: library "libswscale.so" not found

    Why is it in turn searching for libswrescale.so file though that is already loaded from files folder ?