#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ###
$Form = GUICreate("Skript für ratatoui", 236, 173, -1, -1)
$Label = GUICtrlCreateLabel("Ordnername:", 56, 32, 65, 17)
$InputName = GUICtrlCreateInput("", 56, 56, 121, 21)
$Button = GUICtrlCreateButton("Film erstellen", 56, 96, 121, 33, $WS_GROUP)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button
_CreateFilm(GUICtrlRead($InputName))
EndSwitch
WEnd
Func _CreateFilm($Name)
$Path = "D:VM-DAT\TV\TRP-Videos\"&$Name
$PathFiles = _FileListToArray($Path, "*", 1)
$Command = "copy /b "
For $i = 0 to UBound ($PathFiles)-1
If $i = UBound ($PathFiles)-1 Then
$Command&=$PathFiles[$i]&" "
Else
$Command&=$PathFiles[$i]&"+"
EndIf
Next
$Command &= "Z:\!-TS\"&$Name&".ts" ;Pfad wo es hinsoll
Run ($Command)
EndFunc
Ich habe das nur so aus dem Kopf geschrieben!
Also kann es sein das es nicht funktioniert.
Aber ist auch nur das erste Gerüst.
Kannst du mir bitte per Mail ein oder 2 .vid Dateien schicken?
Dann bau ich mir das hier mal nach^^