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 {
|
2021-04-30 20:39:06 +02:00
|
|
|
|
if (-not(test-path "$Filename" -pathType leaf)) { throw "Can't access playlist file: $Filename" }
|
2021-02-17 20:09:44 +01:00
|
|
|
|
$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]
|
2021-04-30 20:39:06 +02:00
|
|
|
|
if ($Line[0] -eq "#") { continue }
|
|
|
|
|
if (-not(test-path "$Line" -pathType leaf)) { throw "Can't access audio file: $Line" }
|
|
|
|
|
$FullPath = (get-childItem "$Line").fullname
|
|
|
|
|
$Filename = (get-item "$FullPath").name
|
|
|
|
|
do {
|
|
|
|
|
$MediaPlayer.open("$FullPath")
|
|
|
|
|
$Milliseconds = $MediaPlayer.NaturalDuration.TimeSpan.TotalMilliseconds
|
|
|
|
|
} until ($Milliseconds)
|
|
|
|
|
[int]$Minutes = $Milliseconds / 60000
|
|
|
|
|
[int]$Seconds = ($Milliseconds / 1000) % 60
|
|
|
|
|
"▶️Playing 🎵$Filename ($($Minutes.ToString('00')):$($Seconds.ToString('00'))) ..."
|
|
|
|
|
$MediaPlayer.Volume = 1
|
|
|
|
|
$MediaPlayer.play()
|
|
|
|
|
start-sleep -milliseconds $Milliseconds
|
|
|
|
|
$MediaPlayer.stop()
|
|
|
|
|
$MediaPlayer.close()
|
2021-02-17 20:09:44 +01:00
|
|
|
|
}
|
|
|
|
|
exit 0
|
|
|
|
|
} catch {
|
2021-05-02 21:30:48 +02:00
|
|
|
|
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
2021-02-17 20:09:44 +01:00
|
|
|
|
exit 1
|
|
|
|
|
}
|