diff options
-rwxr-xr-x | jamos | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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')) |