2021-05-01 09:26:26 +02:00
|
|
|
|
<#
|
|
|
|
|
.SYNTAX play-files.ps1 [<file(s)>]
|
|
|
|
|
.DESCRIPTION plays the given audio files (supporting MP3 and WAV format)
|
|
|
|
|
.LINK https://github.com/fleschutz/PowerShell
|
|
|
|
|
.NOTES Author: Markus Fleschutz / License: CC0
|
|
|
|
|
#>
|
|
|
|
|
|
|
|
|
|
param($Files = "*")
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
foreach ($File in (get-childItem -path "$Files" -attributes !Directory)) {
|
|
|
|
|
if ("$File" -like "*.mp3") {
|
|
|
|
|
& "$PSScriptRoot/play-mp3.ps1" "$File"
|
2021-05-01 10:23:46 +02:00
|
|
|
|
} elseif ("$File" -like "*.wav") {
|
2021-05-01 09:26:26 +02:00
|
|
|
|
& "$PSScriptRoot/play-mp3.ps1" "$File"
|
|
|
|
|
} else {
|
|
|
|
|
"Skipping $File ..."
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
exit 0
|
|
|
|
|
} catch {
|
2021-05-02 21:30:48 +02:00
|
|
|
|
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
2021-05-01 09:26:26 +02:00
|
|
|
|
exit 1
|
|
|
|
|
}
|