ffmpeg.psd1
@{ RootModule = 'ffmpeg.psm1' Author = 'Trevor Sullivan <trevor@trevorsullivan.net>' CompanyName = 'Trevor Sullivan' ModuleVersion = '0.1.4' GUID = '9bf86127-4c92-4dce-8fa6-43f071d1ffde' Copyright = '2022 Trevor Sullivan' Description = 'Automate audio/video tasks with FFmpeg, using a PowerShell-friendly approach.' PowerShellVersion = '6.0.0' CompatiblePSEditions = @('Core') FunctionsToExport = @( 'Resize-Video' 'Get-FFmpegFormat' 'Invoke-RTSPSegment' ) AliasesToExport = @('') VariablesToExport = @('') PrivateData = @{ PSData = @{ Tags = @('TrevorSullivan', 'video', 'ffmpeg', 'opensource', 'trevor') LicenseUri = '' ProjectUri = 'https://github.com/pcgeek86/ffmpeg-pwsh' IconUri = '' ReleaseNotes = @' '@ } } } |