Untitled

mail@pastecode.io avatar
unknown
plain_text
5 months ago
637 B
3
Indexable
# Setze die Eingabe- und Ausgabe-Verzeichnisse
$inputDir = "input_videos\"
$outputDir = "output_videos\"

# Erstelle das Ausgabe-Verzeichnis, falls es nicht existiert
if (!(Test-Path -Path $outputDir)) {
    New-Item -ItemType Directory -Path $outputDir
}

# Schleife durch jede Datei im Eingabe-Verzeichnis
Get-ChildItem -Path $inputDir -Filter *.mp4 | ForEach-Object {
    $inputFile = $_.FullName
    $filename = $_.BaseName
    $outputFile = "$outputDir$filename`_cropped.mp4"
    
    # Video zuschneiden
    Start-Process -NoNewWindow -FilePath "ffmpeg.exe" -ArgumentList "-ss 00:00:07 -i `"$inputFile`" -c copy `"$outputFile`""
}
Leave a Comment