summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJackson Taylor <jackson@jacksontaylor.xyz>2021-11-15 16:32:51 -0500
committerJackson Taylor <jackson@jacksontaylor.xyz>2022-04-05 16:52:11 -0400
commit7a77af991aa92c1905565757e534244188550f8c (patch)
treeeacf3909fdcddd616179a031c7f543d93393ddbd
parent71f924b7ef0da11cb366bbe950c5140d0d7362ce (diff)
Add TODOS
-rwxr-xr-xjamos4
1 files changed, 4 insertions, 0 deletions
diff --git a/jamos b/jamos
index 9b9c150..d8cb254 100755
--- a/jamos
+++ b/jamos
@@ -92,6 +92,7 @@ def get_video_urls_in_playlist(playlist_url):
def move_file(file, metadata):
+ # TODO: Move this to its own function to have our own jamos metadata?
artist = 'unknownartist'
album = 'unknownalbum'
title = 'unknownsong'
@@ -117,6 +118,9 @@ def move_file(file, metadata):
Path(final_directory).mkdir(parents=True, exist_ok=True)
+ # TODO: Include album title in filename
+ # TODO: Research converting to mp3 instead of just naming it such.
+ # TODO: Research better file formats over mp3?
os.rename(
file,
os.path.join(final_directory, artist + '_' + title + '.mp3'))