Displaying 3 results from an estimated 3 matches for "op_open_file".
2017 Feb 09
0
Opus and IceCast ?
...file.pas>https://github.com/fredvs/uos/blob/master/src/uos_opus<https://github.com/fredvs/uos/blob/master/src/uos_opus.pas>.pas<https://github.com/fredvs/uos/blob/master/src/uos_opus.pas>
This Opus codec is working like charm.
For playing,seeking,... Opus files from devices ==> op_open_file + op_read* ==> Perfect, even adding DSP's.
For playing Opus files from URL ==> op_open_callback + op_read* ==> Perfect even adding DSP's.
Now it is time to attack the server part.
How to do to make a audio-stream-server (like for web-radios or voip) ?
Is it possible to do it...
2018 May 02
0
Help regarding Opus Player
Dear All,
I have tried to play so many samples of Opus Player however each opus
file ( my own encoded as well as taken from internet fails to read )
giving error *op_open_file failed: -137*
If anyone can help me out debugging this issue, It would be nice.
Regards
Umar
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.xiph.org/pipermail/opus/attachments/20180502/6e2401b8/attachment.html>
2015 Nov 05
3
Opusfile seeking bug
...on and checks to see if the target position is greater
// than the last packet granule position, which it now is due to
// the re-calculation and thus throws the OP_EBADLINK error.
int64_t failingSeekPoint = FindBrokenSeekPoint(filename);
if(failingSeekPoint >= 0)
{
OggOpusFile* opfile = op_open_file(filename, NULL);
// Seeking to somewhere in the first packet should return
// OP_EBADLINK, however seeking discards 80ms so the actual
// requested point needs to be 80ms ahead of the failing point.
// This is handled by FindBrokenSeekPoint which has already
// adjusted the seek point to...