AlexanderButyaev

Results 3 comments of AlexanderButyaev

What about multipage PDFs? how to pipe it in different files?

I would expect ```python AudioPlayer("mixed.wav").play(block=True) ``` to be blocking main thread until "mixed.wav" is done playing completely. Also if I'm not wrong, calling multiple times ```python AudioPlayer("mixed.wav") ``` just opens...

@dpinzon30 , check the effect of block argument on play func ``` block (bool) – If true, blocks the thread until playback ends. ``` I don't think you can pause...