Recherche avancée

Médias (91)

Autres articles (52)

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (7816)

  • compat/w32pthreads : use the condition variable API directly when targeting newer...

    9 octobre 2014, par James Almer
    compat/w32pthreads : use the condition variable API directly when targeting newer versions of Windows
    

    Wrap the function calls in a similar fashion to how it’s being done
    with the critical section API.

    Reviewed-by : Michael Niedermayer <michaelni@gmx.at>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] compat/w32pthreads.h
  • Adrielcafe AndroidAudioConverter Conversion Problem : Nothing happening

    17 septembre 2020, par Richard

    I have implemented this project with Android and for some reason it does not seem to be working. It says conversion starting, but doesn't ever do anything past this.

    &#xA;

    I am using the following code :

    &#xA;

    IConvertCallback myCallback = new IConvertCallback() {&#xA;                @Override&#xA;                public void onSuccess(File convertedFile) {&#xA;                    Toast.makeText(MainActivity.this, "SUCCESS: " &#x2B; convertedFile.getPath(), Toast.LENGTH_LONG).show();&#xA;                }&#xA;&#xA;                @Override&#xA;                public void onFailure(Exception error) {&#xA;                    Toast.makeText(MainActivity.this, "ERROR: " &#x2B; error.getMessage(), Toast.LENGTH_LONG).show();&#xA;                }&#xA;            };&#xA;            Toast.makeText(this, "Converting audio file...", Toast.LENGTH_SHORT).show();&#xA;            AndroidAudioConverter.with(this).setFile(source).setFormat(AudioFormat.MP3).setCallback(myCallback).convert();&#xA;

    &#xA;

    The callback does not trigger for success. When I artificially set the encoder to access something that is not there it will trigger and print "ERROR." But when I set it to something that I know is there, nothing happens. It does not successfully convert (I am checking with the file explorer) and does not print any further messages. Any idea what is causing this ?

    &#xA;

  • Xcode shows error when trying to use FFMpeg

    8 octobre 2019, par Tony.Lee

    I try to use FFMpeg in my iOS project. It’s weird when I import libavcodec/avcodec.h and
    libavformat/avformat.h, Xcode show error : " ’TestViewController’ cannot use ’super’ because it is a root class ".

    Everything is OK before I import the two file above and even I comment these two line codes, it shows this error still. And one more thing, Xcode cannot autocomplete to NSLog when I type nsl.

    Codes can run without any problem, but when writing codes it show those annoying error messages.