IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Java Discussion :

Lire et enregsitrer un fichier audio en java


Sujet :

Java

  1. #1
    Membre averti
    Homme Profil pro
    Architecte réseau
    Inscrit en
    Juillet 2011
    Messages
    43
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Essonne (Île de France)

    Informations professionnelles :
    Activité : Architecte réseau
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Juillet 2011
    Messages : 43
    Par défaut Lire et enregsitrer un fichier audio en java
    Bonjour

    Dans le cadre d'un projet scolaire, je travailles sur un projet de reconnaissance vocale sous java que je dois rendre avant 20 septembre. Il me reste à coder une fonction qui lit un fichier son (passé via un microphone ) et enregistrer ce fichier son pour enfin le passer en paramètre pour la reconnaissance.

    pour l'instant mon programme reconnait juste les fichiers audio déjà enregistré et je voudrais bien que mon code reconnait le son que je lui passe via un microphone et pas le son qui lit a partir d'un disque.

    On ma recommandé ces ligne de code, mais je sais pas trop comment les utiliser
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
     
    Step 1:
    First Read The Audio From MicroPhone
     
    int cnt = targetDataLine.read( tempBuffer,0, tempBuffer.length);
     
     
    Step 2:
    Save data in output stream
     
    byteArrayOutputStream.write(tempBuffer, 0, cnt);
     
    Step 3:
    Get the saved data into a byte array object.
     
    byte audioData[]=byteArrayOutputStream.toByteArray();
     
    Step 4:
    Get an input stream on the byte array containing the data
     
    InputStream byteArrayInputStream = new ByteArrayInputStream(audioData);
    AudioFormat audioFormat = getAudioFormat();
    audioInputStream =new AudioInputStream(byteArrayInputStream,audioFormat,
    audioData.length/audioFormat.getFrameSize());
     
     
     
    Step 5: Save To File
     
    if (AudioSystem.isFileTypeSupported(AudioFileFormat.Type.AU,
    audioInputStream)) {
    AudioSystem.write(audioInputStream, AudioFileFormat.Type.AU, file);
    }

  2. #2
    Modérateur
    Avatar de wax78
    Homme Profil pro
    Chef programmeur
    Inscrit en
    Août 2006
    Messages
    4 094
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 44
    Localisation : Belgique

    Informations professionnelles :
    Activité : Chef programmeur
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Août 2006
    Messages : 4 094
    (Les "ça ne marche pas", même écrits sans faute(s), vous porteront discrédit ad vitam æternam et malheur pendant 7 ans)

    N'oubliez pas de consulter les FAQ Java et les cours et tutoriels Java

  3. #3
    Membre averti
    Homme Profil pro
    Architecte réseau
    Inscrit en
    Juillet 2011
    Messages
    43
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Essonne (Île de France)

    Informations professionnelles :
    Activité : Architecte réseau
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Juillet 2011
    Messages : 43
    Par défaut
    Bonjour

    J'ai consulté les liens que tu m'a envoyer ( je te remercie d’ailleurs) et j'ai trouvé un programme java qui fonctionne et qui enregistre le son en .wav et .au sur mon disque ce qui vas me permettre de faire des testes, par contre je veux pas que ce programme aie une interface graphique c-à-d, il fait l'enregistrement de l'audio sans que je clique sur capture ou autre chose et il arrête d’enregistrer à mon silence et qu'il m'affiche si y a quelque chose sur la console.

    Est ce possible avec ce code ?

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    /*File AudioRecorder02.java
    Copyright 2003, Richard G. Baldwin
     
    This program demonstrates the capture of audio
    data from a microphone into an audio file.
     
    A GUI appears on the screen containing the
    following buttons:
      Capture
      Stop
     
    In addition, five radio buttons appear on the
    screen allowing the user to select one of the
    following five audio output file formats:
     
      AIFC
      AIFF
      AU
      SND
      WAVE
     
    When the user clicks the Capture button, input
    data from a microphone is captured and saved in
    an audio file named junk.xx having the specified
    file format.  (xx is the file extension for the
    specified file format.  You can easily change the
    file name to something other than junk if you
    choose to do so.)
     
    Data capture stops and the output file is closed
    when the user clicks the Stop button.
     
    It should be possible to play the audio file
    using any of a variety of readily available
    media players, such as the Windows Media Player.
     
    Not all file types can be created on all systems.
    For example, types AIFC and SND produce a "type
    not supported" error on my system.
     
    Be sure to release the old file from the media
    player before attempting to create a new file
    with the same extension.
     
    Tested using SDK 1.4.1 under Win2000
    ************************************************/
     
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import javax.sound.sampled.*;
     
    public class AudioRecorder02 extends JFrame{
     
      AudioFormat audioFormat;
      TargetDataLine targetDataLine;
     
      final JButton captureBtn =
                              new JButton("Capture");
      final JButton stopBtn = new JButton("Stop");
     
      final JPanel btnPanel = new JPanel();
      final ButtonGroup btnGroup = new ButtonGroup();
      final JRadioButton aifcBtn =
                            new JRadioButton("AIFC");
      final JRadioButton aiffBtn =
                            new JRadioButton("AIFF");
      final JRadioButton auBtn =//selected at startup
                         new JRadioButton("AU",true);
      final JRadioButton sndBtn =
                             new JRadioButton("SND");
      final JRadioButton waveBtn =
                            new JRadioButton("WAVE");
     
      public static void main( String args[]){
        new AudioRecorder02();
      }//end main
     
      public AudioRecorder02(){//constructor
        captureBtn.setEnabled(true);
        stopBtn.setEnabled(false);
     
        //Register anonymous listeners
        captureBtn.addActionListener(
          new ActionListener(){
            public void actionPerformed(
                                      ActionEvent e){
              captureBtn.setEnabled(false);
              stopBtn.setEnabled(true);
              //Capture input data from the
              // microphone until the Stop button is
              // clicked.
              captureAudio();
            }//end actionPerformed
          }//end ActionListener
        );//end addActionListener()
     
        stopBtn.addActionListener(
          new ActionListener(){
            public void actionPerformed(
                                      ActionEvent e){
              captureBtn.setEnabled(true);
              stopBtn.setEnabled(false);
              //Terminate the capturing of input data
              // from the microphone.
              targetDataLine.stop();
              targetDataLine.close();
            }//end actionPerformed
          }//end ActionListener
        );//end addActionListener()
     
        //Put the buttons in the JFrame
        getContentPane().add(captureBtn);
        getContentPane().add(stopBtn);
     
        //Include the radio buttons in a group
        btnGroup.add(aifcBtn);
        btnGroup.add(aiffBtn);
        btnGroup.add(auBtn);
        btnGroup.add(sndBtn);
        btnGroup.add(waveBtn);
     
        //Add the radio buttons to the JPanel
        btnPanel.add(aifcBtn);
        btnPanel.add(aiffBtn);
        btnPanel.add(auBtn);
        btnPanel.add(sndBtn);
        btnPanel.add(waveBtn);
     
        //Put the JPanel in the JFrame
        getContentPane().add(btnPanel);
     
        //Finish the GUI and make visible
        getContentPane().setLayout(new FlowLayout());
        setTitle("Copyright 2003, R.G.Baldwin");
        setDefaultCloseOperation(EXIT_ON_CLOSE);
        setSize(300,120);
        setVisible(true);
      }//end constructor
     
      //This method captures audio input from a
      // microphone and saves it in an audio file.
      private void captureAudio(){
        try{
          //Get things set up for capture
          audioFormat = getAudioFormat();
          DataLine.Info dataLineInfo =
                              new DataLine.Info(
                                TargetDataLine.class,
                                audioFormat);
          targetDataLine = (TargetDataLine)
                   AudioSystem.getLine(dataLineInfo);
     
          //Create a thread to capture the microphone
          // data into an audio file and start the
          // thread running.  It will run until the
          // Stop button is clicked.  This method
          // will return after starting the thread.
          new CaptureThread().start();
        }catch (Exception e) {
          e.printStackTrace();
          System.exit(0);
        }//end catch
      }//end captureAudio method
     
      //This method creates and returns an
      // AudioFormat object for a given set of format
      // parameters.  If these parameters don't work
      // well for you, try some of the other
      // allowable parameter values, which are shown
      // in comments following the declarations.
      private AudioFormat getAudioFormat(){
        float sampleRate = 44100;
        //8000,11025,16000,22050,44100
        int sampleSizeInBits = 16;
        //8,16
        int channels = 1;
        //1,2
        boolean signed = true;
        //true,false
        boolean bigEndian = false;
        //true,false
        return new AudioFormat(sampleRate,
                               sampleSizeInBits,
                               channels,
                               signed,
                               bigEndian);
      }//end getAudioFormat
    //=============================================//
     
    //Inner class to capture data from microphone
    // and write it to an output audio file.
    class CaptureThread extends Thread{
      public void run(){
        AudioFileFormat.Type fileType = null;
        File audioFile = null;
     
        //Set the file type and the file extension
        // based on the selected radio button.
        if(aifcBtn.isSelected()){
          fileType = AudioFileFormat.Type.AIFC;
          audioFile = new File("junk.aifc");
        }else if(aiffBtn.isSelected()){
          fileType = AudioFileFormat.Type.AIFF;
          audioFile = new File("junk.aif");
        }else if(auBtn.isSelected()){
          fileType = AudioFileFormat.Type.AU;
          audioFile = new File("junk.au");
        }else if(sndBtn.isSelected()){
          fileType = AudioFileFormat.Type.SND;
          audioFile = new File("junk.snd");
        }else if(waveBtn.isSelected()){
          fileType = AudioFileFormat.Type.WAVE;
          audioFile = new File("junk.wav");
        }//end if
     
        try{
          targetDataLine.open(audioFormat);
          targetDataLine.start();
          AudioSystem.write(
                new AudioInputStream(targetDataLine),
                fileType,
                audioFile);
        }catch (Exception e){
          e.printStackTrace();
        }//end catch
     
      }//end run
    }//end inner class CaptureThread
    //=============================================//
     
    }//end outer class AudioRecorder02.java

  4. #4
    Membre averti
    Homme Profil pro
    Architecte réseau
    Inscrit en
    Juillet 2011
    Messages
    43
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Essonne (Île de France)

    Informations professionnelles :
    Activité : Architecte réseau
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Juillet 2011
    Messages : 43
    Par défaut
    Bonjour

    J'ai consulté les liens que tu m'a envoyer ( je te remercie d’ailleurs) et j'ai trouvé un programme java qui fonctionne et qui enregistre le son en .wav et .au sur mon disque ce qui vas me permettre de faire des testes, par contre je veux pas que ce programme aie une interface graphique c-à-d, il fait l'enregistrement de l'audio sans que je clique sur capture ou autre chose et il arrête d’enregistrer à mon silence et qu'il m'affiche si y a quelque chose sur la console.

    Est ce possible avec ce code ?

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    /*File AudioRecorder02.java
    Copyright 2003, Richard G. Baldwin
     
    This program demonstrates the capture of audio
    data from a microphone into an audio file.
     
    A GUI appears on the screen containing the
    following buttons:
      Capture
      Stop
     
    In addition, five radio buttons appear on the
    screen allowing the user to select one of the
    following five audio output file formats:
     
      AIFC
      AIFF
      AU
      SND
      WAVE
     
    When the user clicks the Capture button, input
    data from a microphone is captured and saved in
    an audio file named junk.xx having the specified
    file format.  (xx is the file extension for the
    specified file format.  You can easily change the
    file name to something other than junk if you
    choose to do so.)
     
    Data capture stops and the output file is closed
    when the user clicks the Stop button.
     
    It should be possible to play the audio file
    using any of a variety of readily available
    media players, such as the Windows Media Player.
     
    Not all file types can be created on all systems.
    For example, types AIFC and SND produce a "type
    not supported" error on my system.
     
    Be sure to release the old file from the media
    player before attempting to create a new file
    with the same extension.
     
    Tested using SDK 1.4.1 under Win2000
    ************************************************/
     
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import javax.sound.sampled.*;
     
    public class AudioRecorder02 extends JFrame{
     
      AudioFormat audioFormat;
      TargetDataLine targetDataLine;
     
      final JButton captureBtn =
                              new JButton("Capture");
      final JButton stopBtn = new JButton("Stop");
     
      final JPanel btnPanel = new JPanel();
      final ButtonGroup btnGroup = new ButtonGroup();
      final JRadioButton aifcBtn =
                            new JRadioButton("AIFC");
      final JRadioButton aiffBtn =
                            new JRadioButton("AIFF");
      final JRadioButton auBtn =//selected at startup
                         new JRadioButton("AU",true);
      final JRadioButton sndBtn =
                             new JRadioButton("SND");
      final JRadioButton waveBtn =
                            new JRadioButton("WAVE");
     
      public static void main( String args[]){
        new AudioRecorder02();
      }//end main
     
      public AudioRecorder02(){//constructor
        captureBtn.setEnabled(true);
        stopBtn.setEnabled(false);
     
        //Register anonymous listeners
        captureBtn.addActionListener(
          new ActionListener(){
            public void actionPerformed(
                                      ActionEvent e){
              captureBtn.setEnabled(false);
              stopBtn.setEnabled(true);
              //Capture input data from the
              // microphone until the Stop button is
              // clicked.
              captureAudio();
            }//end actionPerformed
          }//end ActionListener
        );//end addActionListener()
     
        stopBtn.addActionListener(
          new ActionListener(){
            public void actionPerformed(
                                      ActionEvent e){
              captureBtn.setEnabled(true);
              stopBtn.setEnabled(false);
              //Terminate the capturing of input data
              // from the microphone.
              targetDataLine.stop();
              targetDataLine.close();
            }//end actionPerformed
          }//end ActionListener
        );//end addActionListener()
     
        //Put the buttons in the JFrame
        getContentPane().add(captureBtn);
        getContentPane().add(stopBtn);
     
        //Include the radio buttons in a group
        btnGroup.add(aifcBtn);
        btnGroup.add(aiffBtn);
        btnGroup.add(auBtn);
        btnGroup.add(sndBtn);
        btnGroup.add(waveBtn);
     
        //Add the radio buttons to the JPanel
        btnPanel.add(aifcBtn);
        btnPanel.add(aiffBtn);
        btnPanel.add(auBtn);
        btnPanel.add(sndBtn);
        btnPanel.add(waveBtn);
     
        //Put the JPanel in the JFrame
        getContentPane().add(btnPanel);
     
        //Finish the GUI and make visible
        getContentPane().setLayout(new FlowLayout());
        setTitle("Copyright 2003, R.G.Baldwin");
        setDefaultCloseOperation(EXIT_ON_CLOSE);
        setSize(300,120);
        setVisible(true);
      }//end constructor
     
      //This method captures audio input from a
      // microphone and saves it in an audio file.
      private void captureAudio(){
        try{
          //Get things set up for capture
          audioFormat = getAudioFormat();
          DataLine.Info dataLineInfo =
                              new DataLine.Info(
                                TargetDataLine.class,
                                audioFormat);
          targetDataLine = (TargetDataLine)
                   AudioSystem.getLine(dataLineInfo);
     
          //Create a thread to capture the microphone
          // data into an audio file and start the
          // thread running.  It will run until the
          // Stop button is clicked.  This method
          // will return after starting the thread.
          new CaptureThread().start();
        }catch (Exception e) {
          e.printStackTrace();
          System.exit(0);
        }//end catch
      }//end captureAudio method
     
      //This method creates and returns an
      // AudioFormat object for a given set of format
      // parameters.  If these parameters don't work
      // well for you, try some of the other
      // allowable parameter values, which are shown
      // in comments following the declarations.
      private AudioFormat getAudioFormat(){
        float sampleRate = 44100;
        //8000,11025,16000,22050,44100
        int sampleSizeInBits = 16;
        //8,16
        int channels = 1;
        //1,2
        boolean signed = true;
        //true,false
        boolean bigEndian = false;
        //true,false
        return new AudioFormat(sampleRate,
                               sampleSizeInBits,
                               channels,
                               signed,
                               bigEndian);
      }//end getAudioFormat
    //=============================================//
     
    //Inner class to capture data from microphone
    // and write it to an output audio file.
    class CaptureThread extends Thread{
      public void run(){
        AudioFileFormat.Type fileType = null;
        File audioFile = null;
     
        //Set the file type and the file extension
        // based on the selected radio button.
        if(aifcBtn.isSelected()){
          fileType = AudioFileFormat.Type.AIFC;
          audioFile = new File("junk.aifc");
        }else if(aiffBtn.isSelected()){
          fileType = AudioFileFormat.Type.AIFF;
          audioFile = new File("junk.aif");
        }else if(auBtn.isSelected()){
          fileType = AudioFileFormat.Type.AU;
          audioFile = new File("junk.au");
        }else if(sndBtn.isSelected()){
          fileType = AudioFileFormat.Type.SND;
          audioFile = new File("junk.snd");
        }else if(waveBtn.isSelected()){
          fileType = AudioFileFormat.Type.WAVE;
          audioFile = new File("junk.wav");
        }//end if
     
        try{
          targetDataLine.open(audioFormat);
          targetDataLine.start();
          AudioSystem.write(
                new AudioInputStream(targetDataLine),
                fileType,
                audioFile);
        }catch (Exception e){
          e.printStackTrace();
        }//end catch
     
      }//end run
    }//end inner class CaptureThread
    //=============================================//
     
    }//end outer class AudioRecorder02.java

  5. #5
    Modérateur
    Avatar de wax78
    Homme Profil pro
    Chef programmeur
    Inscrit en
    Août 2006
    Messages
    4 094
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 44
    Localisation : Belgique

    Informations professionnelles :
    Activité : Chef programmeur
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Août 2006
    Messages : 4 094
    Par défaut
    Oui c'est possible, t'es pas obligé d'avoir un GUI pour utiliser la carte son.

    Enleve tout ce qui concerne le GUI, garde le reste, fabrique un main qui fait ce que tu veux et c'est parti
    (Les "ça ne marche pas", même écrits sans faute(s), vous porteront discrédit ad vitam æternam et malheur pendant 7 ans)

    N'oubliez pas de consulter les FAQ Java et les cours et tutoriels Java

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Lire les métadonnées de fichiers audios
    Par 4rocky4 dans le forum Multimédia
    Réponses: 0
    Dernier message: 15/03/2011, 10h54
  2. comment je peux lire un fichier audio avec java.
    Par imad24 dans le forum Multimédia
    Réponses: 2
    Dernier message: 22/01/2010, 17h28
  3. ouvrir des fichier audio sur java
    Par IMEN_ dans le forum Multimédia
    Réponses: 2
    Dernier message: 05/08/2007, 23h21
  4. Lire/Ecrire dans un fichier .xml depuis Java
    Par SkyBioSS dans le forum Format d'échange (XML, JSON...)
    Réponses: 13
    Dernier message: 16/05/2006, 17h38
  5. [EXCEL]Comment lire à partir d'un fichier Excel en java?
    Par BOUSHIH dans le forum Documents
    Réponses: 3
    Dernier message: 20/04/2006, 11h04

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo