Skip to content

Instantly share code, notes, and snippets.

@Developer-Incoming
Created August 19, 2025 11:32
Show Gist options
  • Select an option

  • Save Developer-Incoming/f7ebabb12e41de9316f80de7c5b6fdda to your computer and use it in GitHub Desktop.

Select an option

Save Developer-Incoming/f7ebabb12e41de9316f80de7c5b6fdda to your computer and use it in GitHub Desktop.
Brawlhalla Background Blur Batch Script
REM Change to directory via cd to path\to\Steam\steamapps\common\Brawlhalla\mapArt\Backgrounds
REM Make sure you've ffmpeg so you can actually process images
for /r %i in (*) do ffmpeg -i %i -vf "gblur=sigma=18" -y -c:a copy %i
@Developer-Incoming
Copy link
Author

Linux:

for i in .* *; do ffmpeg -i $i -vf "gblur=sigma=18" -y -c:a copy $i; done

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment