OSDN Git Service

cd09df6e71dd392c8a549202bee30bb4426b8c95
[handbrake-jp/handbrake-jp-git.git] / win / C# / frmPreview.cs
1 using System;\r
2 using System.Windows.Forms;\r
3 using System.Threading;\r
4 using System.Diagnostics;\r
5 using System.Runtime.InteropServices;\r
6 using System.IO;\r
7 using Handbrake.EncodeQueue;\r
8 using Handbrake.Functions;\r
9 using QTOControlLib;\r
10 using QTOLibrary;\r
11 \r
12 namespace Handbrake\r
13 {\r
14     public partial class frmPreview : Form\r
15     {\r
16 \r
17         QueryGenerator hb_common_func = new QueryGenerator();\r
18         EncodeAndQueueHandler process = new EncodeAndQueueHandler();\r
19         private delegate void UpdateUIHandler();\r
20         String currently_playing = "";\r
21         readonly frmMain mainWindow;\r
22         private Thread player;\r
23         private Boolean noQT;\r
24 \r
25         public frmPreview(frmMain mw)\r
26         {\r
27             try\r
28             {\r
29                 InitializeComponent();\r
30             }\r
31             catch (Exception)\r
32             {\r
33                 noQT = true;\r
34             }\r
35             this.mainWindow = mw;\r
36             cb_preview.SelectedIndex = 0;\r
37             cb_duration.SelectedIndex = 1;\r
38 \r
39             cb_preview.Items.Clear();\r
40             for (int i = 1; i <= Properties.Settings.Default.previewScanCount; i++)\r
41                 cb_preview.Items.Add(i.ToString());\r
42         }\r
43 \r
44         #region Encode Sample\r
45         private void btn_playVLC_Click(object sender, EventArgs e)\r
46         {\r
47             lbl_status.Visible = true;\r
48             try\r
49             {\r
50                 if (!noQT)\r
51                     QTControl.URL = "";\r
52 \r
53                 if (File.Exists(currently_playing))\r
54                     File.Delete(currently_playing);\r
55             }\r
56             catch (Exception)\r
57             {\r
58                 MessageBox.Show(this, "Unable to delete previous preview file. You may need to restart the application.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);\r
59             }\r
60 \r
61             btn_playQT.Enabled = false;\r
62             btn_playVLC.Enabled = false;\r
63             lbl_status.Text = "Encoding Sample for (VLC) ...";\r
64             int duration;\r
65             int.TryParse(cb_duration.Text, out duration);\r
66             String query = hb_common_func.GenerateCLIQuery(mainWindow, duration, cb_preview.Text);\r
67             ThreadPool.QueueUserWorkItem(procMonitor, query);\r
68         }\r
69         private void btn_playQT_Click(object sender, EventArgs e)\r
70         {\r
71             if (noQT)\r
72             {\r
73                 MessageBox.Show(this, "It would appear QuickTime 7 is not installed or not accessible. Please (re)install QuickTime.", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);\r
74                 return;\r
75             }\r
76             if (mainWindow.text_destination.Text.Contains(".mkv"))\r
77             {\r
78                 MessageBox.Show(this,\r
79                                 "The QuickTime Control does not support MKV files, It is recommended you use VLC option instead.",\r
80                                 "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);\r
81             }\r
82             else\r
83             {\r
84                 lbl_status.Visible = true;\r
85                 try\r
86                 {\r
87                     QTControl.URL = "";\r
88                     if (File.Exists(currently_playing))\r
89                         File.Delete(currently_playing);\r
90                 }\r
91                 catch (Exception)\r
92                 {\r
93                     MessageBox.Show(this, "Unable to delete previous preview file. You may need to restart the application.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);\r
94                 }\r
95 \r
96                 btn_playQT.Enabled = false;\r
97                 btn_playVLC.Enabled = false;\r
98                 lbl_status.Text = "Encoding Sample for (QT) ...";\r
99                 int duration;\r
100                 int.TryParse(cb_duration.Text, out duration);\r
101                 String query = hb_common_func.GenerateCLIQuery(mainWindow, duration, cb_preview.Text);\r
102 \r
103                 ThreadPool.QueueUserWorkItem(procMonitor, query);\r
104             }\r
105         }\r
106         private void procMonitor(object state)\r
107         {\r
108             // Make sure we are not already encoding and if we are then display an error.\r
109             if (process.hbProcess != null)\r
110                 MessageBox.Show(this, "Handbrake is already encoding a video!", "Status", MessageBoxButtons.OK, MessageBoxIcon.Warning);\r
111             else\r
112             {\r
113                 process.RunCli((string)state);\r
114                 if (process.hbProcess != null)\r
115                 {\r
116                     process.hbProcess.WaitForExit();\r
117                     process.hbProcess = null;\r
118                 }\r
119                 encodeCompleted();\r
120             }\r
121         }\r
122         private void encodeCompleted()\r
123         {\r
124             try\r
125             {\r
126                 if (InvokeRequired)\r
127                 {\r
128                     BeginInvoke(new UpdateUIHandler(encodeCompleted));\r
129                     return;\r
130                 }\r
131                 if (!noQT)\r
132                     btn_playQT.Enabled = true;\r
133                 btn_playVLC.Enabled = true;\r
134 \r
135                 // Decide which player to use.\r
136                 String playerSelection = lbl_status.Text.Contains("QT") ? "QT" : "VLC";\r
137 \r
138                 lbl_status.Text = "Loading Clip ...";\r
139 \r
140                 // Get the sample filename\r
141                 if (mainWindow.text_destination.Text != "")\r
142                     currently_playing = mainWindow.text_destination.Text.Replace(".mp4", "_sample.mp4").Replace(".m4v", "_sample.m4v").Replace(".mkv", "_sample.mkv"); ;\r
143 \r
144                 // Play back in QT or VLC\r
145                 if (playerSelection == "QT")\r
146                     play();\r
147                 else\r
148                     playVLC();\r
149 \r
150                 lbl_status.Text = "";\r
151             }\r
152             catch (Exception exc)\r
153             {\r
154                 MessageBox.Show(this, "frmPreview.cs encodeCompleted " + exc, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);\r
155             }\r
156         }\r
157         #endregion\r
158 \r
159         #region Playback\r
160 \r
161         /// <summary>\r
162         /// Play the video back in the QuickTime control\r
163         /// </summary>\r
164         private void play()\r
165         {\r
166             player = new Thread(OpenMovie) { IsBackground = true };\r
167             player.Start();\r
168             lbl_status.Visible = false;\r
169         }\r
170 \r
171         /// <summary>\r
172         /// Play the video back in an external VLC player\r
173         /// </summary>\r
174         private void playVLC()\r
175         {\r
176             // Launch VLC and play video.\r
177             if (currently_playing != "")\r
178             {\r
179                 if (File.Exists(currently_playing))\r
180                 {\r
181                     // Attempt to find VLC if it doesn't exist in the default set location.\r
182                     if (!File.Exists(Properties.Settings.Default.VLC_Path))\r
183                     {\r
184                         if (File.Exists("C:\\Program Files (x86)\\VideoLAN\\VLC\\vlc.exe"))\r
185                         {\r
186                             Properties.Settings.Default.VLC_Path = "C:\\Program Files (x86)\\VideoLAN\\VLC\\vlc.exe";\r
187                             Properties.Settings.Default.Save(); // Save this new path if it does\r
188                         }\r
189                         else\r
190                         {\r
191                             MessageBox.Show(this,\r
192                                             "Unable to detect VLC Player. \nPlease make sure VLC is installed and the directory specified in HandBrake's options is correct. (See: \"Tools Menu > Options > Picture Tab\") ",\r
193                                             "VLC", MessageBoxButtons.OK, MessageBoxIcon.Warning);\r
194                         }\r
195                     }\r
196 \r
197                     if (File.Exists(Properties.Settings.Default.VLC_Path))\r
198                     {\r
199                         String args = "\"" + currently_playing + "\"";\r
200                         ProcessStartInfo vlc = new ProcessStartInfo(Properties.Settings.Default.VLC_Path, args);\r
201                         Process.Start(vlc);\r
202                         lbl_status.Text = "VLC will now launch.";\r
203                     }\r
204                     \r
205                 }\r
206                 else\r
207                     MessageBox.Show(this, "Unable to find the preview file. Either the file was deleted or the encode failed. Check the activity log for details.", "VLC", MessageBoxButtons.OK, MessageBoxIcon.Warning);\r
208             }\r
209             lbl_status.Visible = false;\r
210         }\r
211 \r
212         /// <summary>\r
213         /// QT control - Open the file\r
214         /// </summary>\r
215         [STAThread]\r
216         private void OpenMovie()\r
217         {\r
218             try\r
219             {\r
220                 if (InvokeRequired)\r
221                 {\r
222                     BeginInvoke(new UpdateUIHandler(OpenMovie));\r
223                     return;\r
224                 }\r
225                 QTControl.URL = currently_playing;\r
226                 QTControl.SetSizing(QTSizingModeEnum.qtControlFitsMovie, true);\r
227                 QTControl.URL = currently_playing;\r
228                 QTControl.Show();\r
229 \r
230                 this.ClientSize = QTControl.Size;\r
231                 this.Height += 25;\r
232             }\r
233             catch (COMException ex)\r
234             {\r
235                 QTUtils qtu = new QTUtils();\r
236                 MessageBox.Show(this, "Unable to open movie:\n\nError Code: " + ex.ErrorCode.ToString("X") + "\nQT Error code : " + qtu.QTErrorFromErrorCode(ex.ErrorCode), "QT", MessageBoxButtons.OK, MessageBoxIcon.Warning);\r
237             }\r
238             catch (Exception ex)\r
239             {\r
240                 MessageBox.Show(this, "Unable to open movie:\n\n" + ex, "QT", MessageBoxButtons.OK, MessageBoxIcon.Warning);\r
241             }\r
242         }\r
243         #endregion\r
244     }\r
245 }\r