ReadNextFrame is Synchronous #1171
-
Hello Community, I am running into issues with If I copy the contents to a I am curious if there is an asynchronous version of this method that would be friendlier with the Azure Blob stream. For further context, I am using this recommended answer to clip a portion of my file (resulting in a shorter sample file): If there is a more efficient approach to this I would be grateful to learn of this, as well. Thank you for any assistance you can provide. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I was able to get around this by using the |
Beta Was this translation helpful? Give feedback.
I was able to get around this by using the
WaveStream.Skip(seconds)
method followed by theWaveStream.ReadExactlyAsync
method. 👍