Skip to content

Instantly share code, notes, and snippets.

View vivek1986's full-sized avatar
💭
I may be slow to respond.

Vivek Shah vivek1986

💭
I may be slow to respond.
  • PS
  • Ahmedabad
View GitHub Profile
@vivek1986
vivek1986 / BulkVideoRenamer.bat
Created October 28, 2023 12:39
PowerShell & Batch+PowerShell Hybrid Script to Rename almost any Video/Movie/Episode file you ever want
<# ::
@echo off
powershell -c "iex ((Get-Content '%~f0') -join [Environment]::Newline); iex 'main %*'"
goto :eof
#>
$validExtensions = '.mkv', '.mp4'
Get-ChildItem -File |
Where-Object Extension -In $validExtensions |
Where-Object Length -GT 500mb |