PowerShell/Scripts/play-mp3.ps1

41 lines
1.3 KiB
PowerShell
Raw Normal View History

2021-04-21 10:14:57 +02:00
<#
2021-04-07 15:17:49 +02:00
.SYNTAX play-mp3.ps1 [<MP3-file>]
2021-03-22 20:10:18 +01:00
.DESCRIPTION plays the given sound file (MP3 file format)
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
2021-02-16 20:03:32 +01:00
#>
param($Filename = "")
2021-04-21 10:14:57 +02:00
if ($Filename -eq "" ) { $Filename = read-host "Enter the MP3 filename" }
2021-02-18 20:17:55 +01:00
2021-02-16 20:03:32 +01:00
try {
2021-04-30 20:39:06 +02:00
if (-not(test-path "$Filename" -pathType leaf)) { throw "Can't access audio file: $Filename" }
$FullPath = (get-childItem $Filename).fullname
$Filename = (get-item "$FullPath").name
2021-04-21 10:14:57 +02:00
2021-02-20 12:08:05 +01:00
add-type -assemblyName PresentationCore
$MediaPlayer = new-object System.Windows.Media.MediaPlayer
do {
$MediaPlayer.open($FullPath)
2021-04-21 10:14:57 +02:00
$Milliseconds = $MediaPlayer.NaturalDuration.TimeSpan.TotalMilliseconds
} until ($Milliseconds)
2021-04-30 20:39:06 +02:00
2021-04-21 10:14:57 +02:00
[int]$Minutes = $Milliseconds / 60000
[int]$Seconds = ($Milliseconds / 1000) % 60
2021-05-05 11:12:25 +02:00
"Playing for $($Minutes.ToString('00')):$($Seconds.ToString('00')) sec.: 🎵$Filename ..."
2021-05-06 16:19:50 +02:00
$PreviousTitle = $host.ui.RawUI.WindowTitle
$host.ui.RawUI.WindowTitle = "▶️$Filename"
2021-02-20 12:08:05 +01:00
$MediaPlayer.Volume = 1
2021-02-17 20:09:44 +01:00
$MediaPlayer.play()
2021-04-21 10:14:57 +02:00
start-sleep -milliseconds $Milliseconds
2021-02-20 12:08:05 +01:00
$MediaPlayer.stop()
$MediaPlayer.close()
2021-05-06 16:19:50 +02:00
$host.ui.RawUI.WindowTitle = $PreviousTitle
2021-02-17 20:09:44 +01:00
2021-02-16 20:03:32 +01:00
exit 0
} catch {
2021-05-02 21:30:48 +02:00
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2021-02-16 20:03:32 +01:00
exit 1
}