-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
27 lines (20 loc) · 1.17 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import library
#print(library.get_files_name("C:/Users/ourea/Music/Pattern Factory Operators/Custom Air Modulations"))
test_name = "01. Pattern Factory Operators - Red Card Stratagem (feat. Jankennpopp) - Custom Air Modulations"
test_name2 = "9 - Kool Title, Kool Artist, (1998)"
# print(library.get_file_extension("01. Pattern Factory Operators - Red Card Stratagem (feat. Jankennpopp) - Custom Air Modulations.wav"))
structure = "%track_number%. %artist% - %title% - %album%"
structure2 = "%track_number% - %title%, %artist%, (%release_date%)"
# separator = " - "
# song = 2
# file_name = "01. Pattern Factory Operators - Red Card Stratagem (feat. Jankennpopp) - Custom Air Modulations.wav"
# print(library.get_tags_by_structure(structure, file_name))
print(test_name)
print(test_name2)
print(library.get_tags_by_structure(structure, test_name))
print(library.get_tags_by_structure(structure2, test_name2))
# print(library.get_number_of_separators(separators, test_name))
# print(library.get_file_extension(test_name))
# print(library.get_file_name_without_extension(test_name))
# print(library.get_separators(structure))
# print(library.get_separators(structure2))