Is there a way to determine transcribing status?

Noob here.

Can I determine if I am in a state of transcribing (start_transcribing() has been called, but stop_transcribing() has not) or a state of non-transcribing?

I’ve written something that will need to determine whether or not start_transcribing() needs to be called or has already been called.

Ah, good point – there should be a better way of determining that.

For now, you can just check len(s._transcriptions_in_progress) > 0, where s is the name of the Session. But that should really be available without accessing a protected attribute.

I’ll add an is_transcribing() method in the next version.

1 Like