Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (83)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

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

Sur d’autres sites (10405)

  • How can I record audio from output device using ffmpeg ?

    17 mai 2020, par Nimeth

    I'm building an app (Android and iOS) that user could sing MV Karaoke over HLS video streaming. To produce a final recording for a user, I use ffmpeg to mix the audio stream taken directly from the song with user's recorded vocal and video. But the big challenge is when there are silence periods during recording due to low internet bandwidth, there would be a significant lag time in the final mixed output which is not acceptable for users. How can I use ffmpeg to live record audio being played by another player and use it to mix with user's vocal ?

    


  • firefox not playing ffmpeg processed video

    6 février 2014, par user3176531

    I am merging an mp3 audio file with mp4 video file using this command.

    exec("ffmpeg -i 1.mp3 -i 1.mp4 -acodec copy -vcodec copy -shortest final.mp4")

    Final video is fine. Mp3 audio file sound is merge successfully with mp4 video. Video is being play on all browsers but on firefox it is not playing. It is giving error that 'Video cant be played because the file is currupted'. Can you please tell me what's the issue.

  • I want to convert my 3gp audio file to .wav formate

    11 mars 2020, par gowthami

    I want to convert my 3gp audio to .wav format. I used ffmpeg to convert that one. In that it is showing success not getting any error. But i am unable to get the final output file. Please help me to solve this issue.

    Here is my code.

    sampleDir = new File(Environment.getExternalStorageDirectory().getAbsolutePath(), "/OfficeRecordings/");
       if (!sampleDir.exists()) {
           sampleDir.mkdirs();
       }

       outputFile =  sampleDir+"/"+"sample_record.3gp";

       finalFile =  sampleDir+"/"+"final_record.wav";

       final String[] cmd = new String[]{"-y", "-i", outputFile, finalFile};


       execFFmpegBinary(cmd);


    private void execFFmpegBinary(final String[] command) {

           FFmpeg ffmpeg = FFmpeg.getInstance(this);
           try {
               FFmpeg.getInstance(MainActivity.this).loadBinary(new FFmpegLoadBinaryResponseHandler() {
                   @Override
                   public void onStart() {
                       Log.e("start",".......");

                   }

                   @Override
                   public void onSuccess() {

                       Log.e("success",".......");
                   }

                   @Override
                   public void onFailure() {
                       Log.e("fail",".......");

                   }

                   @Override
                   public void onFinish() {
                       Log.e("finish",".......");

                   }
               });
           } catch (FFmpegNotSupportedException e) {
               e.printStackTrace();
           }