gpt4 book ai didi

powershell - 输入单个文件夹并执行 PowerShell 命令

转载 作者:行者123 更新时间:2023-12-04 23:33:35 25 4
gpt4 key购买 nike

我有许多包含更多子文件夹的文件夹,正如我在第一个问题中所发布的那样

How to create a powershell script / or windows .bat file for ffmpeg


我想对文件夹中的所有视频文件进行编码。
我从 mklement0 获得的脚本工作正常,但我很懒,我想知道是否有办法告诉 PowerShell 进入文件夹 1,转到 subfolder_1,然后执行 ps1 脚本(如果它在新的powershell 实例),等待一段时间并进入 subfolder_2
重复直到没有可用的子文件夹。
这可能吗?
编辑:
我得到的脚本:
Get-ChildItem *.mkv | where BaseName -notlike '*`[encoded]' | foreach {
ffmpeg -i $_ -c:v libx265 -c:a copy -x265-params crf=25 "$($_.BaseName)[encoded].mkv"
pause
}

What is the reason for the desire to process each subfolder in a separate instance of powershell.exe? by Mathias R. Jessen


因为我想一次编码多个文件夹以节省一些时间。
如果有办法在同一个 PowerShell 中执行脚本(据我了解,如果我使用同一个 PowerShell 实例,我一次只能编码一个文件夹)

最佳答案

您可以将整个内容包装在另一个 Get-ChildItem 中以查找主文件夹中的所有子目录,然后将位置设置为该路径并在每个路径中运行:

$directories = get-childitem -path "C:\Path\To\Videos\Folder" -Recurse -Directory
Foreach ($dir in $directories) {
Set-Location $dir.fullname
*Run your code here*
}
这比尝试与不同的 PowerShell 实例并行执行这些操作要好。如果我错了,请纠正我,但是视频编码会占用您计算机的大量资源,因此尝试并行运行它们实际上会成为更大的障碍。

关于powershell - 输入单个文件夹并执行 PowerShell 命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64213214/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com