Print subtitles above a X-screen, independently of the video player.

Olivier Marty a4d61080d0 Add other subtitles format 8 年之前
LICENSE a359d67686 shrink space at end of lines 8 年之前
Makefile a4d61080d0 Add other subtitles format 8 年之前
README.md a4d61080d0 Add other subtitles format 8 年之前
events.c 697358c0e6 fix a warning 8 年之前
events.h a359d67686 shrink space at end of lines 8 年之前
example.srt a4d61080d0 Add other subtitles format 8 年之前
example.sub a4d61080d0 Add other subtitles format 8 年之前
example.sub2 a4d61080d0 Add other subtitles format 8 年之前
example.vtt a4d61080d0 Add other subtitles format 8 年之前
main.c a4d61080d0 Add other subtitles format 8 年之前
parser.c a4d61080d0 Add other subtitles format 8 年之前
parser.h a4d61080d0 Add other subtitles format 8 年之前
parser_srt.c a4d61080d0 Add other subtitles format 8 年之前
parser_sub.c a4d61080d0 Add other subtitles format 8 年之前
parser_sub2.c a4d61080d0 Add other subtitles format 8 年之前
parser_vtt.c a4d61080d0 Add other subtitles format 8 年之前
printer.c a359d67686 shrink space at end of lines 8 年之前
printer.h a359d67686 shrink space at end of lines 8 年之前
rich_text.c 697358c0e6 fix a warning 8 年之前
rich_text.h 3abd4a2f12 New implementation with a state machine 9 年之前
time.c a4d61080d0 Add other subtitles format 8 年之前
time.h 9383a94991 Remove functions timeSleep and timeSleepUntil, add timeShift 9 年之前

README.md

SubtitlesPrinter

Print subtitles above a X-screen, independently of the video player.

Requirement

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.

Installation

Run in a terminal

git clone https://github.com/OlivierMarty/SubtitlesPrinter.git
make
sudo make install

Usage

To show file.srt, run in a terminal :

subtitlesPrinter file.srt

Controls

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.

Optional arguments

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

TODO

  • Support more type of file (with an extern library ?)

Every improvement is welcome !

LICENSE

This program is under GPLv2 licence, see LICENCE file for more details.