Please, can anybody tell me how to successfully get subtitles and put them on a dvd or bluray disc so that my player can access them?
Announcement
Collapse
No announcement yet.
getting subtitles
Collapse
X
-
Never tried Aegisub. Reading through its manual, it seems to be focused on formatted subtitles (*.ASS, *.SSA) rather than plain text (*.SRT), but it supports SRT subtitles. One limitation is that it cannot extract subtitles from MP4 files, only from MKV files. A workaround for that would be to use MKVToolnix to convert an MP4 to an MKV.
Comment
-
Originally posted by JeffDavis View PostOne limitation is that it cannot extract subtitles from MP4 files, only from MKV files. A workaround for that would be to use MKVToolnix to convert an MP4 to an MKV.
- Likes 1
Comment
-
Originally posted by jpp72 View PostProgrammer in Python, Java, JavaScript, Swift, PHP, SQL, C#, C++, Go, R
- Likes 2
Comment
-
Originally posted by jpp72 View PostOpen subtitles from video
Open the subtitles muxed into the currently open video file. This currently only works with Matroska video files.
Comment
-
Originally posted by carilchasens View PostThanks.. not planning to edit subtitles, though. I just want to be able to burn the download to a disc and watch it on an ordinary dvd-bluray player with subtitles.
Comment
-
Originally posted by JeffDavis View PostDo you have a player that plays MP4 and MKV files, or do you want to author a DVD or Blu-ray that plays on a standard player? There is software that does that, but I have no experience with it.
Comment
-
Originally posted by JeffDavis View PostI'm just going by Aegisub's own manual:
I use CCExtractor, but it only extracts closed captions (text embedded in the video stream). If the video stream does not have subtitles, but has closed captions, you can extract the closed captions into an SRT file with CCExtractor, then add the SRT subtitle stream into an MP4 file with FFMPEG or an MKV file with MKVToolnix.
Code:@Echo off REM ********************************* REM Extract CC from MP4 (ccextractor) REM ********************************* setlocal ENABLEDELAYEDEXPANSION for /r %%i in (*.mp4) do ccextractorwinfull -autoprogram -mp4vidtrack -out=srt "%%i" pause
CCE might now work with some weirdly constructed files so i have an FFmpeg script:
Code:@Echo off REM ************************************ REM Extract Timed Text from MP4 (ffmpeg) REM ************************************ setlocal ENABLEDELAYEDEXPANSION for /r %%l in (*.mp4) do ffmpeg -hide_banner -i "%%~nxl" -codec:s subrip "%%~nl.srt" pause
Comment
-
Originally posted by JeffDavis View PostIf you want to extract subtitles, and maybe edit them, from a downloaded MP4 or MKV file, I use a freeware program called Subtitle Edit. It's available here:
The programmer is a Danish guy named Nikolaj Lynge Olsson.
Comment
Comment