Skip to content

Instantly share code, notes, and snippets.

View ConnorSu's full-sized avatar

ConnorSu ConnorSu

View GitHub Profile
@ConnorSu
ConnorSu / subtitle-overlap-fixersu.go
Last active September 6, 2025 08:53 — forked from nimatrueway/subtitle-overlap-fixer.go
Little tool to fix overlapping subtitles (especially the ones extracted from english auto-subtitles of youtube, vtt files that you would convert to srt with ffmpeg)
package main
import (
"time"
"regexp"
"bufio"
"strconv"
"fmt"
"os"
"errors"