Selenium, streaming audio from a browser

I am using Selenium in Python for a project, and I was wondering if there is a way to record or transmit audio that plays in the browser. Essentially, I want to use selenium to get sound and pass it to my application in Python so that I can process it.

Is there a way to do this in Selenium or use another Python package?

Ideally, I would like to be able to receive any sound files in a browser window regardless of the source.

+4
source share
1 answer

There is no way to do this only with selenium, but implementing it with python will not be so difficult, just search in the python module or external program that is designed for your purpose

0
source

Source: https://habr.com/ru/post/1678046/


All Articles