File: example-timecodes-v1.txt

package info (click to toggle)
mkvtoolnix 2.7.0-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 6,588 kB
  • ctags: 7,821
  • sloc: cpp: 58,096; ansic: 5,764; sh: 3,037; ruby: 1,458; makefile: 635; perl: 249; xml: 161
file content (27 lines) | stat: -rw-r--r-- 913 bytes parent folder | download | duplicates (6)
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
# timecode format v1

# The very first line MUST have this format. Later formats will increase
# the version number.

# As you can see empty lines and other lines starting with '#' are ignored.

# The second line with contents MUST be 'assume <fps>', e.g.
assume 25
# This sets the default FPS for ranges that are not explicitely covered
# below.

# The remaining lines have the format 's,e,fps'.
# White spaces around the commas are ignored. This sets the number of
# frames per second for the frames starting with frame number s up to and
# including frame number e.

# The 'fps' can be given as a floating point number. Note that only
# dots ('.') are accepted as the decimal point, not commas!

# Example:
800,1000,23.97
1500,1700,29.930

# As you can see you can have gaps at the start, in the middle, and
# naturally at the end. For those gaps the default FPS set with the
# 'assume' command is being used.