mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-09 01:25:04 +01:00
27 lines
704 B
PowerShell
Executable File
27 lines
704 B
PowerShell
Executable File
<#
|
|
.SYNTAX play-files.ps1 [<pattern>]
|
|
.DESCRIPTION plays the given audio files (supporting MP3 and WAV format)
|
|
.LINK https://github.com/fleschutz/PowerShell
|
|
.NOTES Author: Markus Fleschutz / License: CC0
|
|
#>
|
|
|
|
param($Pattern = "*")
|
|
|
|
try {
|
|
$Files = (get-childItem -path "$Pattern" -attributes !Directory)
|
|
"Playing $($Files.Count) files ..."
|
|
foreach ($File in $Files) {
|
|
if ("$File" -like "*.mp3") {
|
|
& "$PSScriptRoot/play-mp3.ps1" "$File"
|
|
} elseif ("$File" -like "*.wav") {
|
|
& "$PSScriptRoot/play-mp3.ps1" "$File"
|
|
} else {
|
|
"Skipping $File ..."
|
|
}
|
|
}
|
|
exit 0
|
|
} catch {
|
|
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
}
|