mirror of
https://github.com/master-of-zen/Av1an.git
synced 2024-11-25 10:40:51 +00:00
sound stream fix
This commit is contained in:
parent
acc1a2d5e4
commit
0e2c3ad113
1 changed files with 2 additions and 2 deletions
4
av1an.py
4
av1an.py
|
@ -25,7 +25,7 @@ except ImportError:
|
|||
print('ERROR: No PyScenedetect installed, try: sudo pip install scenedetect')
|
||||
|
||||
|
||||
FFMPEG = 'ffmpeg -hide_banner -loglevel error -an'
|
||||
FFMPEG = 'ffmpeg -hide_banner -loglevel error '
|
||||
|
||||
|
||||
class ProgressBar:
|
||||
|
@ -143,7 +143,7 @@ def encode(commands):
|
|||
Replace ffmpeg with aomenc because ffmpeg libaom doen't work with parameters properly
|
||||
"""
|
||||
for i in commands[:-1]:
|
||||
cmd = f'{FFMPEG} {i}'
|
||||
cmd = f'{FFMPEG} -an {i}'
|
||||
Popen(cmd, shell=True).wait()
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue