Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bob
bob.db.replaymobile
Commits
223b700c
Commit
223b700c
authored
Aug 24, 2016
by
Sushil BHATTACHARJEE
Browse files
changed print statements to python3
parent
2b960b68
Pipeline
#3329
passed with stages
in 12 minutes and 49 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
bob/db/replaymobile/models.py
View file @
223b700c
...
...
@@ -206,7 +206,7 @@ class File(Base):
[optional] The extension of the filename - this will control the type of
output and the codec for saving the input blob.
"""
print
'video file extension:'
,
extension
print
(
'video file extension:'
,
extension
)
if
extension
is
None
:
extension
=
'.mov'
# if self.get_quality() == 'laptop':
...
...
@@ -223,7 +223,7 @@ class File(Base):
vin
=
numpy
.
rollaxis
(
vin
,
3
,
2
)
if
not
self
.
is_tablet
():
print
"flipping mobile video"
print
(
"flipping mobile video"
)
vin
=
vin
[:,
:,
::
-
1
,:]
# if self.is_rotated():
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment