Update 'Convert-ToWave.ps1'
This commit is contained in:
parent
a01ae708d6
commit
518c8f3381
|
@ -1,9 +1,9 @@
|
||||||
$basepath="."
|
$basepath="."
|
||||||
$in_put="$basepath/Input"
|
$in_put="$basepath/Input"
|
||||||
$output="$basepath/Output"
|
$output="$basepath/Output"
|
||||||
$ffmpeg=Get-Command ffmpeg
|
$ffmpeg=Get-Command -ErrorAction SilentlyContinue ffmpeg
|
||||||
if ($ffmpeg -eq $null) {
|
if ($ffmpeg -eq $null) {
|
||||||
$ffmpeg="$basepath/ffmpeg.exe"
|
$ffmpeg="$basepath/ffmpeg"
|
||||||
}
|
}
|
||||||
$toconvert=Get-ChildItem "$in_put/"
|
$toconvert=Get-ChildItem "$in_put/"
|
||||||
$toconvert|%{
|
$toconvert|%{
|
||||||
|
|
Loading…
Reference in New Issue