我正在使用 Lumia 920 设备。我有一个 H264 视频 (*.mp4) 文件存储在我的应用程序的本地存储中。我需要逐帧访问它的内容。WP8 对此有什么规定吗?
这是我现有的代码:
// Create the file stream and attach it to the MediaElement.
IsolatedStorageFileStream isoVideoFile = new IsolatedStorageFileStream("CameraMovieRec.mp4",
FileMode.Open, FileAccess.Read,
IsolatedStorageFile.GetUserStoreForApplication());
VideoPlayer.SetSource(isoVideoFile);
// Add an event handler for the end of playback.
VideoPlayer.MediaEnded += new RoutedEventHandler(VideoPlayerMediaEnded);
// Start video playback.
VideoPlayer.Play();
而不是VideoPlayer.Play()
我需要像逐帧访问这样的东西。我将非常感谢这方面的任何帮助。