I want to load multiple soundfiles (*.ogg) in kivy via the SoundLoader module. The files are from 300kB to 700kB big.
What happens is: The first couple files get loaded, then it skips the remaining files.
Is there a better (and maybe faster) way to load the files? Is it possible to 'link' an already loaded file to another Button instance, without copying it (or compromising it's text)?
Here's the code in question:
#Getting filenames:
for line in rawsongs:
if ',' in line:
items = line.split(', ')
#Creating instances of Buttons, which control (play and stop)
#the soundfiles:
btn = AudioButton(
text=(items[1]+' - '+items[2]), font_size=50,
sound = SoundLoader.load(items[2]+'.ogg'),
size_hint_y = None, height = 240, group = 'audio')
#adding the Button to the Layout:
grid.add_widget(btn)
else:
pass
Thanks in advance ;)