This commit is contained in:
bender
2023-11-12 00:10:13 -05:00
parent d6410e4ab0
commit b1d02cff7b
27 changed files with 506 additions and 403 deletions
+13
View File
@@ -0,0 +1,13 @@
from ODM_Handling.unpack_odms import unpack_and_move
from Chapters_List.chapters import chapters_list
from Chop_Tag_Audio.chop_tag_audio import chop_tag_audio
from XML_JSON.xml_scripts import parse_metadata
def run_script():
unpack_and_move()
parse_metadata()
chapters_list()
chop_tag_audio()
if __name__ == '__main__':
run_script()