PoshCode Archive  Artifact [9a506e0dfc]

Artifact 9a506e0dfc351d84d85fc0efa7bc833408ead2d9a760c0dbefc863a8ca600dc7:

  • File DirectX-MP3Player.ps1 — part of check-in [5ed219314c] at 2018-06-10 13:37:16 on branch trunk — I found Managed DirectX on one of my computers, so I thought write about how to play MP3 files with it. But note, this script has been tested on WinXP only. For example: (user: greg zakharov size: 1632)

# encoding: ascii
# api: powershell
# title: DirectX MP3Player
# description: I found Managed DirectX on one of my computers, so I thought write about how to play MP3 files with it. But note, this script has been tested on WinXP only. For example:
# version: 0.1
# type: function
# author: greg zakharov
# license: CC0
# function: Invoke-MP3Player
# x-poshcode-id: 4134
# x-archived: 2016-06-08T09:24:28
# x-published: 2013-04-26T12:25:00
#
# .\mp3play.ps1 ‘E:\Music\London Symphony Orchestra\March(The Nutcracker).mp3’ 0
#
#function Invoke-MP3Player {
  param (
    [Parameter(Mandatory=$true, Position=0)]
    [string]$MP3File,

    [Parameter(Mandatory=$false, Position=1)]
    [int]$Volume = -1000
  )

  $dir = (gci (Split-Path (
                Split-Path ([Runtime.InteropServices.RuntimeEnvironment]::GetRuntimeDirectory())
              )
         ) | ? {$_.Name -cmatch 'DirectX'}).FullName
  if ($dir -eq $null) { break }
  $dir = (gci $dir -r -i 'Microsoft.DirectX.AudioVideoPlayback.dll').FullName
  [void][Reflection.Assembly]::LoadFile($dir)

  try {
    $mp3 = [Microsoft.DirectX.AudioVideoPlayback.Audio]::FromFile($MP3File)
    $mp3.Volume = $Volume

    $ct = $host.UI.RawUI.WindowTitle
    $ts = New-Object TimeSpan 0, 0, 0

    do {
      Start-Sleep -s 1
      $ts += New-Object TimeSpan 0, 0, 1
      [Console]::Title = $ts
      $mp3.Play()
    } while ($mp3.CurrentPosition -ne $mp3.Duration)
    $mp3.Stop()
    $mp3.Dispose()
    $host.UI.RawUI.WindowTitle = $ct
  }
  catch { Write-Host An error has been occurred. Probably`, file is missed.`n }
#}