
Recherche avancée
Médias (10)
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (34)
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...) -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
Sur d’autres sites (2933)
-
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

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