Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can ffplay view subtitles

Tags:

ffmpeg

I've searched through the internet to view subtitles during playing a movie with ffplay but no luck, or maybe I'm too dumb. The extension file is .mts

thanx

like image 971
Tinhorn Avatar asked May 04 '18 12:05

Tinhorn


1 Answers

You have to use

ffplay -vf subtitles=filename=input.mkv input.mkv

Equivalent to -vf "subtitles=input.mkv"

Please find more information here.

like image 182
sivalik Avatar answered Oct 20 '22 20:10

sivalik