Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (77)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (9168)

  • Creating Video Maker in flutter

    22 avril 2023, par Manglam Industrial Product

    I have a application which allow user to pick multiple image from device add text and make a fresh final image using RepaintBoundry Widget which save the final image but now i want to add some more features like user can pick multiple videos and it will save video to device i have made full video editor but my problem is in saving that video which user created. If you want any code then you can ask in comments.

    


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