Recherche avancée

Médias (0)

Mot : - Tags -/publication

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (102)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

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

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (12815)

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

  • 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

    


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