Displaying 1 result from an estimated 1 matches for "opusfilesharp".
2018 Nov 15
2
Question about libopusfile downloading the last 64K when duration is not needed
I am writing a program that retrieves and plays .opus files over the
network.
I am using the C# PInvoke wrapper OpusFileSharp, which calls into
libopusfile and passes callbacks for read, seek, and tell.
I want to enable seeking via the seek callback by not returning -1, but
I find that as soon as I do libopusfile requests the last 64K of the
.opus file, probably so it can calculate the duration.
My program already know...