Displaying 20 results from an estimated 500 matches similar to: "Vorbis-java wav-ogg encoder produces distorted OGG file"
2009 Dec 10
2
Fwd: Vorbis-java wav-ogg encoder produces distorted OGG file
Hi,
I was really interested in the java version of the same since I wanted to
use it in my java application in a platform independent way.
Anybody who have managed to use the java port to encode wav to ogg, this is
only audio, can assist me to solve my problem. I have been looking at the
code and the svn but no updates seem to be available. Some guidance on what
could be the problem on the source
2009 Dec 10
1
Vorbis-java wav-ogg encoder produces distorted OGG file
Im talking about this
http://downloads.xiph.org/releases/vorbis-java/vorbis-java-1.0.0-beta.tar.gz
Do you know it?
On Thu, Dec 10, 2009 at 8:56 PM, Monty Montgomery <monty at xiph.org> wrote:
> On Fri, Dec 4, 2009 at 5:28 AM, solomon kariri <solomonkariri at gmail.com>
> wrote:
> > Hi,
> > I have tried using the VorbisEncoder class available with the vorbis-java
2009 Dec 10
2
Fwd: Vorbis-java wav-ogg encoder produces distorted OGG file
On Thu, Dec 10, 2009 at 10:06 AM, Monty Montgomery <monty at xiph.org> wrote:
> Vorbis-dev might be better....
>
My issue is with theora/thusnelda for xiph tools.
>
> What I mean is, you quoted a response from Frank Barchard, but I never
> saw his response on the list. Are there blind CCs on the conversation?
> I'm just trying to figure out where the rest of the
2009 Dec 10
4
Fwd: Vorbis-java wav-ogg encoder produces distorted OGG file
So to which group should I foward my question? I thought this was the most
appropriate of them all. Please guide me
On Thu, Dec 10, 2009 at 8:59 PM, Monty Montgomery <monty at xiph.org> wrote:
> I have the impression only a small piece of this conversation is being
> forwarded to ogg-dev. We can't answer questions when we have no idea
> what's going on :-)
>
>
2006 Apr 20
1
High Latency of vorbisencoder on a hardware with no floatpoint unit
Hi All,
I am porting the vorbis encoder to Symbian platform,(to support ogg recording) everything works fine for the emulator(PC), but then on the Hardware whenever I am trying to record it gives KErrOverFlow(buffer OverFlow). We get this error from the driver when the latency of the codec is too high. The main reason is that the hardware does not have the floatpoint unit and the
2006 Jan 10
1
Problem with VorbisEncoder
Hi All,
It would be really helpful for me if you comment on the following.
My VorbisEncoder uses libvorbis to encode into the vorbis data. I have followed the call sequence given in libvorbis\examples\encoder_example.c.
I am taking a 16bit pcm Stereo wav file and generating an oggvorbis file using libvorbis and libogg. There is lots of noise in the file except music is heard very feable
2006 Jan 19
3
problem when porting
Hello,
I am a total beginner when it comes to rails and would like to know are
there any issues with porting rails from freebsd to windows?
This is the error that I have
Bad file descriptor - /tmp/mysql.sock
I am not sure if this would help or not but I am currently on a cygwin
environment
thanks if anyone can help
--
Antoine W. Solomon Jr.
-------------- next part --------------
An HTML
2003 Sep 23
1
what does the sum of square of Gaussian RVs with differen t variance obey?
This is a relatively recent article that is somewhat accessible.
Jensen, D. R., and Solomon, Herbert (1994), "Approximations to joint
distributions of definite quadratic forms", Journal of the American
Statistical Association, 89 , 480-486
It has references to previous work.
I also have an old paper that is so old I can't tell what journal it came
out of:(
Grad, Arthur and Solomon,
2004 Jun 12
2
invalid HOMEDRIVE
Hi all-
Some recent change...perhaps a windows update, or perhaps a change in
the network on which I use my computer....has made it impossible for me
to start R. When I try to start the program, I get a message that says
"Fatal error: invalid HOMEDRIVE". Any ideas on how to fix this?
Thanks much
Chris
*******
Chris Solomon
Center for Limnology
Univ. of Wisconsin
(715) 356-9494
2008 May 09
3
For Social Network Analysis-Graph Analysis - How to convert 2 mode data to 1 mode data?
Hi,
Does anyone know of a package in R that has a function to convert
network data (e.g. an adjacency matrix or ) from 2-mode to 1-mode? I am
conducting social network analysis. I know that Pajek has this function
under Net --> Transform --> 2-mode to 1-mode --> Rows. I have searched
the documentation under packages 'sna', 'network', 'igraph', and
2004 Sep 14
3
repeated measures and covariance structures
Hello-
I'm trying to do some repeated measures ANOVAs. In the past, using SAS,
I have used the framework outlined in Littell et al.'s "SAS System for
Mixed Models", using the REPEATED statement in PROC MIXED to model
variation across time within an experimental unit. SAS allows you to
specify different within-unit covariance structures (e.g., compound
symmetric, AR(1), etc.) to
2012 Nov 29
0
[LLVMdev] Old JIT Status (i.e., can we delete it?)
On Nov 24, 2012, at 3:50 PM, Rafael EspĂndola wrote:
> On 24 November 2012 17:36, Chris Lattner <clattner at apple.com> wrote:
>> As others have said, unfortunately it is premature to remove the old jit. I don't know of anyone using the EH code though... It can almost certainly be removed!
>
> Cool. I will remove the EH bits by the end of the week if no one complains.
2006 Jun 20
1
Comparing partial response curves from GAM
Hello all, I was wondering if anyone is aware of formal approaches and tools
for comparing partial response curves produced in GAM? My interest is in
determining if two partial response curves are "statistically" different. I
recognize that point-wise standard error estimates can be produced using the
GAM package but Im not certain how to translate this into a statistical test
for the
2008 Mar 06
1
Tcl/Tk not working on Mac OS X
Greetings.
Yesterday I decided to try out Rcmdr, but it refused to load. I
traced the problem to the library tcltk, which when I tried to load it
told me this:
> > library(tcltk)
> Loading Tcl/Tk interface ... Error in fun(...) :
> Can't find a usable init.tcl in the following directories:
> @TCL_IN_FRAMEWORK@ @TCL_IN_FRAMEWORK@
>
>
>
> This probably
2011 Jan 17
2
Using summaryBy with weighted data
Dear Soren and R users:
I am trying to use the summaryBy function with weights. Is this possible? An example that illustrates what I am trying to do follows:
library(doBy)
## make up some data
response = rnorm(100)
group = c(rep(1,20), rep(2,20), rep(3,20), rep(4,20), rep(5,20))
weights = runif(100, 0, 1)
mydata = data.frame(response,group,weights)
## run summaryBy without weights:
2006 Jul 04
1
Exporting tables to RTF?
Greetings.
Yesterday I managed to jury-rig a system to get a table out of R and
import it into Nisus Writer Express (a word processor for Mac OS X).
What I came up with is brittle, since it depends on an AppleScript
script which has to be in a specific location and on no one touching
the computer, since the AppleScript remotely controls Nisus Writer
Express rather blindly and will make
2012 Nov 24
2
[LLVMdev] Old JIT Status (i.e., can we delete it?)
On 24 November 2012 17:36, Chris Lattner <clattner at apple.com> wrote:
> As others have said, unfortunately it is premature to remove the old jit. I don't know of anyone using the EH code though... It can almost certainly be removed!
Cool. I will remove the EH bits by the end of the week if no one complains.
> -Chris
Cheers,
Rafael
2012 Nov 29
1
[LLVMdev] Old JIT Status (i.e., can we delete it?)
I don't think that GDB support is even present in the latest version of the old JIT in trunk. It used to have code to register emitted functions with GDB in a way that let GDB find the function name and EH frame information, but that got taken out back in January (r147615). As it stands now, I don't think GDB would provide any useful information at all about code emitted by the old JIT.
2007 Jun 26
1
Support & Consultants
We are preparing to build a new Web site and the potential consultant
we may be hiring has strongly recommended that we don''t go with our
initial planning with asp.net but go with Ruby on Rails. We are not
familiar with Ruby but understand their is a strong on-going interest
with its development and use. Our concern is that if we need
consulting services in the future, are their local
2006 Aug 29
1
Deviance function in regression trees
Hello all. I have heard over and over that CART and its various tree-like
brethren are "non-parametric" techniques. When I read the chapter in
Chambers and Hastie on tree-based models it states that tree-based models
can be generalized (GTMs) in a manner similar to GLMs by specifying a
different deviance function to distributions other than the gaussian error
distribution ( section