Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (44)

  • 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

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (8056)

  • 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();
           }