mirror of
https://github.com/hama3254/Crunchyroll-Downloader-v3.0.git
synced 2024-11-10 18:25:05 +01:00
0717281b1c
- fixed random crashes - added error handling failed segments - changed error handling download crash
635 lines
24 KiB
VB.net
635 lines
24 KiB
VB.net
Imports Gecko.Events
|
|
Imports Microsoft.Win32
|
|
Imports System.Net
|
|
Imports System.IO
|
|
Imports System.Text
|
|
Imports System.Threading
|
|
|
|
Public Class einstellungen
|
|
|
|
Private Sub einstellungen_Load(sender As Object, e As EventArgs) Handles MyBase.Load
|
|
For i As Integer = 0 To Main.SoftSubs.Count - 1
|
|
If Main.SoftSubs(i) = "deDE" Then
|
|
CBdeDE.Checked = True
|
|
ElseIf Main.SoftSubs(i) = "enUS" Then
|
|
CBenUS.Checked = True
|
|
ElseIf Main.SoftSubs(i) = "ptBR" Then
|
|
CBptBR.Checked = True
|
|
ElseIf Main.SoftSubs(i) = "esLA" Then
|
|
CBesLA.Checked = True
|
|
ElseIf Main.SoftSubs(i) = "frFR" Then
|
|
CBfrFR.Checked = True
|
|
ElseIf Main.SoftSubs(i) = "arME" Then
|
|
CBarME.Checked = True
|
|
ElseIf Main.SoftSubs(i) = "ruRU" Then
|
|
CBruRU.Checked = True
|
|
ElseIf Main.SoftSubs(i) = "itIT" Then
|
|
CBitIT.Checked = True
|
|
ElseIf Main.SoftSubs(i) = "esES" Then
|
|
CBesES.Checked = True
|
|
End If
|
|
Next
|
|
Me.Location = New Point(Main.Location.X + Main.Width / 2 - Me.Width / 2, Main.Location.Y + Main.Height / 2 - Me.Height / 2)
|
|
Me.Icon = My.Resources.icon
|
|
If Main.MergeSubstoMP4 = True Then
|
|
MergeMP4.Checked = True
|
|
End If
|
|
If Main.HybridMode = True Then
|
|
HybridMode_CB.Checked = True
|
|
End If
|
|
|
|
If Main.HardSubFunimation = True Then
|
|
FunimationHardsub.Checked = True
|
|
End If
|
|
|
|
If Main.SaveLog = True Then
|
|
CB_Log.Checked = True
|
|
End If
|
|
Try
|
|
GB_Resolution.Text = Main.GB_Resolution_Text
|
|
GB_SubLanguage.Text = Main.GB_SubLanguage_Text
|
|
GB_Sub_Path.Text = Main.GB_Sub_Path_Text
|
|
RBAnime.Text = Main.RBAnime_Text
|
|
RBStaffel.Text = Main.RBStaffel_Text
|
|
DL_Count_simultaneous.Text = Main.DL_Count_simultaneousText
|
|
Catch ex As Exception
|
|
|
|
End Try
|
|
|
|
If Main.Resu = 1080 Then
|
|
A1080p.Checked = True
|
|
ElseIf Main.Resu = 720 Then
|
|
A720p.Checked = True
|
|
ElseIf Main.Resu = 480 Then
|
|
A480p.Checked = True
|
|
ElseIf Main.Resu = 360 Then
|
|
A360p.Checked = True
|
|
ElseIf Main.Resu = 42 Then
|
|
AAuto.Checked = True
|
|
End If
|
|
|
|
If Check_CB() = False Then
|
|
ComboBox1.Items.Add(Main.CB_SuB_Nothing)
|
|
End If
|
|
If Main.SubSprache = "deDE" Then
|
|
ComboBox1.SelectedItem = "Deutsch"
|
|
ElseIf Main.SubSprache = "enUS" Then
|
|
ComboBox1.SelectedItem = "English"
|
|
ElseIf Main.SubSprache = "ptBR" Then
|
|
ComboBox1.SelectedItem = "Português (Brasil)"
|
|
ElseIf Main.SubSprache = "esLA" Then
|
|
ComboBox1.SelectedItem = "Español (LA)"
|
|
ElseIf Main.SubSprache = "frFR" Then
|
|
ComboBox1.SelectedItem = "Français (France)"
|
|
ElseIf Main.SubSprache = "arME" Then
|
|
ComboBox1.SelectedItem = "العربية (Arabic)"
|
|
ElseIf Main.SubSprache = "ruRU" Then
|
|
ComboBox1.SelectedItem = "Русский (Russian)"
|
|
ElseIf Main.SubSprache = "itIT" Then
|
|
ComboBox1.SelectedItem = "Italiano (Italian)"
|
|
ElseIf Main.SubSprache = "esES" Then
|
|
ComboBox1.SelectedItem = "Español (España)"
|
|
Else
|
|
ComboBox1.SelectedItem = Main.CB_SuB_Nothing
|
|
End If
|
|
|
|
If Main.SubFolder = 1 Then
|
|
RBAnime.Checked = True
|
|
ElseIf Main.SubFolder = 2 Then
|
|
RBStaffel.Checked = True
|
|
End If
|
|
NumericUpDown1.Value = Main.MaxDL
|
|
TextBox1.Text = Main.Startseite
|
|
|
|
If InStr(Main.ffmpeg_command, "-c copy") Then
|
|
FFMPEG_CommandP1.Text = "-c copy"
|
|
FFMPEG_CommandP4.Text = "-bsf:a aac_adtstoasc"
|
|
Else
|
|
Dim ffmpegDisplayCurrent As String() = Main.ffmpeg_command.Split(New String() {" "}, System.StringSplitOptions.RemoveEmptyEntries)
|
|
FFMPEG_CommandP1.Text = ffmpegDisplayCurrent(0) + " " + ffmpegDisplayCurrent(1)
|
|
FFMPEG_CommandP2.Text = ffmpegDisplayCurrent(2) + " " + ffmpegDisplayCurrent(3)
|
|
FFMPEG_CommandP3.Text = ffmpegDisplayCurrent(4) + " " + ffmpegDisplayCurrent(5)
|
|
End If
|
|
|
|
|
|
Try
|
|
Dim rkg As RegistryKey = Registry.CurrentUser.OpenSubKey("Software\CRDownloader")
|
|
ListViewAdd_True.Checked = CBool(Integer.Parse(rkg.GetValue("QueueMode").ToString))
|
|
Catch ex As Exception
|
|
End Try
|
|
Try
|
|
Dim rkg As RegistryKey = Registry.CurrentUser.OpenSubKey("Software\CRDownloader")
|
|
Server.Checked = CBool(Integer.Parse(rkg.GetValue("StartServer").ToString))
|
|
Catch ex As Exception
|
|
End Try
|
|
End Sub
|
|
|
|
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles pictureBox4.Click
|
|
Dim rk As RegistryKey = Registry.CurrentUser.CreateSubKey("Software\CRDownloader")
|
|
If InStr(TextBox1.Text, "https://") Then
|
|
Main.Startseite = TextBox1.Text
|
|
rk.SetValue("Startseite", Main.Startseite, RegistryValueKind.String)
|
|
ElseIf TextBox1.Text = Nothing Then
|
|
Main.Startseite = "https://www.crunchyroll.com/"
|
|
rk.SetValue("Startseite", Main.Startseite, RegistryValueKind.String)
|
|
Else
|
|
|
|
End If
|
|
If A1080p.Checked Then
|
|
Main.Resu = 1080
|
|
rk.SetValue("Resu", 1080, RegistryValueKind.String)
|
|
ElseIf A720p.Checked Then
|
|
Main.Resu = 720
|
|
rk.SetValue("Resu", 720, RegistryValueKind.String)
|
|
ElseIf A360p.Checked Then
|
|
Main.Resu = 360
|
|
rk.SetValue("Resu", 360, RegistryValueKind.String)
|
|
ElseIf A480p.Checked Then
|
|
Main.Resu = 480
|
|
rk.SetValue("Resu", 480, RegistryValueKind.String)
|
|
ElseIf AAuto.Checked Then
|
|
Main.Resu = 42
|
|
rk.SetValue("Resu", 42, RegistryValueKind.String)
|
|
End If
|
|
If ComboBox1.SelectedItem.ToString = "English" Then
|
|
Main.SubSprache = "enUS"
|
|
rk.SetValue("Sub", "enUS", RegistryValueKind.String)
|
|
|
|
ElseIf ComboBox1.SelectedItem.ToString = "Deutsch" Then
|
|
Main.SubSprache = "deDE"
|
|
rk.SetValue("Sub", "deDE", RegistryValueKind.String)
|
|
|
|
ElseIf ComboBox1.SelectedItem.ToString = "Português (Brasil)" Then
|
|
Main.SubSprache = "ptBR"
|
|
rk.SetValue("Sub", "ptBR", RegistryValueKind.String)
|
|
|
|
ElseIf ComboBox1.SelectedItem.ToString = "Español (LA)" Then
|
|
Main.SubSprache = "esLA"
|
|
rk.SetValue("Sub", "esLA", RegistryValueKind.String)
|
|
|
|
ElseIf ComboBox1.SelectedItem.ToString = "Français (France)" Then
|
|
Main.SubSprache = "frFR"
|
|
rk.SetValue("Sub", "frFR", RegistryValueKind.String)
|
|
|
|
ElseIf ComboBox1.SelectedItem.ToString = "العربية (Arabic)" Then
|
|
Main.SubSprache = "arME"
|
|
rk.SetValue("Sub", "arME", RegistryValueKind.String)
|
|
|
|
ElseIf ComboBox1.SelectedItem.ToString = "Русский (Russian)" Then
|
|
Main.SubSprache = "ruRU"
|
|
rk.SetValue("Sub", "ruRU", RegistryValueKind.String)
|
|
|
|
ElseIf ComboBox1.SelectedItem.ToString = "Italiano (Italian)" Then
|
|
Main.SubSprache = "itIT"
|
|
rk.SetValue("Sub", "itIT", RegistryValueKind.String)
|
|
|
|
ElseIf ComboBox1.SelectedItem.ToString = "Español (España)" Then
|
|
Main.SubSprache = "esES"
|
|
rk.SetValue("Sub", "esES", RegistryValueKind.String)
|
|
|
|
ElseIf ComboBox1.SelectedItem.ToString = Main.CB_SuB_Nothing Then
|
|
Main.SubSprache = "None"
|
|
rk.SetValue("Sub", "None", RegistryValueKind.String)
|
|
|
|
End If
|
|
If MergeMP4.Checked = True Then
|
|
Main.MergeSubstoMP4 = True
|
|
rk.SetValue("MergeMP4", "1", RegistryValueKind.String)
|
|
Else
|
|
Main.MergeSubstoMP4 = False
|
|
rk.SetValue("MergeMP4", "0", RegistryValueKind.String)
|
|
End If
|
|
If HybridMode_CB.Checked = True Then
|
|
Main.HybridMode = True
|
|
rk.SetValue("HybridMode", "1", RegistryValueKind.String)
|
|
Else
|
|
Main.HybridMode = False
|
|
rk.SetValue("HybridMode", "0", RegistryValueKind.String)
|
|
End If
|
|
|
|
If FunimationHardsub.Checked = True Then
|
|
Main.HardSubFunimation = True
|
|
rk.SetValue("FunimationHardsub", "1", RegistryValueKind.String)
|
|
Else
|
|
Main.HardSubFunimation = False
|
|
rk.SetValue("FunimationHardsub", "0", RegistryValueKind.String)
|
|
End If
|
|
|
|
If CB_Log.Checked = True Then
|
|
Main.SaveLog = True
|
|
rk.SetValue("SaveLog", "1", RegistryValueKind.String)
|
|
Else
|
|
Main.SaveLog = False
|
|
rk.SetValue("SaveLog", "0", RegistryValueKind.String)
|
|
End If
|
|
If RBAnime.Checked = True Then
|
|
Main.SubFolder = 1
|
|
rk.SetValue("SubFolder", 1, RegistryValueKind.String)
|
|
ElseIf RBStaffel.Checked = True Then
|
|
Main.SubFolder = 2
|
|
rk.SetValue("SubFolder", 2, RegistryValueKind.String)
|
|
End If
|
|
If CheckBox1.Enabled = False Then
|
|
|
|
Else
|
|
Dim ffpmeg_cmd As String = Nothing
|
|
If FFMPEG_CommandP1.Text = "-c copy" Then
|
|
ffpmeg_cmd = " " + FFMPEG_CommandP1.Text + " " + FFMPEG_CommandP4.Text
|
|
Else
|
|
|
|
ffpmeg_cmd = " " + FFMPEG_CommandP1.Text + " " + FFMPEG_CommandP2.Text + " " + FFMPEG_CommandP3.Text + " " + FFMPEG_CommandP4.Text
|
|
|
|
End If
|
|
rk.SetValue("ffmpeg_command", ffpmeg_cmd, RegistryValueKind.String)
|
|
Main.ffmpeg_command = ffpmeg_cmd
|
|
End If
|
|
|
|
If InStr(FFMPEG_CommandP1.Text, "nvenc") Then
|
|
NumericUpDown1.Value = 2
|
|
ElseIf InStr(FFMPEG_CommandP1.Text, "libx26") Then
|
|
NumericUpDown1.Value = 1
|
|
End If
|
|
rk.SetValue("SL_DL", NumericUpDown1.Value, RegistryValueKind.String)
|
|
Main.MaxDL = NumericUpDown1.Value
|
|
|
|
If ListViewAdd_True.Checked = True Then
|
|
rk.SetValue("QueueMode", 1, RegistryValueKind.String)
|
|
|
|
ElseIf ListViewAdd_True.Checked = False Then
|
|
rk.SetValue("QueueMode", 0, RegistryValueKind.String)
|
|
Main.UseQueue = False
|
|
End If
|
|
If Server.Checked = True Then
|
|
rk.SetValue("StartServer", 1, RegistryValueKind.String)
|
|
Main.StartServer = True
|
|
'Dim t As New Thread(AddressOf Main.ServerStart)
|
|
't.Priority = ThreadPriority.Normal
|
|
't.IsBackground = True
|
|
't.Start()
|
|
ElseIf Server.Checked = False Then
|
|
rk.SetValue("StartServer", 0, RegistryValueKind.String)
|
|
Main.StartServer = False
|
|
End If
|
|
|
|
#Region "sof subs"
|
|
Main.SoftSubs.Clear()
|
|
If CBdeDE.Checked = True Then
|
|
Main.SoftSubs.Add("deDE")
|
|
End If
|
|
If CBenUS.Checked = True Then
|
|
Main.SoftSubs.Add("enUS")
|
|
End If
|
|
If CBptBR.Checked = True Then
|
|
Main.SoftSubs.Add("ptBR")
|
|
End If
|
|
If CBesLA.Checked = True Then
|
|
Main.SoftSubs.Add("esLA")
|
|
End If
|
|
If CBfrFR.Checked = True Then
|
|
Main.SoftSubs.Add("frFR")
|
|
End If
|
|
If CBarME.Checked = True Then
|
|
Main.SoftSubs.Add("arME")
|
|
End If
|
|
If CBruRU.Checked = True Then
|
|
Main.SoftSubs.Add("ruRU")
|
|
End If
|
|
If CBitIT.Checked = True Then
|
|
Main.SoftSubs.Add("itIT")
|
|
End If
|
|
If CBesES.Checked = True Then
|
|
Main.SoftSubs.Add("esES")
|
|
End If
|
|
|
|
Dim SaveString As String = Nothing
|
|
For ii As Integer = 0 To Main.SoftSubs.Count - 1
|
|
If SaveString = Nothing Then
|
|
SaveString = Main.SoftSubs(ii)
|
|
Else
|
|
SaveString = SaveString + "," + Main.SoftSubs(ii)
|
|
End If
|
|
Next
|
|
If SaveString = Nothing Then
|
|
SaveString = "none"
|
|
End If
|
|
rk.SetValue("AddedSubs", SaveString, RegistryValueKind.String)
|
|
#End Region
|
|
Me.Close()
|
|
End Sub
|
|
|
|
Private Function Check_CB() As Boolean
|
|
Dim C As Boolean = False
|
|
For i As Integer = 0 To ComboBox1.Items.Count - 1
|
|
If ComboBox1.Items.Item(i).ToString = Main.CB_SuB_Nothing Then
|
|
C = True
|
|
Exit For
|
|
End If
|
|
Next
|
|
Return C
|
|
End Function
|
|
|
|
|
|
|
|
Public Function GeräteID() As String
|
|
Dim rnd As New Random
|
|
Dim possible As String = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"
|
|
Dim HWID As String = Nothing
|
|
|
|
For i As Integer = 0 To 15
|
|
Dim ZufallsZahl As Integer = rnd.Next(1, 33)
|
|
HWID = HWID + possible(ZufallsZahl)
|
|
Next
|
|
Return "CRD-Temp-File-" + HWID
|
|
End Function
|
|
|
|
Private Sub pictureBox1_Click(sender As Object, e As EventArgs) Handles pictureBox1.Click
|
|
Me.Close()
|
|
End Sub
|
|
#Region "UI"
|
|
Private Sub pictureBox1_MouseEnter(sender As Object, e As EventArgs) Handles pictureBox1.MouseEnter
|
|
pictureBox1.BackColor = SystemColors.Control
|
|
End Sub
|
|
|
|
Private Sub pictureBox1_MouseLeave(sender As Object, e As EventArgs) Handles pictureBox1.MouseLeave
|
|
pictureBox1.BackColor = Color.Transparent
|
|
End Sub
|
|
|
|
Private Sub pictureBox4_MouseEnter(sender As Object, e As EventArgs) Handles pictureBox4.MouseEnter
|
|
pictureBox4.Image = My.Resources.crdSettings_Button_SafeExit_hover
|
|
End Sub
|
|
|
|
Private Sub pictureBox4_MouseLeave(sender As Object, e As EventArgs) Handles pictureBox4.MouseLeave
|
|
pictureBox4.Image = My.Resources.crdSettings_Button_SafeExit
|
|
End Sub
|
|
#Region " Move Form "
|
|
|
|
' [ Move Form ]
|
|
'
|
|
' // By Elektro
|
|
|
|
Public MoveForm As Boolean
|
|
Public MoveForm_MousePosition As Point
|
|
|
|
Public Sub MoveForm_MouseDown(sender As Object, e As MouseEventArgs) Handles _
|
|
MyBase.MouseDown ' Add more handles here (Example: PictureBox1.MouseDown)
|
|
|
|
If e.Button = MouseButtons.Left Then
|
|
MoveForm = True
|
|
Me.Cursor = Cursors.NoMove2D
|
|
MoveForm_MousePosition = e.Location
|
|
End If
|
|
|
|
End Sub
|
|
|
|
Public Sub MoveForm_MouseMove(sender As Object, e As MouseEventArgs) Handles _
|
|
MyBase.MouseMove ' Add more handles here (Example: PictureBox1.MouseMove)
|
|
|
|
If MoveForm Then
|
|
Me.Location = Me.Location + (e.Location - MoveForm_MousePosition)
|
|
End If
|
|
|
|
End Sub
|
|
|
|
Public Sub MoveForm_MouseUp(sender As Object, e As MouseEventArgs) Handles _
|
|
MyBase.MouseUp ' Add more handles here (Example: PictureBox1.MouseUp)
|
|
|
|
If e.Button = MouseButtons.Left Then
|
|
MoveForm = False
|
|
Me.Cursor = Cursors.Default
|
|
End If
|
|
|
|
End Sub
|
|
|
|
|
|
Private Sub ComboBox1_DrawItem(sender As Object, e As DrawItemEventArgs) Handles ComboBox1.DrawItem, ComboBox2.DrawItem, comboBox3.DrawItem, comboBox4.DrawItem
|
|
sender.BackColor = Color.White
|
|
If e.Index >= 0 Then
|
|
Using st As New StringFormat With {.Alignment = StringAlignment.Center}
|
|
' e.DrawBackground()
|
|
' e.DrawFocusRectangle()
|
|
e.Graphics.FillRectangle(SystemBrushes.ControlLightLight, e.Bounds)
|
|
e.Graphics.DrawString(sender.Items(e.Index).ToString, e.Font, Brushes.Black, e.Bounds, st)
|
|
|
|
End Using
|
|
End If
|
|
End Sub
|
|
|
|
|
|
Private Sub PictureBox6_Click(sender As Object, e As EventArgs) Handles PictureBox6.Click
|
|
Startup.ShowDialog()
|
|
End Sub
|
|
|
|
|
|
#End Region
|
|
Private Sub PictureBox6_MouseEnter(sender As Object, e As EventArgs) Handles PictureBox6.MouseEnter
|
|
PictureBox6.Image = My.Resources.main_credits_hover
|
|
End Sub
|
|
|
|
Private Sub PictureBox6_MouseLeave(sender As Object, e As EventArgs) Handles PictureBox6.MouseLeave
|
|
PictureBox6.Image = My.Resources.main_credits_default
|
|
End Sub
|
|
|
|
Private Sub AAuto_Click(sender As Object, e As EventArgs) Handles AAuto.Click
|
|
If MergeMP4.Checked = True Then
|
|
If AAuto.Checked = True Then
|
|
If MessageBox.Show("Resolution '[Auto]' and merge the subtitle with the video file will download all resolutions!" + vbNewLine + "Press 'Yes' to enable it anyway", "Prepare for unforeseen consequences.", MessageBoxButtons.YesNo) = DialogResult.Yes Then
|
|
|
|
Else
|
|
AAuto.Checked = False
|
|
End If
|
|
End If
|
|
End If
|
|
End Sub
|
|
|
|
Private Sub MergeMP4_Click(sender As Object, e As EventArgs) Handles CheckBox1.Click
|
|
If MergeMP4.Checked = True Then
|
|
If AAuto.Checked = True Then
|
|
If MessageBox.Show("Resolution '[Auto]' and merge the subtitle with the video file will download all resolutions!" + vbNewLine + "Press 'Yes' to enable it anyway", "Prepare for unforeseen consequences.", MessageBoxButtons.YesNo) = DialogResult.Yes Then
|
|
|
|
Else
|
|
MergeMP4.Checked = False
|
|
End If
|
|
End If
|
|
End If
|
|
End Sub
|
|
|
|
Private Sub PictureBox5_Click(sender As Object, e As EventArgs) Handles PictureBox5.Click
|
|
If Main.SoftSubs.Count > 0 Then
|
|
If CBool(InStr(TextBox2.Text, "crunchyroll.com")) Then
|
|
GeckoFX.WebBrowser1.Navigate(TextBox2.Text)
|
|
StatusLabel.Text = "Status: looking for subtitles"
|
|
Main.d = False
|
|
Main.b = False
|
|
End If
|
|
Else
|
|
Main.TempSoftSubs.Clear()
|
|
If CBdeDE.Checked = True Then
|
|
Main.TempSoftSubs.Add("deDE")
|
|
End If
|
|
If CBenUS.Checked = True Then
|
|
Main.TempSoftSubs.Add("enUS")
|
|
End If
|
|
If CBptBR.Checked = True Then
|
|
Main.TempSoftSubs.Add("ptBR")
|
|
End If
|
|
If CBesLA.Checked = True Then
|
|
Main.TempSoftSubs.Add("esLA")
|
|
End If
|
|
If CBfrFR.Checked = True Then
|
|
Main.TempSoftSubs.Add("frFR")
|
|
End If
|
|
If CBarME.Checked = True Then
|
|
Main.TempSoftSubs.Add("arME")
|
|
End If
|
|
If CBruRU.Checked = True Then
|
|
Main.TempSoftSubs.Add("ruRU")
|
|
End If
|
|
If CBitIT.Checked = True Then
|
|
Main.TempSoftSubs.Add("itIT")
|
|
End If
|
|
If CBesES.Checked = True Then
|
|
Main.TempSoftSubs.Add("esES")
|
|
End If
|
|
If Main.TempSoftSubs.Count > 0 Then
|
|
|
|
If CBool(InStr(TextBox2.Text, "crunchyroll.com")) Then
|
|
GeckoFX.WebBrowser1.Navigate(TextBox2.Text)
|
|
StatusLabel.Text = "Status: looking for subtitles"
|
|
Main.d = False
|
|
Main.b = False
|
|
End If
|
|
Else
|
|
StatusLabel.Text = "Status: No language selected"
|
|
Main.Pause(3)
|
|
StatusLabel.Text = "Status: idle"
|
|
End If
|
|
|
|
End If
|
|
End Sub
|
|
|
|
Private Sub PictureBox3_Click(sender As Object, e As EventArgs) Handles PictureBox3.Click
|
|
Main.MassSubsDL()
|
|
End Sub
|
|
|
|
Private Sub PictureBox3_MouseEnter(sender As Object, e As EventArgs) Handles PictureBox3.MouseEnter
|
|
PictureBox3.Image = My.Resources.softsubs_download_hover
|
|
End Sub
|
|
|
|
Private Sub PictureBox3_MouseLeave(sender As Object, e As EventArgs) Handles PictureBox3.MouseLeave
|
|
PictureBox3.Image = My.Resources.softsubs_download
|
|
End Sub
|
|
Private Sub PictureBox5_MouseEnter(sender As Object, e As EventArgs) Handles PictureBox5.MouseEnter
|
|
PictureBox5.Image = My.Resources.softsubs_download_hover
|
|
End Sub
|
|
|
|
Private Sub PictureBox5_MouseLeave(sender As Object, e As EventArgs) Handles PictureBox5.MouseLeave
|
|
PictureBox5.Image = My.Resources.softsubs_download
|
|
End Sub
|
|
|
|
Private Sub TextBox2_Click(sender As Object, e As EventArgs) Handles TextBox2.Click
|
|
If TextBox2.Text = "URL" Then
|
|
TextBox2.Text = Nothing
|
|
End If
|
|
End Sub
|
|
|
|
Private Sub ComboBox2_SelectedIndexChanged(sender As Object, e As EventArgs) Handles ComboBox2.SelectedIndexChanged
|
|
|
|
comboBox3.Items.Clear()
|
|
comboBox4.Items.Clear()
|
|
Dim SeasonDropdownAnzahl As String() = Main.WebbrowserText.Split(New String() {"season-dropdown content-menu block"}, System.StringSplitOptions.RemoveEmptyEntries)
|
|
Array.Reverse(SeasonDropdownAnzahl)
|
|
Dim SDV As Integer = 0
|
|
For i As Integer = 0 To SeasonDropdownAnzahl.Count - 1
|
|
If InStr(SeasonDropdownAnzahl(i), Chr(34) + ">" + ComboBox2.SelectedItem.ToString + "</a>") Then
|
|
SDV = i
|
|
End If
|
|
Next
|
|
Dim Anzahl As String() = SeasonDropdownAnzahl(SDV).Split(New String() {"wrapper container-shadow hover-classes"}, System.StringSplitOptions.RemoveEmptyEntries)
|
|
Dim c As Integer = Anzahl.Count - 1
|
|
Array.Reverse(Anzahl)
|
|
For i As Integer = 0 To Anzahl.Count - 2
|
|
Dim URLGrapp As String() = Anzahl(i).Split(New String() {"title=" + Chr(34)}, System.StringSplitOptions.RemoveEmptyEntries)
|
|
|
|
Dim URLGrapp2 As String() = URLGrapp(1).Split(New String() {Chr(34)}, System.StringSplitOptions.RemoveEmptyEntries)
|
|
|
|
comboBox3.Items.Add(URLGrapp2(0))
|
|
comboBox4.Items.Add(URLGrapp2(0))
|
|
Next
|
|
End Sub
|
|
|
|
|
|
Private Sub CheckBox1_CheckedChanged(sender As Object, e As EventArgs) Handles CheckBox1.CheckedChanged
|
|
GroupBox2.Enabled = CheckBox1.CheckState
|
|
If FFMPEG_CommandP1.Text = "-c copy" Then
|
|
FFMPEG_CommandP2.Enabled = False
|
|
FFMPEG_CommandP3.Enabled = False
|
|
Else
|
|
FFMPEG_CommandP2.Enabled = True
|
|
FFMPEG_CommandP3.Enabled = True
|
|
End If
|
|
End Sub
|
|
|
|
Private Sub ListC1_Click(sender As Object, e As EventArgs) Handles ListC1.Click, ListC2.Click, ListC3.Click, ListC4.Click, ListC5.Click
|
|
Dim Button As ToolStripMenuItem = sender
|
|
If Button.Text = "-c copy" Then
|
|
FFMPEG_CommandP1.Text = "-c copy"
|
|
FFMPEG_CommandP2.Enabled = False
|
|
FFMPEG_CommandP3.Enabled = False
|
|
Else
|
|
FFMPEG_CommandP1.Text = Button.Text
|
|
FFMPEG_CommandP2.Enabled = True
|
|
FFMPEG_CommandP3.Enabled = True
|
|
End If
|
|
|
|
End Sub
|
|
|
|
Private Sub ListP1_Click(sender As Object, e As EventArgs) Handles ListP1.Click, ListP2.Click
|
|
Dim Button As ToolStripMenuItem = sender
|
|
FFMPEG_CommandP2.Text = Button.Text
|
|
FFMPEG_CommandP2.Enabled = True
|
|
FFMPEG_CommandP3.Enabled = True
|
|
End Sub
|
|
|
|
Private Sub ListBit1_Click(sender As Object, e As EventArgs) Handles ListBit1.Click, ListBit2.Click, ListBit3.Click, ListBit4.Click, ListBit5.Click, ListBit6.Click, ListBit7.Click
|
|
Dim Button As ToolStripMenuItem = sender
|
|
FFMPEG_CommandP3.Text = Button.Text
|
|
FFMPEG_CommandP2.Enabled = True
|
|
FFMPEG_CommandP3.Enabled = True
|
|
End Sub
|
|
|
|
|
|
Private Sub PictureBox2_Click(sender As Object, e As EventArgs) Handles PictureBox2.Click
|
|
GeckoFX.Show()
|
|
Main.LoginOnly = "US_UnBlock"
|
|
|
|
GeckoFX.WebBrowser1.Navigate("https://api.criater-stiftung.org/us-unlock.php")
|
|
End Sub
|
|
|
|
Private Sub PictureBox2_Enter(sender As Object, e As EventArgs) Handles PictureBox2.MouseEnter
|
|
PictureBox2.Image = My.Resources.crdsettings_setUScookie_button_hover
|
|
End Sub
|
|
|
|
Private Sub PictureBox2_Leave(sender As Object, e As EventArgs) Handles PictureBox2.MouseLeave
|
|
PictureBox2.Image = My.Resources.crdsettings_setUScookie_button
|
|
|
|
End Sub
|
|
|
|
Private Sub FunimationHardsub_Click(sender As Object, e As EventArgs) Handles FunimationHardsub.Click
|
|
|
|
If FFMPEG_CommandP1.Text = "-c copy" Then
|
|
If FunimationHardsub.Checked = True Then
|
|
If MessageBox.Show("This feature does not work with the current output setting." + vbNewLine + "Do you want to ignore the output settings?", "Settings incompatible", MessageBoxButtons.YesNo) = DialogResult.Yes Then
|
|
FunimationHardsub.Checked = True
|
|
Else
|
|
FunimationHardsub.Checked = False
|
|
End If
|
|
End If
|
|
Else
|
|
End If
|
|
End Sub
|
|
|
|
|
|
|
|
|
|
#End Region
|
|
End Class |