Skip to content

Commit d874c75

Browse files
authored
Fix Audio and Torrent support not working .
1 parent d8c10a2 commit d874c75

File tree

1 file changed

+5
-0
lines changed
  • Source Code/Python Source Code/MRT

1 file changed

+5
-0
lines changed

Source Code/Python Source Code/MRT/v9.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
exit()
1111

1212
import os
13+
from shutil import move
1314
try:
1415
import mutagen
1516
except:
@@ -39,15 +40,19 @@ def san():
3940
exit()
4041
elif x=='3':
4142
file=input('\n Enter Audio File:')
43+
y=move(file,'MRT')
4244
os.chdir('MRT')
4345
os.system('py mat2.py '+file)
46+
y=move(file.split('.')[0]+'.cleaned.'+file.split('.')[1],'..')
4447
os.chdir('..')
4548
san()
4649
exit()
4750
elif x == '4':
4851
file=input('\n Enter Torrent File:')
52+
y=move(file,'MRT')
4953
os.chdir('MRT')
5054
os.system('py mat2.py '+file)
55+
y=move(file.split('.')[0]+'.cleaned.'+file.split('.')[1],'..')
5156
os.chdir('..')
5257
san()
5358
exit()

0 commit comments

Comments
 (0)