Package com.meapsoft.composers

Examples of com.meapsoft.composers.BlipComposer


            RefreshGUI();
        }
    else if (command.equals("play_blips"))
        {
            EDLFile edl = new EDLFile("null");
            BlipComposer b = new BlipComposer(segmentFile, edl);
            b.setBlipWav(dataDirectory + slash + "blip.wav");
            b.compose();
            Synthesizer synth = new Synthesizer(edl, null);
           
            //add the waveform panel as a line listener
            synth.addLineListener((LineListener)meapsoftGUI.waveformPanel);
           
View Full Code Here


         if(mWithBlipsChk.isSelected())
         {
           //see which feat file we should use
           FeatFile file = playOriginal ? BasePanel.segmentFile : BasePanel.edlFile;
          
                BlipComposer b = new BlipComposer(file, edl);
                b.setBlipWav(BasePanel.dataDirectory + BasePanel.slash + "blip.wav");
                b.compose();
         }
         else
         {
           //set this file as read already
           edl.haveReadFile = true;
View Full Code Here

    {
      composer = new NNComposer(featFile, edlFile);
    }
    else if (selectedComposer.equals("BlipComposer"))
    {
      composer = new BlipComposer(featFile, edlFile);
            ((BlipComposer)composer).setBlipWav(dataDirectory+slash+"blip.wav");
    }
    else if (selectedComposer.equals("MashupComposer"))
    {
      if (chunkDBFeaturesNameFull == null)
View Full Code Here

        initComponents();
    }
   
    public int initComposer()
    {
    mComposer = new BlipComposer(mParentTab.featFile, mParentTab.edlFile,
                        jCheckBox1.isSelected());
        ((BlipComposer)mComposer).setBlipWav(mParentTab.dataDirectory + mParentTab.slash + "blip.wav");
   
        return 0;
    }
View Full Code Here

TOP

Related Classes of com.meapsoft.composers.BlipComposer

Copyright © 2018 www.massapicom. 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.