Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Video AG Infrastruktur
jobmanager
Commits
2e021a88
Commit
2e021a88
authored
Jul 26, 2017
by
Andreas Valder
Browse files
added error handling
parent
a025a52a
Changes
1
Hide whitespace changes
Inline
Side-by-side
worker.py
View file @
2e021a88
...
...
@@ -24,7 +24,10 @@ if (jobtype == 'thumbnail'):
inputfile
=
config
[
'MAIN'
][
'VIDEOS_RELEASED'
]
+
'/'
+
data
[
'path'
]
outputfile
=
config
[
'MAIN'
][
'VIDEOS_RELEASED'
]
+
'/'
+
config
[
'thumbnail'
][
'folder'
]
+
'/'
+
'l_'
+
str
(
data
[
'lectureid'
])
+
'.jpg'
api
.
job_ping
(
id
=
id
)
duration
=
float
(
subprocess
.
check_output
([
"ffprobe"
,
"-v"
,
"error"
,
"-show_entries"
,
"format=duration"
,
"-of"
,
"default=noprint_wrappers=1:nokey=1"
,
inputfile
]))
try
:
duration
=
float
(
subprocess
.
check_output
([
"ffprobe"
,
"-v"
,
"error"
,
"-show_entries"
,
"format=duration"
,
"-of"
,
"default=noprint_wrappers=1:nokey=1"
,
inputfile
]))
except
:
duration
=
0
api
.
job_ping
(
id
=
id
)
if
subprocess
.
call
([
"ffmpeg"
,
"-loglevel"
,
"error"
,
"-y"
,
"-ss"
,
str
(
duration
*
0.4
),
"-i"
,
inputfile
,
"-vf"
,
"scale=640:-1"
,
"-frames:v"
,
"1"
,
outputfile
])
==
0
:
api
.
job_ping
(
id
=
id
,
state
=
'finished'
)
...
...
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