Skip to content

Instantly share code, notes, and snippets.

@davetromp
Created December 15, 2015 22:25
Show Gist options
  • Save davetromp/8fbb63e7dfc714668892 to your computer and use it in GitHub Desktop.
Save davetromp/8fbb63e7dfc714668892 to your computer and use it in GitHub Desktop.
# the code is explained here: https://youtu.be/Eex4zBc9r7Y
import os
def main():
files = os.listdir("./")
for f in files:
if f.lower()[-3:] == "mp4":
print "processing", f
process(f)
def process(f):
inFile = f
outFile = f[:-3] + "mp3"
cmd = "ffmpeg -i {} -vn -ac 2 -ar 44100 -ab 320k -f mp3 {}".format(inFile, outFile)
os.popen(cmd)
main()
@TheGR8CornJulio
Copy link

Works In Windows 10 1909 Build 18363.535 And Python 3.8.1 With Cmd Change
cmd = '''ffmpeg -i "{}" -vn -ac 2 -ar 44100 -ab 320k -f mp3 "{}"'''.format(inFile, outFile)
Many Thanks For The Script

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment