Ticket #9398: ffmpeg.ps1

File ffmpeg.ps1, 273 bytes (added by Arnab Animesh Das, 5 years ago)

ffmpeg scoop script

Line 
1if (!(Test-Path Variable:PSScriptRoot)) { $PSScriptRoot = Split-Path $MyInvocation.MyCommand.Path -Parent }
2$path = join-path "$psscriptroot" "..\apps\ffmpeg\current\bin\ffmpeg.exe"
3if($myinvocation.expectingInput) { $input | & $path @args } else { & $path @args }