Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
mat2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Romain
mat2
Commits
32355cb2
Commit
32355cb2
authored
5 years ago
by
tguinot
Browse files
Options
Downloads
Patches
Plain Diff
Clean leftovers
parent
d02f5921
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
libmat2/bubblewrap.py
+1
-6
1 addition, 6 deletions
libmat2/bubblewrap.py
libmat2/exiftool.py
+1
-11
1 addition, 11 deletions
libmat2/exiftool.py
libmat2/video.py
+1
-6
1 addition, 6 deletions
libmat2/video.py
with
3 additions
and
23 deletions
libmat2/bubblewrap.py
+
1
−
6
View file @
32355cb2
...
...
@@ -23,14 +23,9 @@ CalledProcessError = subprocess.CalledProcessError
def
_get_bwrap_path
()
->
str
:
which_path
=
shutil
.
which
(
'
bwrap
'
)
if
which_path
is
not
None
and
os
.
access
(
which_path
,
os
.
X_OK
)
:
if
which_path
is
not
None
:
return
which_path
bwrap_path
=
'
/usr/bin/bwrap
'
if
os
.
path
.
isfile
(
bwrap_path
):
if
os
.
access
(
bwrap_path
,
os
.
X_OK
):
return
bwrap_path
raise
RuntimeError
(
"
Unable to find bwrap
"
)
# pragma: no cover
...
...
This diff is collapsed.
Click to expand it.
libmat2/exiftool.py
+
1
−
11
View file @
32355cb2
...
...
@@ -73,17 +73,7 @@ class ExiftoolParser(abstract.AbstractParser):
@functools.lru_cache
()
def
_get_exiftool_path
()
->
str
:
# pragma: no cover
which_path
=
shutil
.
which
(
'
exiftool
'
)
if
which_path
is
not
None
and
os
.
access
(
which_path
,
os
.
X_OK
)
:
if
which_path
is
not
None
:
return
which_path
possible_pathes
=
{
'
/usr/bin/exiftool
'
,
# debian/fedora
'
/usr/bin/vendor_perl/exiftool
'
,
# archlinux
}
for
possible_path
in
possible_pathes
:
if
os
.
path
.
isfile
(
possible_path
):
if
os
.
access
(
possible_path
,
os
.
X_OK
):
return
possible_path
raise
RuntimeError
(
"
Unable to find exiftool
"
)
This diff is collapsed.
Click to expand it.
libmat2/video.py
+
1
−
6
View file @
32355cb2
...
...
@@ -139,12 +139,7 @@ class MP4Parser(AbstractFFmpegParser):
@functools.lru_cache
()
def
_get_ffmpeg_path
()
->
str
:
# pragma: no cover
which_path
=
shutil
.
which
(
'
ffmpeg
'
)
if
which_path
is
not
None
and
os
.
access
(
which_path
,
os
.
X_OK
)
:
if
which_path
is
not
None
:
return
which_path
ffmpeg_path
=
'
/usr/bin/ffmpeg
'
if
os
.
path
.
isfile
(
ffmpeg_path
):
if
os
.
access
(
ffmpeg_path
,
os
.
X_OK
):
return
ffmpeg_path
raise
RuntimeError
(
"
Unable to find ffmpeg
"
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment