Recherche avancée

Médias (91)

Autres articles (66)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (11185)

  • Merge two audio file using ffmpeg

    24 novembre 2017, par ajay dhadhal

    I want to merge Two mp3 file using ffmpeg library.but not succsesfull.Following is my code

    GeneralUtils.checkForPermissionsMAndAbove(MergerActivity.this, true);
    LoadJNI vk = new LoadJNI();
    try {
       String workFolder = getApplicationContext().getFilesDir().getAbsolutePath();
       //String[] complexCommand = {"ffmpeg","-i", "/sdcard/videokit/in.mp4"};
       String[] complexCommand = {"ffmpeg -i \"concat: /storage/internalsd/Music/02 Love Dose.mp3| /storage/internalsd/Music/02 Love Dose.mp3\" -acodec copy output.mp3"};

       vk.run(complexCommand , workFolder , getApplicationContext());
       Log.i("test", "ffmpeg4android finished successfully");
    } catch (Throwable e) {
       Log.e("test", "vk run exception.", e);
    }

    The error log display following

    vk run exception.

    com.netcompss.ffmpeg4android.CommandValidationException
       at com.netcompss.loader.LoadJNI.run(LoadJNI.java:39)
       at com.netcompss.loader.LoadJNI.run(LoadJNI.java:55)
       at com.handyaudio.MergerActivity.onMergeButtonClicked(MergerActivity.java:356)
       at com.handyaudio.MergerActivity.onClick(MergerActivity.java:272)
       at android.view.View.performClick(View.java:4446)
       at android.view.View$PerformClick.run(View.java:18437)
       at android.os.Handler.handleCallback(Handler.java:733)

    Please help to solve error.

  • Heroku and ffmpeg [closed]

    29 octobre 2020, par Cohen

    I am having trouble getting heroku to work with ffmpeg, I get an opus not loaded error even when I have loaded opus on heroku and in requirements. Music works completely fine on my own pc but won't on online host

    


  • ffmpeg to crop a mp3 file in android ?

    3 avril 2012, par Vinod Dsouza

    I was following this question and found that it could be used in my android music app to crop a mp3 file.But unfortunately I'm not getting enough material how to use this command and how to integrate with my app.So it would be great if somebody helps me in this.