2023-10-31 12:48:22 +01:00
|
|
|
|
<#
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.SYNOPSIS
|
2021-10-16 16:50:10 +02:00
|
|
|
|
Plays a playlist (.M3U format)
|
2021-10-04 21:29:23 +02:00
|
|
|
|
.DESCRIPTION
|
2022-02-10 08:57:52 +01:00
|
|
|
|
This PowerShell script plays the given playlist (in .M3U file format)
|
2021-10-16 16:50:10 +02:00
|
|
|
|
.PARAMETER filename
|
|
|
|
|
Specifies the path to the playlist
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.EXAMPLE
|
2021-09-24 17:19:49 +02:00
|
|
|
|
PS> ./play-m3u C:\MyPlaylist.m3u
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
2022-09-06 21:42:04 +02:00
|
|
|
|
.NOTES
|
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
2021-02-17 20:09:44 +01:00
|
|
|
|
#>
|
|
|
|
|
|
2021-10-04 21:29:23 +02:00
|
|
|
|
param([string]$filename = "")
|
2021-02-18 20:17:55 +01:00
|
|
|
|
|
2021-02-17 20:09:44 +01:00
|
|
|
|
try {
|
2021-10-04 21:29:23 +02:00
|
|
|
|
if ($filename -eq "" ) { $filename = read-host "Enter the M3U playlist filename" }
|
2021-07-15 15:51:22 +02:00
|
|
|
|
|
2021-10-04 21:29:23 +02:00
|
|
|
|
if (-not(test-path "$filename" -pathType leaf)) { throw "Can't access playlist file: $filename" }
|
|
|
|
|
$Lines = get-content $filename
|
2021-02-17 20:09:44 +01:00
|
|
|
|
|
|
|
|
|
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
|
2021-10-04 21:29:23 +02:00
|
|
|
|
$filename = (get-item "$FullPath").name
|
2021-04-30 20:39:06 +02:00
|
|
|
|
do {
|
|
|
|
|
$MediaPlayer.open("$FullPath")
|
|
|
|
|
$Milliseconds = $MediaPlayer.NaturalDuration.TimeSpan.TotalMilliseconds
|
|
|
|
|
} until ($Milliseconds)
|
|
|
|
|
[int]$Minutes = $Milliseconds / 60000
|
|
|
|
|
[int]$Seconds = ($Milliseconds / 1000) % 60
|
2021-10-04 21:29:23 +02:00
|
|
|
|
"▶️Playing 🎵$filename ($($Minutes.ToString('00')):$($Seconds.ToString('00'))) ..."
|
2021-04-30 20:39:06 +02:00
|
|
|
|
$MediaPlayer.Volume = 1
|
|
|
|
|
$MediaPlayer.play()
|
|
|
|
|
start-sleep -milliseconds $Milliseconds
|
|
|
|
|
$MediaPlayer.stop()
|
|
|
|
|
$MediaPlayer.close()
|
2021-02-17 20:09:44 +01:00
|
|
|
|
}
|
2021-09-27 10:09:45 +02:00
|
|
|
|
exit 0 # success
|
2021-02-17 20:09:44 +01:00
|
|
|
|
} catch {
|
2022-04-13 12:06:32 +02:00
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
2021-02-17 20:09:44 +01:00
|
|
|
|
exit 1
|
|
|
|
|
}
|