OutputTest.cs 570 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using bbiwarg.Graphics;
  7. using bbiwarg.InputProviders;
  8. using bbiwarg.VideoHandles;
  9. namespace bbiwarg.Main
  10. {
  11. class OutputTest
  12. {
  13. static void Main(string[] args)
  14. {
  15. IInputProvider inputProvider = new IisuInputProvider("..\\..\\videos\\1.skv");
  16. IVideoHandle videoHandle = new VideoHandle(inputProvider);
  17. Output2D output = new Output2D(videoHandle);
  18. output.Run(30);
  19. }
  20. }
  21. }