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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
<head>
<style type="text/css" media="all">
body {
font: 80% arial, helvetica, sans-serif;
margin: 10;
}
</style>
<title>Formatting the filename</title>
<h1>Formatting the filename</h1>
<img src="filename-format-1.png" alt="syntax of the timer field"/>
</head>
<body bgcolor=white>
<table border="0" width="70%">
<tr>
<td>
<h3>Default filename</h3>
<p>The default filename has format <b>rec-%C%y%m%d-%H:%M:%S</b>. <br>
It uses date and time to create a unique filename for each recording.<br>
</p>
<p>The resulting filename from the default pattern looks like <b>rec-20110216-09:39:17.ogg</b>. As you can see, the symbols
have been replaced with current date (16.02.2011) and time (09:39:17 am)</b>.
<br>
<br>The file extension (such as .ogg, .mp3 or .m4a) is set to what you have selected in the main window.
You can set the audio format (and file extension) in the GUI.
</p>
<h3>Available formatting symbols</h3>
<dl>
<dt>%a<dd>is replaced by the locale's abbreviated weekday name.
<dt>%A<dd>is replaced by the locale's full weekday name.
<dt>%b<dd>is replaced by the locale's abbreviated month name.
<dt>%B<dd>is replaced by the locale's full month name.
<dt>%c<dd>is replaced by the locale's appropriate date and time representation.
<dt>%C<dd>is replaced by the century number (the year divided by 100 and truncated
to an integer) as a decimal number [00-99].
<dt>%d<dd>is replaced by the day of the month as a decimal number [01,31].
<dt>%D<dd>same as %m/%d/%y.
<dt>%e<dd>is replaced by the day of the month as a decimal number [1,31];
a single digit is preceded by a space.
<dt>%h<dd>same as %b.
<dt>%H<dd>is replaced by the hour (24-hour clock) as a decimal number [00,23].
<dt>%I<dd>is replaced by the hour (12-hour clock) as a decimal number [01,12].
<dt>%j<dd>is replaced by the day of the year as a decimal number [001,366].
<dt>%m<dd>is replaced by the month as a decimal number [01,12].
<dt>%M<dd>is replaced by the minute as a decimal number [00,59].
<dt>%n<dd>is replaced by a newline character.
<dt>%p<dd>is replaced by the locale's equivalent of either a.m. or p.m.
<dt>%r<dd>is replaced by the time in a.m. and
p.m. notation; in the POSIX locale this is
equivalent to %I:%M:%S %p.
<dt>%R<dd>is replaced by the time in 24 hour notation (%H:%M).
<dt>%S<dd>is replaced by the second as a decimal number [00,61].
<dt>%t<dd>is replaced by a tab character.
<dt>%T<dd>is replaced by the time (%H:%M:%S).
<dt>%u<dd>is replaced by the weekday as a decimal number [1,7], with 1 representing
Monday.
<dt>%U<dd>is replaced by the week number of the year (Sunday as the first day of
the week) as a decimal number [00,53].
<dt>%V<dd>is replaced by the week number of the year (Monday as the first day of the
week) as a decimal number [01,53]. If the week containing 1 January has
four or more days in the new year, then it is considered week 1. Otherwise,
it is the last week of the previous year, and the next week is week 1.
<dt>%w<dd>is replaced by the weekday as a decimal number [0,6], with 0 representing
Sunday.
<dt>%W<dd>is replaced by the week number of the year (Monday as the first day of
the week) as a decimal number [00,53]. All days in a new year preceding
the first Monday are considered to be in week 0.
<dt>%x<dd>is replaced by the locale's appropriate date representation.
<dt>%X<dd>is replaced by the locale's appropriate time representation.
<dt>%y<dd>is replaced by the year without century as a decimal number [00,99].
<dt>%Y<dd>is replaced by the year with century as a decimal number.
<dt>%Z<dd>is replaced by the timezone name or abbreviation, or by no bytes
if no timezone information exists.
<dt>%%<dd>is replaced by %.
</dl>
</td>
</tr>
</table>
</body>
</html>
|