Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (80)

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

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

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

Sur d’autres sites (7409)

  • classes.jar not getting generated in .aar file

    20 septembre 2016, par vasanth

    I am using Android Studio AI-141.216xxx.
    I generated a .aar file from FFMPEG module/library from this project :
    https://github.com/WritingMinds/ffmpeg-android-java

    I then tried to import a .aar locally into a module in some other application.
    imports were failing.
    But, when I checked in the ’generated’ folder,
    I see that classes.jar is empty.

    Would you know why this is happening ? Any pointer is highly appreciated.
    Thanks in advance.

  • Android ndk build ignoring APP_OPTIM and LOCAL_ARM_MODE

    14 novembre 2016, par timatoe

    I have a project (in Android Studio 2.2.2) using the ffmpeg native library.

    I have been able to build my project with no problems until recently.

    Now I am getting the message :

    Error: instruction not supported in Thumb16 mode -- `adds r2,r5,r4,lsr#31'
    Error: selected processor does not support Thumb mode `itet ne'

    I have set APP_OPTIM to debug in my Application.mk file and LOCAL_ARM_MODE to arm in my Android.mk file.

    However, when I try to build my project, it is still showing these two error messages.

    Please tell me if you need more information to help me solve this problem.

    Thanks

  • How can I use a pointer to a pointer in c# ?

    24 juin 2013, par user91986

    I am using C# in Visual Studio 2012 to call a function that is included in a set of external libraries that my project requires. The function requires a double pointer to be passed in but I'm not sure of the exact syntax. Single pointers work great for me. I am using the unsafe keyword.

    AVFormatContext _file = new AVFormatContext();

    fixed (AVFormatContext* p_file = &_file)
    {
      avformat_alloc_output_context2(&p_file,null,null,filename);
    }

    VS is complaining about the "&p_file" syntax with the error of "Cannot take the address of a read-only local variable".

    Any help would be much appreciated !