diff --git a/MoonWorks.Test.Common/Content/Videos/hello.ogv b/MoonWorks.Test.Common/Content/Videos/hello.ogv deleted file mode 100644 index 52f9b2a..0000000 Binary files a/MoonWorks.Test.Common/Content/Videos/hello.ogv and /dev/null differ diff --git a/VideoPlayer/VideoPlayerGame.cs b/VideoPlayer/VideoPlayerGame.cs index f8a28a8..cc32bdd 100644 --- a/VideoPlayer/VideoPlayerGame.cs +++ b/VideoPlayer/VideoPlayerGame.cs @@ -60,11 +60,12 @@ namespace MoonWorks.Test GraphicsDevice.Wait(); // Load the video - video = new Video.VideoAV1(TestUtils.GetVideoPath("hello.obu")); + video = new Video.VideoAV1(TestUtils.GetVideoPath("hello.obu"), 25); // Play the video - videoPlayer = new VideoPlayer(GraphicsDevice, AudioDevice); + videoPlayer = new VideoPlayer(GraphicsDevice); videoPlayer.Load(video); + videoPlayer.Loop = true; videoPlayer.Play(); }