Как я могу подписаться на поток C# из Python с помощью Pythonnet?
Мне нужно проанализировать поток loopbackcapture с помощью Python.
Я не нашел никаких python-обёрток для wasapi loopbackcapture, поэтому мне пришлось использовать C# (в котором у меня нет никакого опыта).
На данный момент у меня есть C# сборка DLL, которая является обертками для wasapiLoopbackCapture и записывает это в файл. Но мне нужно провести анализ в реальном времени.
using (WasapiCapture soundIn = new WasapiLoopbackCapture())
{
//initialize the soundIn instance
soundIn.Initialize();
//create a SoundSource around the the soundIn instance
SoundInSource soundInSource = new SoundInSource(soundIn) { FillWithZeros = false };
//create a source, that converts the data provided by the soundInSource to any other format
IWaveSource convertedSource = soundInSource
.ChangeSampleRate(sampleRate) // sample rate
.ToSampleSource()
.ToWaveSource(bitsPerSample); //bits per sample
//channels...
convertedSource = convertedSource.ToMono()
//create a new wavefile
WaveWriter waveWriter = new WaveWriter(output_file, convertedSource.WaveFormat)
//register an event handler for the DataAvailable event of the soundInSource
soundInSource.DataAvailable += (s, e) =>
{
//read data from the converedSource
byte[] buffer = new byte[convertedSource.WaveFormat.BytesPerSecond / 2];
int read;
//keep reading as long as we still get some data
while ((read = convertedSource.Read(buffer, 0, buffer.Length)) > 0)
{
//write the read data to a file
waveWriter.Write(buffer, 0, read);
}
};
}
1) Можно ли вернуть поток из C# и подписаться на него из python?
2) другой вариант - проанализировать поток на стороне C# и запустить некоторые события в сценарии Python. как я могу это сделать? (Я имею в виду стрельбу и обработку события)