XxZer0ModZxX/Sub-Fix-Pro
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
# Sub Fix Pro – Simple SRT Subtitle Fixer A small Python script that automatically fixes common `.srt` subtitle formatting issues. ## What the script does * Splits multiple sentences into separate subtitles * Wraps lines to a maximum of ~42 characters * Rebuilds subtitle numbering * Keeps the original text unchanged * Creates a new file with `_fixed` added to the filename Example: movie.srt → movie_fixed.srt # How to Use ## 1. Place files in the same folder Put the script and your `.srt` files in the same folder. Example: Sub Fix Pro ├ Sub_Fix_Pro.py ├ movie.srt ├ episode1.srt └ subtitles.srt ## 2. Open a terminal in the folder 1. Open the Sub Fix Pro folder 2. Click the address bar at the top of the window 3. Type: cmd 4. Press Enter A terminal will open in that folder. Example: C:\Users\Your_User_Name\Desktop\Sub Fix Pro> ## 3. Run the script Type: python Sub_Fix_Pro.py or if your system uses `py`: py Sub_Fix_Pro.py Press Enter. # Result The script will automatically process all `.srt` files in the folder and create fixed versions: movie.srt → movie_fixed.srt episode1.srt → episode1_fixed.srt subtitles.srt → subtitles_fixed.srt Your original subtitle files remain unchanged. # Requirements * Python 3 installed * Works on Windows, Linux, and macOS