This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# PowerShell script for streaming MP4 files to YouTube using FFmpeg | |
# Define the directory containing your MP4 files | |
$VideoDir = Get-Location | |
# Your YouTube Stream Key | |
$StreamKey = "your youtube stream key" | |
# Infinite loop to keep the script running | |
while ($true) { |