search for: datar

Displaying 20 results from an estimated 46 matches for "datar".

Did you mean: data
2001 Feb 15
3
mixing and 'downgrading' of vorbis-files
Greetings, I was wondering some things: For a internet radio-station (e.g. using mp3 and hopefully using ogg soon), appart from the basic 'streaming' functionallity, there are two things that are also important - mixing music - 'downgrading' a signal to a lower datarate. Concerning 'mixing' music, it would be interesting to be able to mix two ogg-files without the need to decode and re-encode the files? Also, can it be done to mix vorbis-file with different data-rates? Concerning 'datarate downgrading', concider a radio-station doing streaming...
2003 Jan 29
1
AW: PlusV algorithm -> CBR
fwiw, there are definitely applications that would use Vorbis but can't until there is a _strict_ CBR mode. Meaning, architecturally the datarate simply cannot exceed X no matter what happens to the quality. Send silence if you have to, but limit the datarate. -dbm -------------- next part -------------- A non-text attachment was scrubbed... Name: winmail.dat Type: application/ms-tnef Size: 3262 bytes Desc: winmail.dat Url : http://lis...
2007 May 23
1
I made some progress on my previous "systemfit" question but still not quite there
...colnames(tempmat)<-c("AUD.l1","CHF.l1","CAD.l1","GBP.l1","EUR.l1","JPY.l 1") rownames(tempmat)<-c("AUD","CHF","CAD","GBP","EUR","JPY") eqn<-list() for ( i in 1:6 ) { datares <- tempmat[, which(restrictmat[i, ] == 1),drop=FALSE] eqn[[i]]<-paste(rownames(tempmat)[i]," ~","-1","+",colnames(datares)) print(eqn[[i]]) } The only problem now is that I don't know how to name them so that I can do the system<-list( demand = eqDem...
2007 May 23
0
Changing sequential regression code to call systemfit
I use code ( actually its code from vars package and its directly below ) to do a sequence of lm calls and the data I use from the matrix depends on restrictions. for(i in 1:K){ datares <- datasub[, which(x$restrictions[i, ] == 1),drop=FALSE] y <- yendog[, i] lmres <- lm(y ~ -1 + ., data=datares) # x$varresult[[i]] <- lmres # x$resid[, i] <- resid(x$varresult[[i]]) } I would like to modify the code to make one call to systemfit because I r...
2014 May 04
2
[PATCH] drm/nouveau/dp: restore DP suspend/resume functionality
...vers/gpu/drm/nouveau/nouveau_dp.c index 36fd225..ee1bc27 100644 --- a/drivers/gpu/drm/nouveau/nouveau_dp.c +++ b/drivers/gpu/drm/nouveau/nouveau_dp.c @@ -35,6 +35,30 @@ #include <subdev/gpio.h> #include <subdev/i2c.h> +void +nouveau_dp_dpms(struct drm_encoder *encoder, int mode, u32 datarate, + struct nouveau_object *core) +{ + struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder); + struct nouveau_i2c_port *auxch; + int or = nv_encoder->or; + u8 status; + + auxch = nv_encoder->i2c; + if (!auxch) + return; + + if (mode == DRM_MODE_DPMS_ON) + status = DP_SET_POWER_D0...
2009 May 05
1
oggz-merge / oggJoin with files created with oggCat
> > I think, I got the problem: > > When I re-encode both audio files with the same quality/bitrate, oggCat/oggJoin works as expected. > > The reason, that it does not work, is as follows: I had a lot of trouble concatenate the audio-files (as I was starting with video only). In many cases, the concatenation works even if the bitrate does not correspond (correct me if I am
2014 May 05
1
[PATCH] drm/nouveau/dp: restore DP suspend/resume functionality
...t; --- a/drivers/gpu/drm/nouveau/nouveau_dp.c >> +++ b/drivers/gpu/drm/nouveau/nouveau_dp.c >> @@ -35,6 +35,30 @@ >> #include <subdev/gpio.h> >> #include <subdev/i2c.h> >> >> +void >> +nouveau_dp_dpms(struct drm_encoder *encoder, int mode, u32 datarate, >> + struct nouveau_object *core) >> +{ >> + struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder); >> + struct nouveau_i2c_port *auxch; >> + int or = nv_encoder->or; >> + u8 status; >> + >> +...
2000 Jul 11
0
VBR encoding in ogglame? (BOUNCE vorbis@xiph.org: Non-member submission from [Jesse Hammons <jessehammons) (fwd)
...us-ascii Hello, I ran a little test where I encoded an audio file at a bunch of different data rates. The results are here: http://www.bigteam.org/~jhammons/free_audio/organic/organic.html What I've noticed is that the data rate is independent of the --abr parameter to ogglame. The encoded datarate seems to be entirely a function of the desired output frequency (e.g. 44.1kHz) and whether the encoding is mono or stereo. My question is how hard would it be to modify the source code so I could get some in-between values. For example what would I need to do to see what a 44.1Khz mono track s...
2000 Jul 11
0
VBR encoding in ogglame? (BOUNCE vorbis-dev@xiph.org: Non-member submission from [Jesse Hammons <jesseham) (fwd)
...us-ascii Hello, I ran a little test where I encoded an audio file at a bunch of different data rates. The results are here: http://www.bigteam.org/~jhammons/free_audio/organic/organic.html What I've noticed is that the data rate is independent of the --abr parameter to ogglame. The encoded datarate seems to be entirely a function of the desired output frequency (e.g. 44.1kHz) and whether the encoding is mono or stereo. My question is how hard would it be to modify the source code so I could get some in-between values. For example what would I need to do to see what a 44.1Khz mono track s...
2003 Jun 11
5
question about ogg mapping
Question: is it permissible to put more than one frame packet into a page? At 30 fps, Ogg page overhead is on the order of 8 - 10 kbits/sec. At low datarates, this is going to be unacceptable. If I shove a few frames into a page, how does this affect the granulepos stuff? ___ Dan Miller (++,) Founder, On2 Technologies <p>--- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubsc...
2014 May 04
0
[PATCH] drm/nouveau/dp: restore DP suspend/resume functionality
...x 36fd225..ee1bc27 100644 > --- a/drivers/gpu/drm/nouveau/nouveau_dp.c > +++ b/drivers/gpu/drm/nouveau/nouveau_dp.c > @@ -35,6 +35,30 @@ > #include <subdev/gpio.h> > #include <subdev/i2c.h> > > +void > +nouveau_dp_dpms(struct drm_encoder *encoder, int mode, u32 datarate, > + struct nouveau_object *core) > +{ > + struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder); > + struct nouveau_i2c_port *auxch; > + int or = nv_encoder->or; > + u8 status; > + > + auxch = nv_encoder->i2c; &gt...
2002 Apr 15
1
Re-encoding digital broadcast to Ogg?
I think everyone here will appreciated that re-encoding an already encoded/ decoded audio track is a bad idea and can create pretty bad artefacts in recording. Whilst watching 'Later with Jools Holland' last Friday, India Arie gave a very good performance which I thought I would have been good to keep, I then realised that since I was watching via digital TV that this audio will have
2013 Feb 11
22
[Bug 60704] New: [nouveau, git regression] - I2C PWM fan control broken on nv50 adt7475 on kernels 3.3.x+
https://bugs.freedesktop.org/show_bug.cgi?id=60704 Priority: medium Bug ID: 60704 Assignee: nouveau at lists.freedesktop.org Summary: [nouveau, git regression] - I2C PWM fan control broken on nv50 adt7475 on kernels 3.3.x+ QA Contact: xorg-team at lists.x.org Severity: major Classification: Unclassified
2003 Feb 26
7
[OT] Just saying hi!
I hope this list is small enough for not beeing banned when introducing oneself. So... Hi, I just subscribed to the theora-lists. I'm from the XVID project, so I know a deal about video and MPEG-4 in particular, but nothing about Vorbis/Theora etc., That's why I'm here, because I'm interested in patent-free alternatives. I guess there is no documentation of the current status
2003 Mar 25
4
Fixed Quantizer - Fixed Quality
Here's the problem: > 2) Encoding with rate control as in single pass "Bitrate > control" will not > lead to better quality than fixed quant (with the right value > of the fixed > quant). Ratecontrol doens't know anything about "quality". It > will try to > reach more-or-less CBR. > > But somehow this is not a fair comparison, because
2012 Apr 20
0
DIscrete choice mlogit
...0 4 1 3 2 0 4 1 3 2 0 1 2 4 3 0 3 1 2 1 1 2 2 1 4 0 3 2 3 4 0 1 1 1 2 0 4 2 4 1 1 2 1 2 3 0 4 2 2 3 0 2 1 4 1 0 1 2 3 4 1 3 1 1 2 0 1 2 2 2 0 3 1 4 4 0 4 2 1 1 1 2 1 3 3 0 2 2 3 1 1 4 1 1 3 0 3 1 4 2 0 1 2 2 4 R has already read and save the data,but when I come to the line: DataR$mode.ids<-factor(rep(1:64,1),labels=c("brand","technology","class","price")) I get the following error: Error in factor(rep(1:64, 1), labels = c("brand", "technology", "class", I guess it has to do with the setting up of m...
2013 Dec 04
1
Testing failover and recovery
...;> $gfs/timestamp.txt ts=`tail -1 $gfs/timestamp.txt` md5sum=`md5sum $gfs/timestamp.txt | cut -f1 -d" "` echo "Timestamp = $ts, md5sum = $md5sum" sleep 1 done per at hallsmark.se:~/glusterfs-test$ As can be seen, the client is a quite simple user of the glusterfs volume. Low datarate and single user for example. 2. disabling ethernet in one of the VM (ifconfig eth0 down) to simulate like a broken network 3. After a short while, the failed server is brought alive again (ifconfig eth0 up) Step 2 and 3 is also automated in a testscript like: per at hallsmark.se:~/glusterfs...
2007 Mar 05
2
USB 2 card
Were looking to hook up a Lacie 2TB external drive to be our little rdiff-backup volume and we need a usb 2 interface. Can anyone make a suggestion to a good USB2 PCI card for centos? Thanks, James
2014 Feb 14
2
[PATCH] drm/nv50/disp: use correct register to determine DP display bpp
...2,7 @@ nv50_disp_intr_unk20_2(struct nv50_disp_priv *priv, int head) if (conf != ~0) { if (outp.location == 0 && outp.type == DCB_OUTPUT_DP) { u32 soff = (ffs(outp.or) - 1) * 0x08; - u32 ctrl = nv_rd32(priv, 0x610798 + soff); + u32 ctrl = nv_rd32(priv, 0x610794 + soff); u32 datarate; switch ((ctrl & 0x000f0000) >> 16) { -- 1.8.3.2
2006 Nov 09
2
USB disk dropping out under light load
...closure) over a USB hub. I've noticed several times that after longish periods of activity, the disk drops out (log from last time, below). In this case, the disk activity was generated by running two bittorrent-clients (ie random access r/w patterns) fed by an 2Mbps connection (ie ~200kB/s datarate). I've been able to use the drive for copying multi-GB file-trees from the main disks (it's part of a backup project), so the failure below seems strange, and not related to traffic. Nov 9 01:09:45 kasse kernel: SCSI error : <12 0 0 0> return code = 0x70000 Nov 9 01:09:45 kass...