Displaying 20 results from an estimated 1000 matches similar to: "Writting 16-bit PCM data to Ogg."
2015 May 19
0
Writting 16-bit PCM data to Ogg.
sorry for the mess created.
So far I have installed these two library *libogg-1.3.2, libvorbis-1.3.4*
successfully.
When installing this *vorbis-tools-1.4.0 *: I am getting this error.
Making install in man
make[2]: Entering directory
`/home/arunbalaji/Downloads/vorbis-tools-1.4.0/oggenc/man'
make[3]: Entering directory
`/home/arunbalaji/Downloads/vorbis-tools-1.4.0/oggenc/man'
make[3]:
2015 May 17
2
Unable to compile encode.c
When I compile encode.c. I am getting the below error.
$ cc encode.c
In file included from encode.c:24:0:
encode.h:5:26: fatal error: vorbis/codec.h: No such file or directory
#include <vorbis/codec.h>
^
compilation terminated.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2000 Aug 14
2
macOS9 patches committed
I finally got around to committing Chris Hanson's MacOS9 patches. Just though
you should know.
Monty
--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
2000 Jul 24
3
Decoder example question
Hey all...I'm trying to use the decoder_example.c in the examples directory
to decode a .ogg file that was encoded by using the binary encoder
ogglame.exe and encoded via the encoder_example.c. I'm running into a
problem with the decoder though. It plays FINE under the WinAmp plugin but I
when I try and use the decoder_example.c to decode the file it says "End of
file before finding
2000 May 09
5
Problems running example encoder/decoder
There isn't a lot of guidance on how exactly to run the codec I compiled out of
cvs just now, but I expected the following to work:
cat test.wav | encoder_example | decoder_example
But the decoder fails with:
End of file before finding all Vorbis headers!
Is this a bug? Or am I missing something fundamental? Should I attach the
test.wav?
--
Daniel
--- >8 ----
List
2000 May 09
5
Problems running example encoder/decoder
There isn't a lot of guidance on how exactly to run the codec I compiled out of
cvs just now, but I expected the following to work:
cat test.wav | encoder_example | decoder_example
But the decoder fails with:
End of file before finding all Vorbis headers!
Is this a bug? Or am I missing something fundamental? Should I attach the
test.wav?
--
Daniel
--- >8 ----
List
2006 Aug 18
6
Ogg Player Code
Hello,
In one of my recent assignments, I was asked to develop a ogg player.
I am not able to find the right repository of the source code. There are few repositories on vorbis but I am not clear which one is the right one for Windows environment.
If somebody has successfully compiled any ogg player ever, his ideas will be helpful to me.
In one of the code set, I was able to compile the
2000 Dec 12
1
Examples
Hi people around then world....
I need examples to use the ogg vorbis DLL's
Can you help me ????
The file libvorbis0-dev.examples speak about this files:
examples/chaining_example.c
examples/decoder_example.c
examples/encoder_example.c
examples/seeking_example.c
examples/vorbisfile_example.c
But this files not in the package....
Excuse my english, I know it's so bad....
[]'s
2000 Feb 16
1
Decode questions
Sorry, to interrupt the license flame war...
I downloaded the source from CVS as of 11am this morning and there are
a couple of issues that I ran into:
1) I built the package and then in the examples dir I executed the
following commands:
# cdparanoia -B 1-1
# ./encoder-example < track01.cdda.wav > test.vor
# ./decoder-example < test.vor > out.wav
The rip and the encode both work
2000 Sep 10
2
Vorbis on OS/2
Following a few months of lurking on the list, and vainly trying to get vorbis to compile
on os/2, I finally managed to get the nightly gzip from saturday to compile (fairly)
cleanly, and so have finally been able to play with Vorbis on my OS of choice :)
Using the EMX runtime system, and bash for OS/2 (along with a few ported GNU apps),
both configure and make work fine (except for ogg123
1999 Nov 12
4
State of Vorbis
Hi folks, some notes about goings on.
After opportunity to think aloud, I have the pieces of the VQ system more
or less in place. I need to finish the codebook generation core (this is not
libvorbis code, but an external utility). I then need to write the encode/
decode/packing code that makes use of the codebook. This future code is
already specced.
Tony: I haven't worked on the xmms
1999 Nov 12
4
State of Vorbis
Hi folks, some notes about goings on.
After opportunity to think aloud, I have the pieces of the VQ system more
or less in place. I need to finish the codebook generation core (this is not
libvorbis code, but an external utility). I then need to write the encode/
decode/packing code that makes use of the codebook. This future code is
already specced.
Tony: I haven't worked on the xmms
2000 Jun 20
5
Win32 DLL
I've put together a first cut for a Win32 DLL using the BladeEnc interface.
Right now, it's just a drop-in replacement for BladeEnc.dll that ignores all
encoding parameters passed to it and uses the info_A vorbis_info struct
(same as the encoder_example).
It's not particularly useful as of yet, but you can rename it to
BladeEnc.dll and use it with any number of rippers out there
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;
2007 Oct 22
2
problems building libvorbis-1.2.0 on Solaris 10 (sparc)
Hello,
I'm running into problems while trying to build libvorbis. My build
platform is Solaris 10 (sparc) (11/06) with GCC 3.4.6.
The build fails with the following error :
Making all in examples
gmake[2]: Entering directory
`/afs/cad.njit.edu/u/a/n/andym/ftp/freeware/multimedia/ogg/libvorbis-1.2.0/examples'
gcc -DHAVE_CONFIG_H -I. -I.. -I../include
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 :
2013 Apr 26
7
passwordless ssh
What is the best and easy''t way to let all nodes ssh passwordless to each
other ?
--
You received this message because you are subscribed to the Google Groups "Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-users+unsubscribe@googlegroups.com.
To post to this group, send email to puppet-users@googlegroups.com.
2001 Dec 20
1
vorbis module compilation problem
[I just got on to this mailing list to report this problem. If it has
already been reported, then I'm sorry for duplicating the report. And I
seriously doubt this is not the right topic to talk about on this
mailing list, but if it is, sorry for that too.]
Okay, here's a new one. I have never seen this error before. This is the
latest CVS code I'm trying to compile, on a pretty close
2005 Mar 09
1
compile error
king all in vorbisfile
make[2]: Entering directory `/home/ronan/libvorbis-1.0.1/doc/vorbisfile'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/ronan/libvorbis-1.0.1/doc/vorbisfile'
Making all in vorbisenc
make[2]: Entering directory `/home/ronan/libvorbis-1.0.1/doc/vorbisenc'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory
2010 Jun 01
3
lapply with functions with changing parameters
Dear all,
I am trying to avoid a for loop here and wonder if the following is possible:
I have a data.frame with 6 columns and i want to get a cross-correlogram (by using ccf) . Obivously ccf only accepts two columns at once and then returms a list.
In fact, with a for loop i?d do the following
for (i in 1:6) {
x[[i]]=ccf(mydf[,i],mydf[,6])
}
Is there any chance to the same with