bencambridgemaths
bencambridgemaths
I just installed the new 26100 SDK, used MediaEncodingProfile.CreateAv1, and it still hangs in the same way. It really should never hang so there's a bug there anyway. Maybe the...
When I say it hangs, I mean encoding hangs i.e. ```C# var encodingProfile = MediaEncodingProfile.CreateAv1(VideoEncodingQuality.HD720p); var preparedTranscoder = await transcoder.PrepareStreamTranscodeAsync(inputStream, outputStream, encodingProfile); if (!preparedTranscoder.CanTranscode) { return; } await preparedTranscoder.TranscodeAsync(); //Hangs...