A lightweight Python GUI tool for organizing and filtering Nvidia ShadowPlay clips based on folder name and file extension. Perfect for gamers who want to quickly locate highlight reels or gameplay recordings without digging through cluttered folders.
- Browse and select a folder containing Nvidia clips
- Automatically uses folder name as keyword (e.g. game title)
- Filters
.mp4or.movfiles that match the keyword - Displays how many matching clips were found
- Calls a built-in
filter()function to process the clips
- Python 3.6+
tkinter(included with most Python installations)- A
filter.pyfile containing thefilter()function
nvidia-clip-filter/
โ
โโโ main.py # GUI application
โโโ filter.py # Contains filter() function used to process clips
โโโ README.md # This file
- Select a folder (e.g.
C:/Videos/Valorant) - The app extracts
"Valorant"as the keyword - Filters all
.mp4or.movfiles in that folder containing"valorant"in the filename - Displays the number of matching clips
- Runs the
filter()function to process them (e.g. move, rename, etc.)
If your folder is:
C:/Users/Kacper/Videos/ApexLegends
The app will:
- Use
"ApexLegends"as the keyword - Find all
.mp4or.movfiles in that folder with"apexlegends"in the filename - Display the count and run your filter logic
Grzelus โ build for clippers
Open-source and free to use. Add a license if you plan to share or distribute.