similar to: lib for compiling encoder_example.c

Displaying 20 results from an estimated 4000 matches similar to: "lib for compiling encoder_example.c"

2005 Nov 28
1
Compile Encoder_example.c
Hi, I'm a highschool student, I'm looking for information about converting Wave file (*.wav) into Ogg file (*.ogg) and i found encoder_example.c inside libvorbis's example directory. I try to compile it using Microsoft Visual C++ 6.0 ,but it goes error like this : --------------------Configuration: encoder_example - Win32 Debug-------------------- Linking... encoder_example.obj :
2009 Mar 15
1
vorbisenc creates silent ogg files on ARM EABI
Hi Sorry, the reason I joined the list is for help finding a bug that occurs when libvorbisenc is compiled and run on ARM EABI systems (current Debian, Gentoo, OpenEmbedded etc). The symptom is that oggenc produces shorter ogg files than it should (about 1/2 size) that decode to the correct duration but of total silence. libvorbis/examples/encoder_example does the same on these systems, but
2007 Nov 19
1
SIGTRAP in Xcode
I downloaded and built the Ogg and Vorbis projects and added the frameworks to my project. It just SIGTRAPs before reaching main, in dylib loading code. I then built libvorbis.a, libvorbisenc.a, libvorbisfile.a and added them to my project. Still SIGTRAPs. I built a libogg.a target from scratch in the Ogg project, and added libogg.a, still SIGTRAPs. So I have tried everything I know
2002 Feb 20
4
Questions about libvorbisenc
Hi all, I am just coming in the mailing list.... ;-) I'm working on an Ripper/Encoder for GNUstep. At first sight, libvorbisogg seems to be the library that I needed. The problem for me is documentation. So I have a few question about this library : - in order to init an encoding process, we need to provide channels. Well, what does is mean ? - in order to init an encoding process, we need
2004 Aug 29
2
Building theora
Hello, I'm trying to get theora built. However there is not a page listing what depdencies there are. Would it be possible to have a developers page with the point release tarballs etc? (There is subversion access, but I do not have subversion for my OS). I could not find libtheora release, only an alpha, this wasn't very clear, it has been released now I think. The libogg and
2007 Jul 23
4
libvorbis 1.2.0 release candidate
All, Monty has made some improvements to the vorbis reference implementation, and we're ready to do a new release. Please sanity check the release candidate at http://people.xiph.org/~giles/2007/libvorbis-1.2.0rc2.tar.bz2 And let us know if there are any problems. The plan is to make an official release on Wednesday. Changes since the 1.1.2 release: * new ov_fopen() convenience
2002 Aug 02
1
Problems with ogg/vorbis python bindings.
I compiled and installed pyogg followed by pyvorbis, running: $ ./config_unix.py $ python setup.py build and as root: # python setup.py install for pyogg and pyvorbis in turn. This completed without error, however upon trying to import ogg.vorbis in IDLE I get an import error: ImportError: libvorbisfile.so.3: cannot open shared object file: No such file or directory I was told this may have
2006 Jan 27
1
please help me with some files
Hello I'm someone who whants to do a project using your vorbis libraries for encoding. I'm very impressed about what this codec can do and I want to use it. I have a school project in which I want to compress a wave file , using the power of many computers from a local network. So I'm asking you , if it is possible , to upload on your site (or send them to me , if i'm not asking
2007 Oct 19
2
Debug the encoder_example
hi all, i am trying to debug the encoder_example with gdb. after the line number 669, it will go to a place "ogg_stream_init (os=0xbff0ec84, serialno=1418647043) at framing.c:189" but i couldn't find the file "framing.c" with in the "ibtheora-1.0alpha7" directory. please anyone can tell me where is this file -- ----------- Regards, Janaka Priyadarshana
2002 Jan 01
3
problem building vorbis-tools-1.0rc3
I download all the tarballs for rc3. I compiled and installed all the libraries successfully, but I wan't able to compile the vorbis tools (1.0rc3) package succesfully. I can run configure successfully, but when I run make it dies with this make[2]: Entering directory `/usr/local/src/vorbis-tools-1.0rc3/oggenc' /bin/sh ../libtool --mode=link gcc -O20 -ffast-math -fsigned-char -o
2002 Jul 15
2
Patches and questions for spec files
I'm forwarding this mail, since thomasvs on #vorbis can't seem to subscribe/send to the list. Please Cc: thomas@apestaart.org when you answer, or write directly to him. ----- Forwarded message ----- Hi, I've been asked by Vakor to help out on the packaging of the 1.0 release (for Red Hat). (For some reason xiph.org is refusing any mail from our server, urgent.rug.ac.be, so I
2009 May 30
1
Segmentation Fault
I've attached the command I ran, the output, and the crash log in the hope that it is useful. jason$ ffmpeg2theora -v 5 --optimize -A 64 -c 2 -H 44100 /Users/jason/ Movies/TV\ Shows/Holding\ Area/video.vob Input #0, mpeg, from '/Users/jason/Movies/TV Shows/Holding Area/ video.vob': Duration: 00:05:43.90, start: 0.211444, bitrate: 7217 kb/s Stream #0.0[0x1e0]: Video:
2004 Aug 01
3
Binaries for Visual Studio.NET?
I apologize for what's surely a common question, but the Xiph archive-searcher seems broken, and all my other searches have come up dry. Anyway, my question is: Are there any Theora binaries available for Visual Studio.NET? Alternatively, how do I build Theora using Visual Studio.NET? I tried using "\win32\theora_static.dsp", but VS.NET claimed it was corrupt and couldn't
2005 Sep 26
2
encoder_example.c Questions
I've been trying to piece my way through the encoder_example.c program to better understand how to encode files as ogg/vorbis. I'm stuck on two sections of the code. This is the first /* uninterleave samples */ for(i=0;i<bytes/4;i++){ buffer[0][i]=((readbuffer[i*4+1]<<8)| (0x00ff&(int)readbuffer[i*4]))/32768.f;
2014 Jun 19
4
Lets work towards a new version
lvqcl wrote: > Audacity still uses VS2008 and slowly tries to migrate to VS2012. > But as stated at <http://wiki.audacityteam.org/wiki/Developing_On_Windows>, > "Audacity is currently a 32-bit only application". So it doesn't need > 64-bit builds. > Currently its trunk contains 'audacity.sln' made with Visual C++ Express 2008 > and
2002 Aug 15
2
dynamicly loading libvorbisenc on Mac OSX
Hi, I'm trying to load the vorbis libs dynamicly on Mac OS X. I've got success for libogg, libvorbis and libvorbisfile. But libvorbisenc drives me crazy. The function "vorbis_encode_init" seems not to be in there if I am using "NSLookupSymbolInImage". But the tools "otool" and "nm" tell me that the function is declared. Does anyone know, what I
2008 Jan 15
2
Encoding with encoder_example
I have encoded successfully a YUV stream by using the encoder_example. Can We encode a row stream (get from a web cam) by using encoder_example. If we can not, is there any other way to encode a row stream by using theora codec. -- Nuwan Millawitiya -------------- next part -------------- An HTML attachment was scrubbed... URL:
2008 Jan 15
2
Encoding with encoder_example
I have encoded successfully a YUV stream by using the encoder_example. Can We encode a row stream (get from a web cam) by using encoder_example. If we can not, is there any other way to encode a row stream by using theora codec. -- Nuwan Millawitiya -------------- next part -------------- An HTML attachment was scrubbed... URL:
2003 Jun 09
2
[PATCH] Fix for YUV4MPEG support in encoder_example
As was briefly discussed on IRC, ffmpeg and mplayer currently output two somewhat incompatible YUV4MPEG streams. This meant that encoder_example could take input from mplayer, but not ffmpeg or movtoy4m (a QuickTime->Y4M tool). This is a patch that fixes this issue and should allow encoder_example to take input from either format: diff -urd xiph-cvs/theora/examples/encoder_example.c
2007 Oct 04
1
encoder_example input formats
Hi all I have the raw out put of a video camera in following format: mjpegb, yuvj422p, 1920x1080, 24.00 fps(r). I cannot directly convert this raw footage to Theora due to the YUV4MPEG2 only restriction of the encoder_example. Isn't it better to support other raw formats in encoder_example, such as what I have, mjpegb, yuvj422p? I presume even if I convert the mjpegb, yuvj422p to