similar to: Problem encoding sine wave in 1.1.6 and somewhat in 1.0.4

Displaying 20 results from an estimated 700 matches similar to: "Problem encoding sine wave in 1.1.6 and somewhat in 1.0.4"

2005 Jan 13
0
Problem encoding sine wave in 1.1.6 and somewhat in 1.0.4
Le jeudi 13 janvier 2005 ? 10:59 -0500, Jared Whitby a ?crit : > Interestingly enough.. I started playing around with preprocessing > options in 1.1.6 and happened upon the denoise filter > (SPEEX_PREPROCESS_SET_DENOISE). When i run the test tone using that > option it is completely filtered out and I just get (complete) > silence. When the test tone is intermixed with regular voice
2005 Jan 13
2
Problem encoding sine wave in 1.1.6 and somewhat in 1.0.4
Interestingly enough.. I started playing around with preprocessing options in 1.1.6 and happened upon the denoise filter (SPEEX_PREPROCESS_SET_DENOISE). When i run the test tone using that option it is completely filtered out and I just get (complete) silence. When the test tone is intermixed with regular voice I only get the voice. So while i still don't quite understand why the test tone
2005 Jan 13
3
Problem encoding sine wave in 1.1.6 and somewhat in 1.0.4
On Thu, 2005-01-13 at 12:42 -0500, Jean-Marc Valin wrote: > Le jeudi 13 janvier 2005 ? 10:59 -0500, Jared Whitby a ?crit : > > Interestingly enough.. I started playing around with preprocessing > > options in 1.1.6 and happened upon the denoise filter > > (SPEEX_PREPROCESS_SET_DENOISE). When i run the test tone using that > > option it is completely filtered out and I
2005 Jan 13
0
Problem encoding sine wave in 1.1.6 and somewhat in 1.0.4
Well I think a sinusoid shouldn't totally trash the encoder state, so I still think theres a bug lurking around in there. The denoiser just prevents it from ever making it to the encoder. Just from browsing through the speex code and from what I've learned reading through the mailing list, it looks like there are a few places where checks are in place to prevent sinusoids from
2016 Aug 02
0
OPUS encoding mono sine wave
On 02/08/16 10:59 AM, Kolesov, Alexander wrote: > opus_demo -e audio 48000 1 2min_1kHz_Sine_16bit_48kHz.wave > 2min_1kHz_Sine_16bit_48kHz.opus_raw You're missing the "bitrate" argument to opus_demo... Though I'm surprised it didn't complain about it. Jean-Marc
2016 Aug 02
3
OPUS encoding mono sine wave
I wonder if anybody try to compress a pure sine wave using OPUS codec. When I compressed the mono 1KHz, 16bits 48000 samples per sec. audio stream using the 'opus_demo' utility: opus_demo -e audio 48000 1 2min_1kHz_Sine_16bit_48kHz.wave 2min_1kHz_Sine_16bit_48kHz.opus_raw I had the output stream that is shown below. 00 00 00 01 00 00 00 00 78 00 00 00 01 00 00 00 00 78 00 00 00 01 00
2008 Nov 20
4
Fitting a sine wave using solver
Greetings, I have several sets of oscillation data and would like to estimate the parameters of a sine function to each set (and hopefully automate this). A colleague provided an excel sheet that uses solver to minimize the RSS after fitting the sine function to each data set, but this cumbersome and difficult to automate. Is there a method in R for fitting a given sine function to a
2008 Jun 10
3
fitting periodic 'sine wave' model
I have been attempting to estimate the periodic contribution of an effect to some data but have not been able to fit a sine wave within R. It would be nice to start by being able to fit a sine wave with an amplitude and frequency. x<-seq(0,20,by=0.5) y<-2*sin(2*pi*.5*x) #amplitude =2, frequency=0.5 # This failed to converge r<-nls(y ~ A*sin(2*pi*F*x), start=list(A = 1, F = 1),
2011 Jul 27
2
fitting sine wave
Dear R-helpers ? I have 7 data points that I want to fit a continuous curve to, that should look similar to a sine wave My data points would mark the local minima and maxima respectively. This is what I?ve got so far. And I would keep doing so, but sadly nls() then says that it has reached the maximum number of Iterations? ?
2002 Apr 04
1
wave/OSS and JumpStart Kindergarten...
Warning: WINE Newbie Alert. Proceed with caution.... Background: I don't want to fork up $$$ for a separate Windows machine for my kid so I've decided to see if I can run any of the popular brain-rot software under WINE (Is it "WINE" or "Wine" or "wine"?) on a Linux 2.4.18 kernel. My first project is a vintage 1995 version of JumpStart Kindergarten. Seeing
2011 Jan 18
1
Loading wordnet in R
I ve installed wordnet 2.1 and R 2.11.0 on windows 7. Whenver i try to load wordnet in R, i get an error initDict() FALSE cannot find wordnet 'dict' directory, Please set the WNHOME variable to its parent. I have tried setting WNHOME to "C:\Program Files (x86)\WordNet\2.1\dict","C:\\Program Files (x86)\\WordNet\\2.1\\dict","C:\\\\Program Files
2014 Oct 28
1
is.whole()
Martin, I can't imagine using such a function myself, the reason being that as Bill and Duncan point out, the correct answer depends on the situation. But given the regular reappearance of this topic, I think that perhaps creation of your function is a good idea, largely to function as a repository for the knowlege. If one takes that view, then perhas the function has two optional
2009 Jan 26
1
* Queues with legacy pbx extensions ?
Hello Everybody I am using Trixbox 2.4 (with TE420P & PRI lines) .. my setup is like Calls -->Asterisk-->legacy pbx--->analog extensions(agents). Whenver a call comes in , asterisk dials the ACD number of the legacy pbx which in turn decides to route to appropriate agent.. for ex : s,1,Dial(ZAP/g4/5432) [g4 is the 4th span and 5432 is the ACD number of legacy pbx under which agents
2006 Apr 14
4
Newbie stuff (.new method)
Hi- Ruby 1.8.2 Rails 1.1 so I''m trying to build my first rails app and I''m trying to understand how the helper methods work. For instance .new & .save . For instance, I''ve created a table of Objects, and generated a scaffold. I see that in the controller, there are calls to Object.new and Object.save. I''m assuming that these are methods inherited
2018 Mar 13
2
Passes interaction running on two different IRs
Hi all, I am trying to run two llvm passes on two different IRs to finish my analysis. These two passes need to exchange information during their excecution. I am doing so because I can't link the two IRs I want to analyze together as a big IR and run my llvm pass on it. What I want to do specifically is: The first IR will call the functions in the second IR. Whenver there is a function
2018 Mar 13
0
Passes interaction running on two different IRs
Your use case seems to be somewhat similar to what LTO does, so it may be possible to hack something up in LTO. Perhaps you'd need to have a custom pass pipeline that would accomplish what you need. Since you say you can't link the two files, I imagine you'd need to make sure you don't emit code from one of them in the LTO link step or something along those lines. In any case,
2011 Jul 06
0
newbie: stuck at deploying whenever via cap
hi, im trying to deploy whenver + multistaging via cap: this is my task run "cd #{release_path} && whenever --set environment=#{rails_env} --update-crontab #{application}_#{rails_env}" 1)why i do append rails_env to --update-crontab? because i would like to have 2 sets of cronjobs, one for each stage (staging & production). problem is that a deploy (eg proeduction)
2009 Apr 15
0
Ambigous error while running cucumber features
Hello, I was just trying out a cucumber-java example with selenium integrated. My feature file has two scenarios and while executing the command "cucumber features", It is executing the first scenario succesfully, but for the second scenario I am getting the ambiguity error (Cucumber::Ambiguous): Scenario: Find what I''m looking for in yahoo #
2019 May 14
0
editing GPO as user X, when user X is used in gpo security filter
Hello, I'm using samba 4.9.x compiled from source on centos 7.6 Today I ran into an unknown behaviour before, which I'm not sure if it's a bug, a feature or.. just "is". I realised, that I'm unable to edit particular GPOs, with "access denied"  error, when this criteria are met: - I have user "john" that is a member of "domain admins"
2002 Jul 23
0
Samba as a DC w/ Win98 Clients :: "Incorrect Parameter"
Hi, I'm running samba 2.2.5 on linux, with Win98 clients using it as a logon server. Whenver I try to log onto the TEST domain, I get a very instant "Incorrect Parameter" msg from Windows. Client IP 141.97.52.12 with the samba box being 141.97.52.249. I think my smb.conf looks ok: <--snip--> [global] workgroup = TEST netbios name = TEST server string =