批量将ev1视频文件解密成flv

批量处理代码 auto.ps1 如下,注意将路径替换成你的文件路径,视频放在win目录之下,我这里是将视频放在 ev1-decode\videos 目录下

$files = Get-ChildItem -Path C:\Users\86151\Desktop\ev1-decode\win -Filter videos\*.ev1

foreach($file in $files) {
    #echo $file.FullName
    & ".\ev1_decode.exe" $($file.FullName)
}

运行PS批量处理脚本,在ev1-decode目录下运行

C:\Users\86151\Desktop\ev1-decode\win> PowerShell.exe -executionpolicy remotesigned -File .\auto.ps1
说说我的看法