search for: oggplayer

Displaying 20 results from an estimated 49 matches for "oggplayer".

Did you mean: oggplay
2003 Jul 28
1
error when compiling oggplay
Hi every body , i try to compile oggplayer but : "./autogen.sh --prefix=/usr " is OK and "make" : oggplay.c: At top level: oggplay.c:377: parse error before "mymngsettimer" oggplay.c:377: parse error before "mng" oggplay.c: In function `mymngsettimer': oggplay.c:379: `stuff' undeclared (first...
2003 Jun 11
1
Problems with ov_open
Hey, i'm having trouble getting ov_open to work on my slackware 8.1 system. The c, and makefile are as follows, and the error produced. I've also included an ldd of the compiled file. If anyone can be of any help, it would be greatly appreciated! --------------------------C FILE------------------------------- #include <stdio.h> #include <string.h> #include
2008 Aug 05
0
Announcing first release of liboggplay
OggPlay 0.0.1 Release --------------------- liboggplay is a C library providing a simple programming interface for reading, decoding and playing back Ogg files and streams. Ogg is an interleaving data container developed by Monty at Xiph.Org, originally to support the Ogg Vorbis audio format. This release is available as a source tarball at:
2008 Aug 05
0
Announcing first release of liboggplay
OggPlay 0.0.1 Release --------------------- liboggplay is a C library providing a simple programming interface for reading, decoding and playing back Ogg files and streams. Ogg is an interleaving data container developed by Monty at Xiph.Org, originally to support the Ogg Vorbis audio format. This release is available as a source tarball at:
2008 Apr 21
4
[PATCH] liboggplay - kate support, build fixes, and misc
Hi, I've added kate support to liboggplay (a prerequisite to getting kate tracks to work with the mozilla plugin, which I've now got working on Linux). In addition to the Kate code: - a new oggplay-uninstalled.pc file - configure.ac checks for C++ compiler - no check for fishsound version - it wanted 0.8.0, but the svn itself was 0.7.1 !? - don't use imlib2 (nor dump-first-frame) if
2009 Sep 30
1
OggPlay list?
Hi, sorry to post here, but anybody knows if OggPlay has a mailing list, forum, whatever? Thank you -- Animal Liberation Front http://www.animal-liberation.com/
2008 Dec 15
3
liboggplay: RGBA overlay video, rendering with libtiger
Hi, the attached patch adds rendering of Kate streams using libtiger. To do so, it adds a new type of RGBA video. One can request the incoming video (in YUV) to be sent in RGBA (ie, asking liboggplay to do the conversion in the first place). The large changes in the GLUT player also include fixes for crash-on-no-sound, mono sound, and locking fixes (I *think* - at least it works fine for me
2018 Nov 03
3
Decode ogg file while downloading: what are the good practices?
Thanks for your answer. But as I said, I don't have any problem seeking in a local file. Also, I have full control on the ogg file I play, since I encode it by myself. I first would like to know if the code I provided ( https://gist.github.com/mregnauld/3f7cdc43b02ec3bbd91641b9333ba072) is good practice when it comes to extracting and seeking in a file that is being downloaded. Thanks.
2008 Apr 23
2
[PATCH] liboggplay - kate support, build fixes, and misc
> I think you forgot to include oggplay-uninstalled.pc.in in the patch :-) Attached, plus the oggplay.pc.in as well, as I added @KATE_CFLAGS@ to both. Also attached is a patch to avoid miscounting the number of active tracks (a bug in my previous patch), and the current patch to the mozilla plugin (still work in progress, the Javascript API will change a little) if anyone feels like
2008 Dec 16
0
liboggplay: RGBA overlay video, rendering with libtiger
...gg.k ogg.k, some drive by comments on the patch from a quick look. Should these be wrapped in HAVE_KATE? Same with the definition of the functions on oggplay.c? If I'm not building with Kate support it would prevent dead code from being around. -----------------8<--------------------------- OggPlayErrorCode oggplay_get_kate_category(OggPlay *me, int track, const char** category); OggPlayErrorCode oggplay_get_kate_language(OggPlay *me, int track, const char** language); OggPlayErrorCode oggplay_set_kate_tiger_rendering(OggPlay *me, int track, int use_tiger); OggPlayErrorCode oggplay_overlay_k...
2018 Nov 03
2
Decode ogg file while downloading: what are the good practices?
Well, your " OggPlayer::release; OggPlayer::open; before OggPlayer::seek" seems to work! Thank you so much! Also, I'll take a look at the Opus codec, thanks for the advice! For your information, here was the problem in details: let's say I download an audio file whose length is 300 seconds. When, for examp...
2008 Apr 06
1
Dropping etheora decoding support for overlapping with oggplay?
Hey, Commenting a SoC application about improvement of Etheora, Conrad Parker said the development should focus first on the encoding features since liboggplay is overlapping with Etheora. I'm transcripting the here so the Etheora's priorities can be better discussed by everyone (and searchable on the web). _____ Conrad, you mean concentrating first on encoding part, or pehaps
2008 Apr 21
0
[PATCH] liboggplay - kate support, build fixes, and misc
On 21/04/2008, ogg.k.ogg.k at googlemail.com <ogg.k.ogg.k at googlemail.com> wrote: > Hi, > > I've added kate support to liboggplay (a prerequisite to getting kate tracks > to work with the mozilla plugin, which I've now got working on Linux). > great! > In addition to the Kate code: > > - a new oggplay-uninstalled.pc file configure.ac:366: required
2018 Nov 05
2
Decode ogg file while downloading: what are the good practices?
Hello, After more tests, I discovered a new problem in my code ( https://gist.github.com/mregnauld/3f7cdc43b02ec3bbd91641b9333ba072) while seeking in an audio file that is being downloaded. When I seek in random positions (when I call OggPlayer::seek()), while I extract audio samples (when I call OggPlayer::extract() every 5ms, in my test - basically, I just play the audio file), sometimes, I get random errors with ov_read(): - sometimes it returns 0 (end of file) - sometimes it returns an error (like an OV_HOLE error) - sometimes it just...
2008 May 01
4
[PATCH] browser_plugin - kate support, build fixes, and misc
> > - kate support (what else) - this bumps the Javascript API to 1.1 > > I've not yet committed this to trunk. It does sound pretty cool Can you let me know the reasons (eg, wanting to test first, concerns over the substance of the changes, or other) ? There were no comments so far about the changes to the Javascript API, so I'll assume people have no problem with those ?
2008 Dec 16
1
liboggplay: RGBA overlay video, rendering with libtiger
> Should these be wrapped in HAVE_KATE? Same with the definition of the > functions on oggplay.c? If I'm not building with Kate support it would > prevent dead code from being around. They could, but would change the API, and the implementation just returns a "not implemented" error currently if HAVE_KATE is undefined, (and a couple checks for validity) so it's not much
2018 Nov 03
0
Decode ogg file while downloading: what are the good practices?
...idn't share many details of how your code fails, but one idea: libvorbisfile builds a seek table from the available data when you call 'ov_open' so it probably isn't able to find data that is after the section which was available when that call was made. Does it work if you call OggPlayer::release; OggPlayer::open; before OggPlayer::seek? The library uses bisection to efficiently find the target data, so it needs to be able to read the beginning and end of the file to get bracketing timestamps. If you don't need accurate seeking, you could use ov_raw_seek instead, which goe...
2007 Aug 23
2
How to get the duration of a file or track?
I'm starting with the theora player_example.c. I want to be able to determine the duration of the audio/video ahead of time, to be able to display it somewhere. I can't see anything obvious in ogg.h, theora.h, or vorbis.h for this. Can anyone help me with the right place to look to do this? Thanks, Ken Larson FMJ project, fmj.sourceforge.net
2008 May 02
2
[PATCH] browser_plugin - kate support, build fixes, and misc
where is the latest javascript api documented? it does not look like http://wiki.xiph.org/index.php/OggPlayJavascriptAPI has been updated recently. I had trouble getting oggplay to run at all on my machine ubuntu (7.10) But I would be interested in revisiting the issue... --michael Conrad Parker wrote: > 2008/5/1 ogg.k.ogg.k at googlemail.com <ogg.k.ogg.k at googlemail.com>: >
2008 Apr 28
0
[PATCH] liboggplay - kate support, build fixes, and misc
2008/4/23 ogg.k.ogg.k at googlemail.com <ogg.k.ogg.k at googlemail.com>: > > I think you forgot to include oggplay-uninstalled.pc.in in the patch :-) > > Attached, plus the oggplay.pc.in as well, as I added @KATE_CFLAGS@ > to both. > Also attached is a patch to avoid miscounting the number of active tracks > (a bug in my previous patch), thanks, applied in