Skip to content

Commit

Permalink
fix bug segnalato dalla Mary
Browse files Browse the repository at this point in the history
  • Loading branch information
simon387 committed Jul 22, 2018
1 parent 76b0b54 commit c0ab0bf
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.idea
*.iml
*.mp3
*.exe

Binary file added msvcr100.dll
Binary file not shown.
4 changes: 3 additions & 1 deletion ytdl.au3
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#cs
interfaccia grafica di youtube-dl
#ce
#pragma compile(Icon, .\shell32_299.ico)

#NoTrayIcon
;~ #include <ButtonConstants.au3>
Expand All @@ -21,7 +22,7 @@
Global Const $tagSECURITY_ATTRIBUTES = "dword Length;ptr Descriptor;bool InheritHandle"

_Singleton(@ScriptName)
Global Const $form_main = GUICreate("YTDLUI by simon - v0.11 - {esc} per forzare uscita!", 523, 323, -1, -1, -2133917696, 0);BitOR($GUI_SS_DEFAULT_GUI,$WS_MAXIMIZEBOX,$WS_SIZEBOX,$WS_THICKFRAME,$WS_TABSTOP)
Global Const $form_main = GUICreate("YTDLUI by simon - v0.12 - {esc} per forzare uscita!", 523, 323, -1, -1, -2133917696, 0);BitOR($GUI_SS_DEFAULT_GUI,$WS_MAXIMIZEBOX,$WS_SIZEBOX,$WS_THICKFRAME,$WS_TABSTOP)
Global Const $input_url = GUICtrlCreateInput("http://www.youtube.com/watch?v=ebXbLfLACGM", 152, 10, 281, 21)
GUICtrlSetTip(-1, "Incolla qui il link di una pagina di youtube", "Info", 1, 1)
Global Const $button_paste = GUICtrlCreateButton("Incolla", 440, 8, 75, 25)
Expand Down Expand Up @@ -73,6 +74,7 @@ Func button_clicked()
FileInstall(".\ffmpeg.exe", @TempDir & "\ffmpeg.exe", 0)
FileInstall(".\ffplay.exe", @TempDir & "\ffplay.exe", 0)
FileInstall(".\ffprobe.exe", @TempDir & "\ffprobe.exe", 0)
FileInstall(".\msvcr100.dll", @TempDir & "\msvcr100.dll", 0)
$string_2 = '-x --audio-quality 0 --audio-format mp3'
Case @GUI_CtrlId = $button_info
$string_1 = @TempDir & '\youtube-dl.exe -h'
Expand Down

0 comments on commit c0ab0bf

Please sign in to comment.