1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using bbiwarg.Graphics;
- using bbiwarg.InputProviders;
- using bbiwarg.VideoHandles;
- namespace bbiwarg.Main
- {
- class OutputTest
- {
- static void Main(string[] args)
- {
- IInputProvider inputProvider = new IisuInputProvider("..\\..\\videos\\1.skv");
- IVideoHandle videoHandle = new VideoHandle(inputProvider);
- Output2D output = new Output2D(videoHandle);
- output.Run(30);
- }
- }
- }
|