파이썬3 호환성 추가
This commit is contained in:
@@ -112,7 +112,8 @@ def ajax(sub):
|
||||
# UI 요청
|
||||
elif sub == 'ffmpeg_version':
|
||||
path = request.form['path']
|
||||
ret = subprocess.check_output([path, '-version']).replace('\n', '<br>')
|
||||
ret = subprocess.check_output([path, '-version'])
|
||||
ret = ret.decode().replace('\n', '<br>')
|
||||
return jsonify(ret)
|
||||
|
||||
elif sub == 'download':
|
||||
|
||||
Reference in New Issue
Block a user