ffmpeg -i video.mkv -map 0:s:0 subs.srt Perfect if you need to preserve effects from sone385engsub convert020002 min new . 4. Fixing Subtitle Sync Using the “020002” Clue The 020002 in your keyword strongly suggests a sync point . Many fansub releases include a key frame reference in the filename to help manually retime subtitles. Case 1: Subtitles are early or late If at 02:00:02 in the video, a character speaks but the subtitle appears earlier/later:
Now you're ready to handle any “engsub convert min new” weirdness that comes your way. Need further help? Drop a comment or upload a screenshot of your actual file’s MediaInfo output – I’ll decode the exact issue for you.
ffmpeg -i input.ass output.srt Convert embedded subtitles to external: sone385engsub convert020002 min new
Someone has this specific file, and the subtitles are either missing, out of sync, or they need to convert subtitles to a different format or embed them permanently. 2. Subtitle Formats Explained – Which One Do You Have? Before converting anything, identify your subtitle format.
| Part | Possible meaning | |------|------------------| | sone385 | Likely a release group or series identifier (e.g., SONE = Sony encoding group). 385 = episode number or file ID. | | engsub | English subtitles are either embedded (MKV) or external (.srt/.ass). | | convert | The file was converted from another format (e.g., AVI to MP4, or H264 to H265). | | 020002 | A timestamp: 02 hours, 00 minutes, 02 seconds. Often used in fansubbing to mark a key sync point. | | min new | Possibly “minimum new” — a re-encode with minimal quality loss, or a new version at 2m2s. | ffmpeg -i video
| Format | Extension | Best for | Convertible? | |--------|-----------|----------|--------------| | SubRip | .srt | Most players, social media, editors | Yes | | Advanced SubStation Alpha | .ass | Anime, styling, karaoke effects | Yes | | WebVTT | .vtt | HTML5 video | Yes | | PGS | .sup | Blu-ray bitmap subtitles | Complex |
ffmpeg -i video.mp4 -vf "ass=subs.ass" -c:a copy output.mp4 Many fansub releases include a key frame reference
Always keep subtitles in UTF-8 SRT for maximum compatibility. If you encounter a cryptic filename like this again, apply the same method: extract, convert, sync with the given timecode, and re-encode minimally.