2021-04-21 19:53:52 +02:00
|
|
|
|
<#
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.SYNOPSIS
|
|
|
|
|
play-m3u.ps1 [<playlist-file>]
|
|
|
|
|
.DESCRIPTION
|
2021-09-24 17:19:49 +02:00
|
|
|
|
Plays the given playlist (in .M3U file format)
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.EXAMPLE
|
2021-09-24 17:19:49 +02:00
|
|
|
|
PS> ./play-m3u C:\MyPlaylist.m3u
|
2021-08-29 17:50:03 +02:00
|
|
|
|
.NOTES
|
|
|
|
|
Author: Markus Fleschutz · License: CC0
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
2021-02-17 20:09:44 +01:00
|
|
|
|
#>
|
|
|
|
|
|
2021-07-15 15:51:22 +02:00
|
|
|
|
param([string]$Filename = "")
|
2021-02-18 20:17:55 +01:00
|
|
|
|
|
2021-02-17 20:09:44 +01:00
|
|
|
|
try {
|
2021-07-15 15:51:22 +02:00
|
|
|
|
if ($Filename -eq "" ) { $Filename = read-host "Enter the M3U playlist filename" }
|
|
|
|
|
|
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-09-16 20:19:10 +02:00
|
|
|
|
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
|
2021-02-17 20:09:44 +01:00
|
|
|
|
exit 1
|
|
|
|
|
}
|