|
|
@@ -521,11 +521,15 @@ def gatherdata(directory): |
|
|
|
if debug: |
|
|
|
print(f"{releasedata['idols[]']} < English = {en}") |
|
|
|
if en == False: |
|
|
|
input_english_artist = input("\n" + "_" * 100 + "\nKorean/Japanese Detected. Seperate multiple main artists with \",\". Please enter the romaji/english artist name:\n") |
|
|
|
# Create new key called titlejp and assign the old title to it |
|
|
|
# Replace title with the user input. |
|
|
|
input_english_artist = input("\n" + "_" * 100 + "\nKorean/Japanese Detected. Separate multiple main artists with \",\". Please enter the romaji/english artist name:\n") |
|
|
|
input_english_artist = [x.strip() for x in input_english_artist.split(',')] |
|
|
|
releasedata['idols[]'] = input_english_artist |
|
|
|
|
|
|
|
input_english_contributing_artist = input("\n" + "_" * 100 + "\nSeparate multiple contributing artists with \",\". Press enter to skip. Please enter the romaji/english artist name:\n") |
|
|
|
if input_english_contributing_artist != "": |
|
|
|
input_english_contributing_artist = [x.strip() for x in input_english_contributing_artist.split(',')] |
|
|
|
releasedata['contrib_artists[]'] = input_english_contributing_artist |
|
|
|
|
|
|
|
|
|
|
|
return releasedata |
|
|
|
|
|
|
|