Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -8,7 +8,7 @@ import ffmpeg
|
|
8 |
def outputProducer(inputVideo):
|
9 |
print(inputVideo)
|
10 |
input_file = ffmpeg.input(inputVideo)
|
11 |
-
input_file.output('audio.
|
12 |
command2 = "ls"
|
13 |
retVal = subprocess.check_output(command2)
|
14 |
return retVal
|
|
|
8 |
def outputProducer(inputVideo):
|
9 |
print(inputVideo)
|
10 |
input_file = ffmpeg.input(inputVideo)
|
11 |
+
input_file.output('audio.mp3', acodec='mp3').run()
|
12 |
command2 = "ls"
|
13 |
retVal = subprocess.check_output(command2)
|
14 |
return retVal
|