import sys
import locale
print(sys.getfilesystemencoding())
print(locale.getpreferredencoding())
>>> songs_titles = ['Песня1.mp3', 'Песня2.mp3', 'Песня3.mp3']
>>> songs = [{'title': s, 'file': f'https://site.com/{s}'} for s in songs_titles]
>>> songs
[{'title': 'Песня1.mp3', 'file': 'https://site.com/Песня1.mp3'}, {'title': 'Песня2.mp3', 'file': 'https://site.com/Песня2.mp3'}, {'title': 'Песня3.mp3', 'file': 'https://site.com/Песня3.mp3'}]