PowerShell/Scripts/play-m3u.ps1

40 lines
1.1 KiB
PowerShell
Raw Normal View History

2021-04-21 19:53:52 +02:00
<#
2021-04-07 15:17:49 +02:00
.SYNTAX play-m3u.ps1 [<playlist-file>]
2021-04-21 09:03:42 +02:00
.DESCRIPTION plays the given playlist (in .M3U file format)
2021-03-22 20:10:18 +01:00
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
2021-02-17 20:09:44 +01:00
#>
param($Filename = "")
2021-04-21 09:03:42 +02:00
if ($Filename -eq "" ) { $Filename = read-host "Enter the M3U playlist filename" }
2021-02-18 20:17:55 +01:00
2021-02-17 20:09:44 +01:00
try {
$Lines = get-content $Filename
add-type -assemblyName presentationCore
$MediaPlayer = new-object system.windows.media.mediaplayer
for ([int]$i=0; $i -lt $Lines.Count; $i++) {
$Line = $Lines[$i]
if ($Line[0] -ne "#") {
2021-02-20 12:08:05 +01:00
$FullPath = (get-childItem "$Line").fullname
do {
2021-02-22 18:43:18 +01:00
$MediaPlayer.open($FullPath)
2021-04-21 10:33:38 +02:00
$Milliseconds = $MediaPlayer.NaturalDuration.TimeSpan.TotalMilliseconds
} until ($Milliseconds)
[int]$Minutes = $Milliseconds / 60000
[int]$Seconds = ($Milliseconds / 1000) % 60
"Playing 🎵$Line ($($Minutes):$Seconds) ..."
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:33:38 +02:00
start-sleep -milliseconds $Milliseconds
2021-02-20 12:08:05 +01:00
$MediaPlayer.stop()
$MediaPlayer.close()
2021-02-17 20:09:44 +01:00
}
}
exit 0
} catch {
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}