コード例 #1
0
        static void Main(string[] args)
        {
            ArgsStruct p = ArgsParser.parseArgs(args, false);

            if (p == null)
            {
                ArgsParser.printUsage();
                Console.WriteLine("Options: ");
                Console.WriteLine("\t--options-cropTime:<timedelay>\tto drop <timedelay> data before wavfile");
                Console.WriteLine("Commands:");
                Console.WriteLine("\t--command-flush\tSend a End Signal to tell server all is finished");
                return;
            }
            if (p.Commands.Contains("flush"))
            {
                SendEnd();
                return;
            }
            ArgsParser.printArgs(p);
            Console.WriteLine("---- Work As Pipe ----");
            Pipe_Client pclient = new Pipe_Client("VocalUtau.WavTool.PPC", 2000);

            pclient.LockWavFile();
            double delay = 0;

            if (p.Options.ContainsKey("croptime"))
            {
                double.TryParse(p.Options["croptime"], out delay);
            }
            pclient.Append(p.Inputfilename, p.Offset, p.Length, p.Ovr, p.PV, delay);
            pclient.Flush();
            pclient.UnLockWavFile();
            pclient.Dispose();
        }
コード例 #2
0
        static void SendEnd()
        {
            Console.WriteLine("---- Work As Pipe ----");
            Pipe_Client pclient = new Pipe_Client("VocalUtau.WavTool.PPC", 2000);

            pclient.LockWavFile();
            pclient.SendEndSignal(-1);
            pclient.UnLockWavFile();
            pclient.Dispose();
        }