5540098e96cf6bae60ca8dbb3957ccc6a51ef649
The `MAXIMAL_NUMBER_OF_RESULTS` constant was computed thanks to:
```py
import os, json
path = '/home/benjamin/Desktop/bens_folder/dev/yt/audio_library'
os.chdir(path)
with open('sound_effects.json') as json_file:
tracks = json.load(json_file)
mostResults = 0
mostResultsTitle = None
for track in tracks:
title = track['title']
results = 0
for otherTrack in tracks:
if title in otherTrack['title']:
results += 1
if results > mostResults:
mostResults = results
mostResultsTitle = title
print(mostResults, mostResultsTitle)
```
YouTube Audio library extracter
Description
Languages
Python
100%