about summary refs log tree commit diff stats
path: root/lib/Fornax/CLI.rakumod
Commit message (Expand)AuthorAgeFilesLines
* Set default crf to 24Andinus2021-11-181-1/+1
* Set stop duration to 2 secondsAndinus2021-11-181-1/+1
* Move frame generation to a module, update progress reportingAndinus2021-11-181-100/+23
* Alias frame-rate to fpsAndinus2021-11-171-2/+2
* Remove output option, rename frame-rate option to fpsAndinus2021-11-171-6/+6
* Update to latest fornax formatAndinus2021-11-161-21/+33
* Wait 4s on last frame, use awaitAndinus2021-11-041-1/+2
* Wait for jobs to finish before creating the slideshowAndinus2021-11-041-0/+2
* Process iterations in parallelAndinus2021-11-041-52/+62
* Add option to skip generating slideshow, use random directoryAndinus2021-11-041-7/+18
* java/DFS: Don't walk on visited, Add DFS solutions, change colorsAndinus2021-11-031-6/+15
* Fix log-level usage in ffmpeg, update mazeAndinus2021-11-031-1/+1
* Set ffmpeg verbosityAndinus2021-11-031-1/+3
* Fix excess space calculationAndinus2021-11-031-2/+2
* Change default output directoryAndinus2021-11-031-3/+4
* Variable frame rate, center the canvasAndinus2021-11-031-8/+15
* Generate slideshow with ffmpeg, add verbose optionAndinus2021-11-031-6/+12
* Parse fornax format to generate the imagesAndinus2021-11-031-34/+83
* Generate images for every iterationAndinus2021-11-021-3/+52
* Move to Raku module structureAndinus2021-11-021-0/+19
=hlt&id=ac07e589b3e912c704c2011d543f18b16712ff15'>ac07e589 ^
4bb57a55 ^
ac07e589 ^
672e3e50 ^

a654e4ec ^



e5c11a51 ^






















a654e4ec ^

672e3e50 ^
e5c11a51 ^
e4ac3c9e ^
a654e4ec ^
204dae92 ^



850822ff ^
ffc9e66b ^
850822ff ^




5fe060d5 ^


850822ff ^



5fe060d5 ^
850822ff ^









5fe060d5 ^
204dae92 ^
850822ff ^

204dae92 ^
850822ff ^
e4ac3c9e ^
5fe060d5 ^
e4ac3c9e ^
5fe060d5 ^

e4ac3c9e ^
5fe060d5 ^


e4ac3c9e ^


5fe060d5 ^




e4ac3c9e ^
5fe060d5 ^



e4ac3c9e ^
5fe060d5 ^

e4ac3c9e ^
5fe060d5 ^

e4ac3c9e ^
5fe060d5 ^

e4ac3c9e ^


5fe060d5 ^

e4ac3c9e ^


5fe060d5 ^

e4ac3c9e ^
5fe060d5 ^









e4ac3c9e ^

5fe060d5 ^

e4ac3c9e ^
5fe060d5 ^











e4ac3c9e ^
5fe060d5 ^
e4ac3c9e ^
5fe060d5 ^
104e521c ^
5fe060d5 ^
e4ac3c9e ^
5fe060d5 ^




e4ac3c9e ^

5fe060d5 ^



e4ac3c9e ^

5fe060d5 ^

e4ac3c9e ^

5fe060d5 ^







e4ac3c9e ^
5fe060d5 ^















































672e3e50 ^


a654e4ec ^
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250