mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-07 16:44:22 +01:00
35 lines
815 B
PowerShell
Executable File
35 lines
815 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
Plays audio files (MP3 and WAV)
|
|
.DESCRIPTION
|
|
This PowerShell script plays the given audio files (supporting MP3 and WAV format).
|
|
.PARAMETER FilePattern
|
|
Specifies the file pattern
|
|
.EXAMPLE
|
|
PS> ./play-files *.mp3
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
.NOTES
|
|
Author: Markus Fleschutz | License: CC0
|
|
#>
|
|
|
|
param([string]$FilePattern = "*")
|
|
|
|
try {
|
|
$Files = (get-childItem -path "$FilePattern" -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 # success
|
|
} catch {
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
}
|