Skip to content

Commit

Permalink
2023-11-12 06:37:00
Browse files Browse the repository at this point in the history
  • Loading branch information
uidHUB committed Nov 12, 2023
1 parent 39cea20 commit d3217f5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions PkgStore.FFmpeg.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
.AUTHOREMAIL [email protected]
.COMPANYNAME iHub.TO
.COPYRIGHT 2023 Kitsune Solar. All rights reserved.
.LICENSEURI https://github.com/pkgstore/pwsh-curl/blob/main/LICENSE
.PROJECTURI
.LICENSEURI https://github.com/pkgstore/pwsh-ffmpeg/blob/main/LICENSE
.PROJECTURI https://github.com/pkgstore/pwsh-ffmpeg
#>

$App = @('ffmpeg.exe')
Expand All @@ -22,7 +22,7 @@ function Compress-Video() {
#>

Param(
[Parameter(Mandatory)][SupportsWildcards()][Alias('F')][string[]]$P_Files,
[Parameter(Mandatory)][Alias('I')][string[]]$P_In,
[Alias('CV')][string]$P_vCodec = 'libx265',
[Alias('CA')][string]$P_aCodec = 'copy',
[Alias('R')][int]$P_Framerate,
Expand All @@ -33,7 +33,7 @@ function Compress-Video() {

Test-App

(Get-ChildItem $P_Files -File)| ForEach-Object {
(Get-ChildItem $P_In -File) | ForEach-Object {
# Composing a app command.
$Param = @('-hide_banner')
$Param += @('-i', "${_}")
Expand Down

0 comments on commit d3217f5

Please sign in to comment.