Toggle navigation
Toggle navigation
This project
Loading...
Sign in
cse437_e
/
smartdoorlock-backend
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
최지우
2020-11-18 19:47:41 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
d219ccddeb25814587d3b0b8251451680be49758
d219ccdd
1 parent
e45dbe17
파이썬 버전에 따른 시간관련 함수 변경
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
2 deletions
api/videorecord.py
api/videorecord.py
View file @
d219ccd
...
...
@@ -51,8 +51,7 @@ def record() :
camera
.
stop_recording
()
camera
.
stop_preview
()
rec_time
=
time
.
time
()
-
start_time
vid_time
=
rec_time
.
strftime
(
"
%
H:
%
M:
%
S"
)
vid_time
=
time
.
strftime
(
"
%
M:
%
S"
,
time
.
gmtime
(
time
.
time
()
-
start_time
))
# s3 upload
'''
...
...
Please
register
or
login
to post a comment