コード例 #1
0
 public LengthParser(SoxHelpers outerInstance, FFMpegCallbacks callbacks)
     : base(callbacks._completedAction, callbacks._messageAction)
 {
     _outerInstance = outerInstance;
     _messageAction = callbacks._messageAction;
     _completedAction= callbacks._completedAction;
 }
コード例 #2
0
 internal StreamGobbler(SoxHelpers outerInstance, System.IO.Stream inputStream, string type, FFMpegCallbacks sc)
 {
     this.outerInstance = outerInstance;
     this.inputStream = inputStream;
     this.type = type;
     this.sc = sc;
 }
コード例 #3
0
        public CrossfadeCat(SoxHelpers soxHelper, string firstFile, string secondFile, double fadeLength, string outFile)
        {
            _soxHelper  = soxHelper;
            mFirstFile  = firstFile;
            mSecondFile = secondFile;
            mFadeLength = fadeLength;
            mFinalMix   = outFile;

            //double mClipLength = mController.getLength(mFirstFile);
        }