Skip to content
Discussion options

You must be logged in to vote

I'll try to learn how to convert .srt to dvdsub and remux into existing file without video re-encoding.

❗️Solution to add working subtitles for Miyoo Mini FFplay on Linux:

  1. Download srt2vob_0.7 at https://code.google.com/archive/p/srt2vob/downloads
  2. Run srt2vob_0.7. Follow errors, install missing dependencies.
  3. Let's say you have
input.srt
input.mp4

files. Run:

srt2vob_0.7 input.mp4 input

Last argument is srt filename WITHOUT extension.

srt2vob_0.7 will produse input.sub file.

  1. Run
ffmpeg -i input.mp4 -i input.sub -c:v copy -c:a copy -c:s dvdsub dvd-hard-subs.mp4
  1. Check that subtitles were embedded:
ffmpeg -i dvd-hard-subs.mp4
  Stream #0:0[0x1](und): Video: h264 (Main) (avc1 / 0x31…

Replies: 12 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by Aemiii91
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants
Converted from issue

This discussion was converted from issue #1854 on January 20, 2026 23:24.