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