mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 17:14:28 +01:00
33 lines
733 B
PowerShell
Executable File
33 lines
733 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
play-files.ps1 [<pattern>]
|
|
.DESCRIPTION
|
|
Plays the given audio files (supporting MP3 and WAV format)
|
|
.EXAMPLE
|
|
PS> .\play-files.ps1 *.mp3
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
.NOTES
|
|
Author: Markus Fleschutz / License: CC0
|
|
#>
|
|
|
|
param([string]$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
|
|
}
|