Examples of demodulate()


Examples of com.talixa.specan.demod.fsk.RttyDemod.demodulate()

          RttyDemod demod = new RttyDemod(inputFile);
          String data = demod.demodulateBaudot(low,high,baud);
          FrameDecodedMessage.createAndShowGUI(data);
        } else {
          RttyDemod demod = new RttyDemod(inputFile, outputFileLabel.getText())
          demod.demodulate(low, high, baud);
        }
                       
        frame.dispose();
      }
    });
View Full Code Here

Examples of com.talixa.specan.demod.ook.CwDemod.demodulate()

      @Override
      public void actionPerformed(ActionEvent e) {
        WaveFile waveFile = SpectrumAnalyzer.readWaveFile(inputFile);
        short data[] = SharedDSPFunctions.extractWaveFileData(waveFile);
        CwDemod demod = new CwDemod(data);
        String morse = demod.demodulate();
        int speed = demod.getWpm();
        JOptionPane.showMessageDialog(frame, "Speed: " + speed + " WPM\n" + morse);
      }
    });
    demodMenu.add(ookMenuItem);
View Full Code Here

Examples of com.talixa.specan.demod.psk.Psk31Demod.demodulate()

      public void actionPerformed(ActionEvent e) {
        int center = Integer.valueOf(freqText.getText());
       
        try {
          Psk31Demod demod = new Psk31Demod(inputFile);
          String data = demod.demodulate(center);   
          data = data.replaceAll("\r", "\n");
          FrameDecodedMessage.createAndShowGUI(data);                           
          frame.dispose();       
        } catch (IOException e1) {
          JOptionPane.showMessageDialog(frame, SpecAnConstants.ERROR_FILE_LOAD);
View Full Code Here

Examples of com.talixa.specan.demod.psk.Psk31Demod.demodulate()

    try {     
      WaveFile waveFile = WaveReader.readFromFile(testFile);
      short[] data = SharedDSPFunctions.extractWaveFileData(waveFile);           
      data = filterData(data, 1750, 2150);     
      Psk31Demod demod = new Psk31Demod(data);
      String msg = demod.demodulate(1900);
      System.out.println(msg);
    } catch (IOException e) {     
      e.printStackTrace();
    } catch (RiffFormatException e) {
      e.printStackTrace();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.