-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathGet-MediaInfo.psd1
More file actions
23 lines (21 loc) · 758 Bytes
/
Get-MediaInfo.psd1
File metadata and controls
23 lines (21 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
@{
RootModule = 'Get-MediaInfo.psm1'
ModuleVersion = '3.7'
GUID = '86639e26-2698-42ec-b7f1-c66daca2eb78'
Author = 'Frank Skare (stax76)'
CompanyName = 'Frank Skare (stax76)'
Copyright = '(C) 2020-2021 Frank Skare (stax76). All rights reserved.'
Description = 'PowerShell MediaInfo solution'
PowerShellVersion = '5.1'
ProcessorArchitecture = 'Amd64'
FunctionsToExport = @('Get-MediaInfo', 'Get-MediaInfoValue', 'Get-MediaInfoSummary')
CmdletsToExport = @()
VariablesToExport = '*'
AliasesToExport = @('gmi', 'gmiv', 'gmis')
PrivateData = @{
PSData = @{
Tags = @('mp3', 'media', 'video', 'audio')
ProjectUri = 'https://github.com/stax76/Get-MediaInfo'
}
}
}