Recherche avancée

Médias (0)

Mot : - Tags -/utilisateurs

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (89)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (12515)

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

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