forked from ArduPilot/MissionPlanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAviPlayer.cs
105 lines (87 loc) · 3.44 KB
/
AviPlayer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/* This class has been written by
* Corinna John (Hannover, Germany)
*
* You may do with this code whatever you like,
* except selling it or claiming any rights/ownership.
*
* Please send me a little feedback about what you're
* using this code for and what changes you'd like to
* see in later versions. (And please excuse my bad english.)
*
* WARNING: This is experimental code.
* Please do not expect "Release Quality".
* */
#region Using directives
using System;
using System.Drawing;
using System.Threading;
using System.Windows.Forms;
#endregion
namespace AviFile {
public class AviPlayer {
private VideoStream videoStream;
private PictureBox picDisplay;
private Control ctlFrameIndexFeedback;
private int millisecondsPerFrame;
private bool isRunning;
private int currentFrameIndex;
private Bitmap currentBitmap;
private delegate void SimpleDelegate();
public event EventHandler Stopped;
/// <summary>Returns the current playback status</summary>
public bool IsRunning {
get { return isRunning; }
}
/// <summary>Create a new AVI Player</summary>
/// <param name="videoStream">Video stream to play</param>
/// <param name="picDisplay">PictureBox to display the video</param>
/// <param name="ctlFrameIndexFeedback">Optional Label to show the current frame index</param>
public AviPlayer(VideoStream videoStream, PictureBox picDisplay, Control ctlFrameIndexFeedback) {
this.videoStream = videoStream;
this.picDisplay = picDisplay;
this.ctlFrameIndexFeedback = ctlFrameIndexFeedback;
this.isRunning = false;
}
/// <summary>Start the video playback</summary>
public void Start() {
isRunning = true;
millisecondsPerFrame = (int)(1000 / videoStream.FrameRate);
Thread thread = new Thread(new ThreadStart(Run));
thread.Start();
}
/// <summary>Extract and display the frames</summary>
private void Run() {
videoStream.GetFrameOpen();
for (currentFrameIndex = 0; (currentFrameIndex < videoStream.CountFrames) && isRunning; currentFrameIndex++) {
//show frame
currentBitmap = videoStream.GetBitmap(currentFrameIndex);
picDisplay.Invoke(new SimpleDelegate(SetDisplayPicture));
picDisplay.Invoke(new SimpleDelegate(picDisplay.Refresh));
//show position
if (ctlFrameIndexFeedback != null) {
ctlFrameIndexFeedback.Invoke(new SimpleDelegate(SetLabelText));
}
//wait for the next frame
Thread.Sleep(millisecondsPerFrame);
}
videoStream.GetFrameClose();
isRunning = false;
if (Stopped != null) {
Stopped(this, EventArgs.Empty);
}
}
/// <summary>Change the visible frame</summary>
private void SetDisplayPicture() {
picDisplay.Image = currentBitmap;
}
/// <summary>Change the frame index feedback</summary>
private void SetLabelText() {
ctlFrameIndexFeedback.Text = currentFrameIndex.ToString();
}
/// <summary>Stop the video playback</summary>
public void Stop() {
isRunning = false;
}
}
}