Rename frequence_process to better reflect functionality
This commit is contained in:
parent
8955731742
commit
fb1a0dc027
|
@ -3,7 +3,7 @@ import sound_process
|
||||||
from tkinter import filedialog as fd
|
from tkinter import filedialog as fd
|
||||||
from matplotlib import pyplot as plt
|
from matplotlib import pyplot as plt
|
||||||
|
|
||||||
def process_with_map():
|
def compare_plot():
|
||||||
filename = fd.askopenfilename()
|
filename = fd.askopenfilename()
|
||||||
beatmap = sl.Beatmap.from_path(filename)
|
beatmap = sl.Beatmap.from_path(filename)
|
||||||
timing = beatmap.timing_points[0]
|
timing = beatmap.timing_points[0]
|
||||||
|
@ -23,7 +23,7 @@ def process_with_map():
|
||||||
plt.show()
|
plt.show()
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
process_with_map()
|
compare_plot()
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
main()
|
main()
|
Loading…
Reference in New Issue