FFTools.psm1

#Import Functions
$FunctionPath = $PSScriptRoot + "\Functions\"
$FunctionList = get-childitem $FunctionPath -Name

ForEach ($Function in $FunctionList) {
    . ($FunctionPath + $Function)
}

#Load Tips File
$tipspath = $PSScriptRoot + "\ffmpeg tips.txt"
$tips = get-content $tipspath

#Write module into to host
Write-Host "ffmpeg required in path"                -ForegroundColor Green
Write-Host "Set-Location to where files are staged" -ForegroundColor Green

#Go to staging folder
$Staging = Read-Host "Specify your staging folder (no qoutes)"
set-location $Staging