Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (34)

  • Supporting all media types

    13 avril 2011, par

    Unlike 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 2011

    You 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 2011

    Contrairement à 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 Davidazad

    I 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 using os.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 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;