forked from samim23/polymath
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcli.py
210 lines (166 loc) · 5.61 KB
/
cli.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
from internals.media import Media
from internals.processors import AudioProcessor,VideoProcessor
from internals import utils
from internals.db import TinyDBWrapper
import fire
utils.PathConfig.initFolders()
utils.createDBFile(utils.PathConfig.dbDir, utils.PathConfig.dbFile)
utils.printPolymath()
db = TinyDBWrapper(utils.PathConfig.dbFile)
def splitStems(cleanedFile:str, stemsOutputDir:str = str(utils.PathConfig.stemsDir)) -> None:
# check if audio is clean
print("splitting stems")
AudioProcessor.split_stems(cleanedFile, stemsOutputDir)
def addSong(songPath: str, ss: bool = False) -> None:
"""
Overview
--------
Process a single song from local hard drive,\nthen add it to the database
Parameters
----------
songPath : str
Path to song to be added
Returns
-------
None
"""
# check if song exists and is a valid file
songPath = utils.strictFile(
songPath,
lambda: print(
f"The path you specified is not a valid file path:\n\t{songPath}"
),
).allowedExtensions([".mp3", ".wav"])
# generate song ID
# The id will look like this: "song_name_a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6q7r8s9t0u1v2w3x4y5z"
songID = Media.generateID(songPath.path.replace(" ", "_"))
print(f"Song ID: {songID}")
def upsert() -> str:
cleanedFile, features, frequencyFrames = db.upsertSong(
songPath.path,
songID,
str(utils.PathConfig.processed),
str(utils.PathConfig.frequencyFramesOutDir),
)
return cleanedFile
# add song to db if not already there
if not db.idExists(songID):
cleanedFile = upsert()
if ss:
splitStems(cleanedFile, utils.PathConfig().stemsDir)
# if song is already in db, ask if user wants to overwrite
else:
ii = input(
f"""
{songPath.pathObj.stem} is already in the database with the following ID: {songID}
Do you want to overwrite it? (y/n): """
)
# if user wants to overwrite, update the song
if ii.lower() == "y":
cleanedFile = upsert()
if ss:
splitStems(cleanedFile, str(utils.PathConfig.stemsDir))
# if user doesn't want to overwrite, exit
else:
print("Goodbye")
exit()
def addVideo(youtubeUrl: str, ss: bool = False) -> None:
"""
Overview
--------
Extract the audio from a SINGLE youtube video and add it to the database\n
Will not accept a playlist url, only a single video url
Parameters
----------
youtubeUrl : str
The url of the youtube video to be added
ss : bool, optional
Whether or not to split the stems, by default False
Returns
-------
None
"""
if not VideoProcessor.is_youtube_url(youtubeUrl):
print(f"The url you entered is not a youtube url: {youtubeUrl}")
return
if VideoProcessor.is_playlist(youtubeUrl):
print(
f"""The url you entered is a playlist url:\n\t{youtubeUrl}
\nPlease enter a video url instead
\nUse the 'addPlaylist' command to add a playlist"""
)
return
"""
Begin processing the video
"""
info = VideoProcessor.get_video_info_filtered(youtubeUrl)
# The id will look like this: "Ciara - Da Girls [Official Video]_M2z-RZR0P3Y"
id = info["title"].replace(" ", "_") + "_" + info["id"]
def upsert() -> str:
mp3 = VideoProcessor.download_audio(
youtubeUrl, str(utils.PathConfig.ytdl_content), format="mp3"
)
cleanedFile, features, frequencyFrames = db.upsertSong(
mp3,
id,
str(utils.PathConfig.processed),
str(utils.PathConfig.frequencyFramesOutDir),
)
return cleanedFile
if not db.idExists(id):
# add song to db, split stems if specified and seperate frequency frames into their own text file
cleanedFile = upsert()
if ss:
splitStems(cleanedFile, str(utils.PathConfig.stemsDir))
else:
# Let user know that the song is already in the database
# Ask if they want to overwrite it
ii = input(
f"""
{info['title']} is already in the database with the following ID: {id}
Do you want to overwrite it? (y/n): """
)
# if user wants to overwrite, update the song
if ii.lower() == "y":
cleanedFile = upsert()
if ss:
splitStems(cleanedFile, str(utils.PathConfig.stemsDir))
# if user doesn't want to overwrite, exit
else:
print("Goodbye")
exit()
def allSongs() -> None:
""" """
return db.tdb.all()
# def rmSong(songID: str) -> None:
# """ """
# pass
# # def addPlaylist(): -> None:
# # def addSongs() -> None:
# # '''
# # process one or more songs
# # '''
# # pass
# # def addVideos() -> None:
# # '''
# # Process one or more videos
# # '''
# # pass
# # def audioToMidi(audioPath:str) -> None:
# # '''
# # '''
# # pass
# # def search(query:str) -> None:
# # '''
# # '''
# # pass
if __name__ == "__main__":
fire.Fire(
{
"addSong": addSong,
"addVideo": addVideo,
"all": allSongs,
"splitStems": splitStems,
'mp32wav': AudioProcessor.mp3ToWav,
}
)