We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8c10a2 commit d874c75Copy full SHA for d874c75
Source Code/Python Source Code/MRT/v9.py
@@ -10,6 +10,7 @@
10
exit()
11
12
import os
13
+from shutil import move
14
try:
15
import mutagen
16
except:
@@ -39,15 +40,19 @@ def san():
39
40
41
elif x=='3':
42
file=input('\n Enter Audio File:')
43
+ y=move(file,'MRT')
44
os.chdir('MRT')
45
os.system('py mat2.py '+file)
46
+ y=move(file.split('.')[0]+'.cleaned.'+file.split('.')[1],'..')
47
os.chdir('..')
48
san()
49
50
elif x == '4':
51
file=input('\n Enter Torrent File:')
52
53
54
55
56
57
58
0 commit comments