Hi, I have been familiar with this software for a while and I wanted to thank its developers, I only know the basic use of this software. But I heard that the software is perfect, I need to use this software for a specific case:
My scenario is as follows:
I want to export a json file with a specific structure inside a large number of folders, each containing a music album, I wanted to please help me:
In fact, I want to create a json file in each folder of the music album, which has the following file name:
Album_year - Album_name [info].json
And inside this json file, the complete information of the album and the music tracks of the album should be according to the following structure:
{
"album": "the lord of the rings",
"artist": [
"Jasper Kyde",
"Howard Shore",
"Adele",
"Eminem"
],
"album_Artist": [
"Jasper Kyde",
"Howard Shore"
],
"year": 2018,
"genre": [
"Soundtrack"
],
"codec": "MPEG-4 AAC",
"total_size": "86.81 MB",
"total_tracks": 34,
"Total_length": "00:40:01",
"Settings": "269 kbps / 44100 khz / 2",
"tracks_format": "m4a",
"track_list": [
{
"track_num": 01,
"track_name": "track_name",
"track_title": "track title",
"track_artist": "jasper kyde",
"track_length": "00:08:20",
"track_size": "23 mb",
"track_bitrate": "320kbps"
},
{
"track_num": 02,
"track_name": "track_name",
"track_title": "track title",
"track_artist": "jasper kyde",
"track_length": "00:08:20",
"track_size": "23 mb",
"track_bitrate": "320kbps"
},
{
"track_num": 03,
"track_name": "track_name",
"track_title": "track title",
"track_artist": "jasper kyde",
"track_length": "00:08:20",
"track_size": "23 mb",
"track_bitrate": "320kbps"
}
]
}
I want this json file to be generated for all folders with the same name structure and internal content, what should I do?
Thanks for your guide friends