
Recherche avancée
Autres articles (38)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (4269)
-
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 ?


-
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> -
how to fix ffmpeg error on android python [duplicate]
15 août 2022, par DavidazadI want to port my app for android. I need to import VideoFileClip but this error will show :

No ffmpeg exe could be found . Install ffmpeg on your system , or set the IMAGEIO_FFMPEG_EXE environment variable .

I used this :
os.environ["IMAGEIO_FFMPEG_EXE"] = "/usr/bin/ffmpeg"

but this error will show :

no such file or directory: '/usr/bin/ffmpeg'

Note : on pydroid3 with usingos.environ["IMAGEIO_FFMPEG_EXE"] = "/usr/bin/ffmpeg"
the problem will fix.
please help me