
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (52)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 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, parMediaSPIP 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 2013Jolie 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 Almercompat/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> -
Adrielcafe AndroidAudioConverter Conversion Problem : Nothing happening
17 septembre 2020, par RichardI 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.


I am using the following code :


IConvertCallback myCallback = new IConvertCallback() {
 @Override
 public void onSuccess(File convertedFile) {
 Toast.makeText(MainActivity.this, "SUCCESS: " + convertedFile.getPath(), Toast.LENGTH_LONG).show();
 }

 @Override
 public void onFailure(Exception error) {
 Toast.makeText(MainActivity.this, "ERROR: " + error.getMessage(), Toast.LENGTH_LONG).show();
 }
 };
 Toast.makeText(this, "Converting audio file...", Toast.LENGTH_SHORT).show();
 AndroidAudioConverter.with(this).setFile(source).setFormat(AudioFormat.MP3).setCallback(myCallback).convert();



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 ?


-
Xcode shows error when trying to use FFMpeg
8 octobre 2019, par Tony.LeeI 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 typensl
.Codes can run without any problem, but when writing codes it show those annoying error messages.