-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpylapse.py
More file actions
382 lines (345 loc) · 12.8 KB
/
pylapse.py
File metadata and controls
382 lines (345 loc) · 12.8 KB
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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
import libsonyapi
from libsonyapi.actions import Actions
from libsonyapi.camera import Camera, ConnectionError
import tkinter as tk
from tkinter import messagebox
import threading
import time
import datetime
import os
pylapse_font = ("Trebuchet", 14)
class CustomLabel(tk.Label):
"""
defines a custom label used throughout pylapse
"""
def __init__(self, parent, **kwargs):
tk.Label.__init__(self, parent, **kwargs)
self.config(font=pylapse_font)
self.pack()
class PyLapse(tk.Tk):
"""
root window of pylapse, MainScreen is placed in this window
"""
def __init__(self):
super(PyLapse, self).__init__()
self.title("PyLapse")
class MainScreen(tk.Frame):
"""
MainScreen frame of pylapse, is placed in pylapse root window
"""
def __init__(self, parent):
"""
places the live view and timelapse frames
"""
tk.Frame.__init__(self, parent)
tk.Label(self, text="PyLapse", font=("Trebuchet", 20)).grid(row=1)
self.set_live_view()
self.set_timelapse_frame()
def set_live_view(self):
"""
contains widgets in live view section of MainScreen
"""
# TODO: implement live view, scrap controls,
live_view_frame = tk.Frame(self)
live_view_frame.grid(row=2)
live_view = tk.Frame(live_view_frame)
live_view.grid(row=1, column=1)
# CustomLabel(live_view, text = 'live view')
live_view_controls_frame = tk.Frame(live_view_frame)
live_view_controls_frame.grid(row=1, column=2)
# CustomLabel(live_view_controls_frame, text = 'controls')
self.camera_connect_button = tk.Button(
live_view_frame,
text="Connect to camera",
font=pylapse_font,
command=self.connect_to_camera,
)
self.camera_connect_button.grid(row=2, column=1, columnspan=2)
self.camera_connection_status = tk.Label(live_view_frame, font=pylapse_font)
self.camera_connection_status.grid(row=3, column=1, columnspan=2)
def set_timelapse_frame(self):
"""
contains widgets in the timelapse section of MainScreen
"""
timelapse_frame = tk.Frame(self)
timelapse_frame.grid(row=3)
timelapse_settings_frame = tk.Frame(timelapse_frame)
timelapse_settings_frame.grid(row=1, column=1)
CustomLabel(timelapse_settings_frame, text="TIMELAPSE SETTINGS")
CustomLabel(timelapse_settings_frame, text="FPS")
self.fps_scale = tk.Scale(
timelapse_settings_frame,
orient=tk.HORIZONTAL,
from_=0,
to=60,
sliderlength=10,
length=150,
tickinterval=10,
command=self.update_timelapse_info,
)
self.fps_scale.pack()
self.fps_scale.set(24)
CustomLabel(timelapse_settings_frame, text="Interval\n(max:10min 59sec)")
interval_frame = tk.Frame(timelapse_settings_frame, pady=5)
interval_frame.pack()
self.min_between_shots = tk.Spinbox(
interval_frame,
from_=0,
to=10,
width=2,
font=pylapse_font,
command=self.update_timelapse_info,
)
self.min_between_shots.grid(row=1, column=1)
min_label = tk.Label(interval_frame, text="min", font=pylapse_font)
min_label.grid(row=1, column=2)
self.sec_between_shot = tk.Spinbox(
interval_frame,
from_=0,
to=59,
width=2,
font=pylapse_font,
command=self.update_timelapse_info,
)
self.sec_between_shot.grid(row=1, column=3)
self.sec_between_shot.delete(0)
self.sec_between_shot.insert(0, 5)
sec_label = tk.Label(interval_frame, text="sec", font=pylapse_font)
sec_label.grid(row=1, column=4)
timelapse_duration_label = CustomLabel(
timelapse_settings_frame, text="Timelapse Duration"
)
timelapse_duration_frame = tk.Frame(timelapse_settings_frame)
timelapse_duration_frame.pack()
self.timelapse_duration_min = tk.Spinbox(
timelapse_duration_frame,
from_=0,
to=99,
width=2,
font=pylapse_font,
command=self.update_timelapse_info,
)
self.timelapse_duration_min.grid(row=1, column=1)
timelapse_duration_min_label = tk.Label(
timelapse_duration_frame, text="min", font=pylapse_font
)
timelapse_duration_min_label.grid(row=1, column=2)
self.timelapse_duration_sec = tk.Spinbox(
timelapse_duration_frame,
from_=0,
to=59,
width=2,
font=pylapse_font,
command=self.update_timelapse_info,
)
self.timelapse_duration_sec.grid(row=1, column=3)
self.timelapse_duration_sec.delete(0)
self.timelapse_duration_sec.insert(0, 10)
timelapse_duration_sec_label = tk.Label(
timelapse_duration_frame, text="sec", font=pylapse_font
)
timelapse_duration_sec_label.grid(row=1, column=4)
timelapse_info_frame = tk.Frame(timelapse_frame)
timelapse_info_frame.grid(row=1, column=2)
CustomLabel(timelapse_info_frame, text="TIMELAPSE INFO")
self.total_shots = CustomLabel(
timelapse_info_frame, text="Total Amount of Shots: ", pady=35
)
self.shoot_duration = CustomLabel(
timelapse_info_frame, text="Total Shooting Time: ", pady=35
)
self.update_timelapse_info()
start_button = tk.Button(
self, text="START TIMELAPSE", font=pylapse_font, command=self.confirm
)
start_button.grid(row=4)
def connect_to_camera(self):
"""
attempts connection to sony camera
"""
try:
self.camera_connection_status.config(text="Connecting to camera...")
self.camera = Camera()
self.camera.do(Actions.startRecMode)
self.camera_connection_status.config(
text="Successfully connected to " + self.camera.name
)
self.camera_connect_button.grid_forget()
except ConnectionError:
self.camera_connection_status.config(text="Connection to camera failed")
def get_params(self):
"""
returns: fps, min, sec, timelapse_duration, total_interval_in_sec, total_shots, shoot_duration
gets params from user input of MainScreen
"""
fps = int(self.fps_scale.get())
min = int(self.min_between_shots.get())
sec = int(self.sec_between_shot.get())
timelapse_duration = int(self.timelapse_duration_min.get()) * 60 + int(
self.timelapse_duration_sec.get()
)
total_interval_in_sec = min * 60 + sec
total_shots = timelapse_duration * fps
shoot_duration = total_shots * total_interval_in_sec
return (
fps,
min,
sec,
timelapse_duration,
total_interval_in_sec,
total_shots,
shoot_duration,
)
def update_timelapse_info(self, event=None):
"""
this is called whenever user changes fps, duration, interval value in MainScreen
calculates and updates the respective labels
"""
(
fps,
min,
sec,
timelapse_duration,
total_interval_in_sec,
total_shots,
shoot_duration,
) = self.get_params()
self.total_shots.config(
text="Total Amount of Shots:\n" + str(total_shots) + " shots"
)
self.shoot_duration.config(
text="Total Shooting Time:\n"
+ str(int(shoot_duration / 60))
+ " min "
+ str(shoot_duration % 60)
+ " sec"
)
def confirm(self):
"""
displays confirmation box, if yes: start timelapse, if no: nothing happens
"""
(
fps,
min,
sec,
timelapse_duration,
total_interval_in_sec,
total_shots,
shoot_duration,
) = self.get_params()
confirm_box = messagebox.askyesno(
"Start timelapse??",
"Do you want to start a timelapse with the following settings:\n\n"
+ str(fps)
+ " FPS with a "
+ str(min)
+ " min "
+ str(sec)
+ " sec interval"
+ ", which will make a "
+ str(timelapse_duration)
+ " second long timelapse\n\n"
+ "This timelapse will consist of "
+ str(total_shots)
+ " shots and will require "
+ str(int(shoot_duration / 60))
+ " min "
+ str((shoot_duration % 60))
+ " sec of total shooting time\n\n"
+ "Make sure you have set your camera to the desired settings!",
)
if confirm_box == True:
# initizate timelapse
timelapse = threading.Thread(
target=self.start_timelapse, args=(total_interval_in_sec, total_shots)
)
timelapse.daemon = True
timelapse.start()
# init timelapse progress checker
top = tk.Toplevel(width=1000)
top.title("Timelape in progress...")
self.start_time = datetime.datetime.now()
self.end_time = self.start_time + datetime.timedelta(seconds=shoot_duration)
self.progress_label = CustomLabel(top, text="Timelape in progress...")
self.shot_count = CustomLabel(top)
self.percent_done = CustomLabel(top)
CustomLabel(top, text="-" * 10)
self.time_elapsed = CustomLabel(top)
time_started = CustomLabel(
top, text="Time Started: " + self.start_time.strftime("%I:%M")
)
estimate_complete = CustomLabel(
top,
text="Estimated Time Completion: " + self.end_time.strftime("%I:%M"),
)
def stop_timelapse():
self.isrunning = False
top.destroy()
self.cancel_button = tk.Button(
top, text="Cancel Timelapse", font=pylapse_font, command=stop_timelapse
)
self.cancel_button.pack()
self.refresh_info_toplevel(
total_interval_in_sec, total_shots, shoot_duration
)
top.mainloop()
def start_timelapse(self, interval_in_sec, total_shots):
"""
starts timelapse with params: interval and total shots
"""
self.shots_taken = 0
self.isrunning = True
while self.shots_taken != total_shots and self.isrunning:
self.camera.do(Actions.actTakePicture)
time.sleep(interval_in_sec)
self.shots_taken += 1
self.isrunning = False
def refresh_info_toplevel(self, interval_in_sec, total_shots, shoot_duration):
"""
refresh timelapse info window until timelapse is completed
"""
if self.shots_taken < total_shots and self.isrunning:
(
fps,
min,
sec,
timelapse_duration,
total_interval_in_sec,
total_shots,
shoot_duration,
) = self.get_params()
self.shot_count.config(
text="Shots: " + str(self.shots_taken + 1) + "/" + str(total_shots)
)
self.percent_done.config(
text="Percent Completed: "
+ (str(int(((self.shots_taken + 1) / total_shots) * 100)) + "%")
)
self.time_elapsed.config(
text="Time Elapsed: "
+ str(datetime.datetime.now() - self.start_time).split(".")[0]
)
self.after(
1000,
self.refresh_info_toplevel,
total_interval_in_sec,
total_shots,
shoot_duration,
)
elif self.shots_taken == total_shots and not self.isrunning:
self.progress_label.config(text="TIMELAPSE COMPLETED!!")
self.cancel_button.pack_forget()
if __name__ == "__main__":
def resource_path(relative_path):
"""Get absolute path to resource, works for dev and for PyInstaller"""
try:
# PyInstaller creates a temp folder and stores path in _MEIPASS
base_path = sys._MEIPASS
except Exception:
base_path = os.path.abspath(".")
return os.path.join(base_path, relative_path)
# place MainScreen in pylapse root window and start mainloop
root = PyLapse()
root.iconbitmap(resource_path("releases\pylapse.ico"))
MainScreen(root).pack()
root.mainloop()