forked from fleschutz/PowerShell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplay-files.ps1
More file actions
executable file
·34 lines (32 loc) · 841 Bytes
/
play-files.ps1
File metadata and controls
executable file
·34 lines (32 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<#
.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
.NOTES
Author: Markus Fleschutz / License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
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: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}