|
- private void ThreadProcSafePost()
- {
- if (this.ucDataGridView1.SelectRows.Count < 1)
- {
- FrmDialog.ShowDialog(this, "请选择至少一条记录!", "提示", false, true, false, true, null);
- return;
- }
- foreach (IDataGridViewRow dataGridViewRow in this.ucDataGridView1.SelectRows)
- {
- string title = ((SongObj)dataGridViewRow.DataSource).Title;
- string href = ((SongObj)dataGridViewRow.DataSource).Href;
- this.driver.Navigate().GoToUrl(href);
- string address;
- try
- {
- address = ((IJavaScriptExecutor)this.driver).ExecuteScript("return playurl2", Array.Empty<object>()).ToString();
- }
- catch
- {
- address = "http:" + ((IJavaScriptExecutor)this.driver).ExecuteScript("return playurl", Array.Empty<object>()).ToString();
- }
- string text2 = "C:\" + title;
- if (!File.Exists(text2))
- {
- if (address.Contains("m3u8"))
- {
- using (Process process = new Process())
- {
- process.StartInfo.UseShellExecute = false;
- process.StartInfo.FileName = Application.StartupPath + "\\ffmpeg.exe";
- process.StartInfo.CreateNoWindow = true;
- process.StartInfo.Arguments = string.Concat(new string[]
- {
- " -i "",
- address,
- "" -vcodec copy -acodec copy -absf aac_adtstoasc "",
- text2,
- """
- });
- process.Start();
- process.WaitForExit();
- goto IL_1B8;
- }
- goto IL_1AA;
- }
- goto IL_1AA;
- IL_1B8:
- (from x in this.lstSource
- where x.Title == title && x.Href == href
- select x).ToList<SongObj>()[0].State = "1";
- goto IL_212;
- IL_1AA:
- new WebClient().DownloadFile(address, text2);
- goto IL_1B8;
- }
- (from x in this.lstSource
- where x.Title == title && x.Href == href
- select x).ToList<SongObj>()[0].State = "2";
- IL_212:
- this.m_SyncContext.Post(new SendOrPostCallback(this.SetDataGridViewSafePost), null);
- }
- }
复制代码
|
|