-
Notifications
You must be signed in to change notification settings - Fork 8
/
README.rst.stpl
57 lines (36 loc) · 1.08 KB
/
README.rst.stpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
% import sys
% sys.path+=[os.getcwd()]
% import syncstart
=======================================
syncstart(1) Version {{syncstart.__version__}} \| syncstart
=======================================
SYNOPSIS
========
%parser=syncstart.cli_parser()
Command line help::
%for ln in parser.format_help().splitlines():
{{!ln}}
%end
DESCRIPTION
===========
{{syncstart.__doc__}}
INSTALLATION
============
To install for user only, do::
pip install --user syncstart
Or activate a virtualenv and do::
pip install syncstart
EXAMPLES
--------
::
# compute audio offset with default settings:
syncstart from_s10.m4a from_gopro.m4p
# compute audio offset using first 10 seconds with denoising, normalization and a 300 Hz lowpass filter:
syncstart video1.mp4 video2.mkv -t 10 -dnl 300
# compute video offset using first 20 seconds, don't show plots, only output final result:
syncstart video1.mp4 video2.mkv -vsq
# compute video offset using seconds 15 to 25 with denoising, cropping and normalization:
syncstart video1.mp4 video2.mkv -b 15 -t 10 -vdcn
License
-------
MIT