Example #1
0
        /// <summary>
        /// finishes an ffmpeg process
        /// </summary>
        void CloseFileSegment()
        {
            muxer.Finish();
            //ffmpeg.StandardInput.Close();

            // how long should we wait here?
            ffmpeg.WaitForExit(20000);
            ffmpeg.Dispose();
            ffmpeg      = null;
            stderr      = null;
            commandline = null;
            muxer       = null;
        }
Example #2
0
 private void EndSegment()
 {
     _current.Finish();
     _current = null;
 }
Example #3
0
 void endsegment()
 {
     current.Finish();
     current = null;
 }
Example #4
0
 private void endsegment()
 {
     _current.Finish();
     _current = null;
 }