Package com.meapsoft

Examples of com.meapsoft.EDLFile


   
    if (numSubChunks <= 1)
      numSubChunks = 2;

    if(outFile == null)
      outFile = new EDLFile("");
  }
View Full Code Here


    int ind = opt.getOptind();
    if(ind > args.length)
      printUsageAndExit();
       
    featFile = new FeatFile(args[args.length-1]);
    outFile = new EDLFile(outFileName);

    System.out.println("Composing " + outFileName +
               " from " +  args[args.length-1] + ".");
  }
View Full Code Here

    if (names[0] == null)
      return;

    // System.out.println("you selected EDLFile: " + names[0]);
    eDLInputFile = new EDLFile(names[0]);
    try
    {
      eDLInputFile.readFile();
    }
    catch (Exception e)
View Full Code Here

        mainWindow);

    if (names[0] == null)
      return;

    eDLOutputFile = new EDLFile(names[0]);

    Vector selectedChunks = drawingPanel.renderer.getSelectedEDLChunks();

    double currentTime = 0.0;
View Full Code Here

        cVI.dstTime);
  }

  public void playSelectedChunks(boolean addBlips)
  {
    EDLFile edl = new EDLFile("temp file");

    boolean playFeatChunks = playFeatChunksButton.isSelected();
    Vector selectedChunks = null;

    String blipWav = dataDirectory + System.getProperty("file.separator")
View Full Code Here

    playThread.start();
  }

  public static void main(String[] args)
  {
    EDLFile eDLFile = null;
    FeatFile featFile = null;

    if (args.length == 1)
    {
      featFile = new FeatFile(args[0]);
    }
    else if (args.length == 2)
    {
      featFile = new FeatFile(args[0]);
      eDLFile = new EDLFile(args[1]);
    }
    else
    {
      System.out
          .println("I don't understand your command line arguments.");
      System.exit(-1);
    }

    try
    {
      if (featFile != null)
        featFile.readFile();

      if (eDLFile != null)
        eDLFile.readFile();
    }
    catch (Exception e)
    {
      e.printStackTrace();
      System.exit(1);
View Full Code Here

        this(featFN, DBFN, outFN, new EuclideanDist());
    }

    public MashupComposer(String featFN, String DBFN, String outFN, ChunkDist cd)
    {
        this(new FeatFile(featFN), new FeatFile(DBFN), new EDLFile(outFN), cd);
    }
View Full Code Here

        outFile = outFN;
        dist = cd;
        featdim = cd.featdim;

        if(outFile == null)
            outFile = new EDLFile("");
    }
View Full Code Here

        if(ind > args.length)
            printUsageAndExit();
       
        dstFile = new FeatFile(args[args.length-2]);
        DBFile = new FeatFile(args[args.length-1]);
        outFile = new EDLFile(outFileName);

        System.out.println("Composing " + outFileName +
                           " from " +  args[args.length-2] +
                           " (chunk db: " + args[args.length-1] + ").");
    }
View Full Code Here

        this(featFN, outFN, 5000,300);
    }

    public HeadBangComposer(String featFN, String outFN, int binsNum, int newPieceLength)
    {
        this(new FeatFile(featFN), new EDLFile(outFN), binsNum, newPieceLength);
    }
View Full Code Here

TOP

Related Classes of com.meapsoft.EDLFile

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.