Print subtitles above a X-screen, independently of the video player.
Olivier Marty 42e1dfc316 Improve parsers | před 9 roky | |
---|---|---|
LICENSE | před 9 roky | |
Makefile | před 9 roky | |
README.md | před 9 roky | |
events.c | před 9 roky | |
events.h | před 9 roky | |
example.srt | před 9 roky | |
example.sub | před 9 roky | |
example.sub2 | před 9 roky | |
example.vtt | před 9 roky | |
main.c | před 9 roky | |
parser.c | před 9 roky | |
parser.h | před 9 roky | |
parser_srt.c | před 9 roky | |
parser_sub.c | před 9 roky | |
parser_sub2.c | před 9 roky | |
parser_vtt.c | před 9 roky | |
printer.c | před 9 roky | |
printer.h | před 9 roky | |
rich_text.c | před 9 roky | |
rich_text.h | před 9 roky | |
time.c | před 9 roky | |
time.h | před 9 roky |
Print subtitles above a X-screen, independently of the video player.
This program uses X11 to show subtitles.
This program support .srt, .vtt, and two .sub subtitles types. Please check also there is no empty line at the beginning of the file, or some unprintable characters before the first character. You can see the specs of format .srt here : http://matroska.org/technical/specs/subtitles/srt.html
To have transparency between subtitles, try to launch xcompmgr before subtitlesPrinter.
Run in a terminal
git clone https://github.com/OlivierMarty/SubtitlesPrinter.git
make
sudo make install
To show file.srt, run in a terminal :
subtitlesPrinter file.srt
To quit, press CTRL+C in the terminal. To pause and resume, press space anywhere (badly this does not work with all windows). To shift the clock, press left and right arrows.
It is possible to skip x seconds with option -s, and to scale time with option -t. For other parameters and details see
subtitlesPrinter -h
Every improvement is welcome !
This program is under GPLv2 licence, see LICENCE file for more details.