summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2015-01-07 21:15:02 -0500
committerDavid Thompson <dthompson2@worcester.edu>2015-01-07 21:19:10 -0500
commitb41440330b8503f9f7d3efef27539351373e72a8 (patch)
treef22c8222cd49d198dc870681e656dcbc6c0d85f5 /README.md
First commit.
Diffstat (limited to 'README.md')
-rw-r--r--README.md44
1 files changed, 44 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..dc71bbf
--- /dev/null
+++ b/README.md
@@ -0,0 +1,44 @@
+srt2vtt
+=======
+
+Convert SRT formatted subtitles to WebVTT format for use with the
+HTML5 `<track>` tag.
+
+Usage
+-----
+
+```
+$ srt2vtt --help
+Usage: srt2vtt [OPTIONS]
+Convert SubRip formatted subtitles to WebVTT format.
+
+ -h, --help display this help and exit
+ -v, --version display version and exit
+ -i, --input=FILE-NAME read input from FILE-NAME
+ -o, --output=FILE-NAME write output to FILE-NAME
+```
+
+If `--input` or `--output` is ommitted, read from stdin or stdout,
+respectively.
+
+Installation
+------------
+
+```
+autoreconf -vif
+./configure
+make install
+```
+
+Alternatively, just copy `srt2vtt` yourself to wherever you would like
+it. Or, call it from your own git checkout.
+
+Requirements
+------------
+
+* GNU Guile >= 2.0.5
+
+License
+-------
+
+GNU GPLv3+