remove FFmpeg log because... I can
This commit is contained in:
parent
1be80fbec3
commit
3cce5415a4
1 changed files with 1 additions and 3 deletions
|
@ -61,7 +61,6 @@ def execute(command, shell=False):
|
|||
except OSError as ex:
|
||||
logging.error('Could not run command %s: %s', command, ex)
|
||||
return
|
||||
logging.debug(stdout, stderr)
|
||||
return stdout.strip()
|
||||
|
||||
|
||||
|
@ -192,8 +191,7 @@ def encode_h264(src, dest):
|
|||
logging.debug("First Pass command %s", firstpass)
|
||||
execute(firstpass)
|
||||
logging.debug("Second pass command %s", secondpass)
|
||||
out = execute(secondpass)
|
||||
logging.debug('FFmpeg stdout : %s', out)
|
||||
execute(secondpass)
|
||||
else:
|
||||
logging.debug("one pass encoding started ...")
|
||||
encode = [
|
||||
|
|
Reference in a new issue