similar to: Questions about FLAC format from a java coder...

Displaying 20 results from an estimated 1000 matches similar to: "Questions about FLAC format from a java coder..."

2004 Sep 10
1
Questions about FLAC format from a java coder...
Hi, I'm trying to write a FLAC decoder for my Java audio app. Can I ask a couple of questions to this list about the format? I think there are a couple of things not-quite-mentioned in the official spec. RICE CODING: Which order are Rice-coded numbers stored in? (a) [sign-bit][low-order bits]["k" zeroes][1] (b) [sign-bit]["k" zeroes][1][low-order bits] (c)
2004 Sep 10
1
Rice coding parameter
Date: Sun, 19 Oct 2003 00:59:22 +0200 > On Sat, Oct 18, 2003 at 07:21:08PM +0000, Dan Stowell wrote: > > I asked a few questions about the flac format a couple of weeks ago. > > One more (if you don't mind) about the Rice coding. The Rice > > parameter "k" can't be zero (unless I'm mistaken), yet the FLAC spec > > says the Rice parameter can range
2004 Sep 10
1
Rice coding parameter
Hi, I asked a few questions about the flac format a couple of weeks ago. One more (if you don't mind) about the Rice coding. The Rice parameter "k" can't be zero (unless I'm mistaken), yet the FLAC spec says the Rice parameter can range from 0 to 15. I guessed, and tried adding one before using the parameter (i.e. assuming the range was really 1 to 16), and that didn't
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
2004 Sep 10
1
AW: AW: Incomplete format description?
Torsdag, 23 januar 2003, skrev Tor-Einar Jarnbjo <Tor-Einar_Jarnbjo@grosch- link.de>: >According to the format description, the coding method has to be 0. > >I've been using libFLAC 1.0.4 to encode the stream. I've checked my interpretation against "flac -a" and it seems to read 17 bits for each warmup sample. Here is its output: frame=168 blocksize=4608
2004 Dec 08
2
Serving a playlist.pls / listen.m3u file
Hi - I've heard that Icecast provides a fake "playlist file" along the lines of http://blahblah:8000/listen.m3u or http://blahblah:8000/playlist.pls because Quicktime can't seem to handle the stream without a playlist file to wrap it up. (There may be other reasons.) However, I can't seem to find any documentation about this, and guessing various URLs on my icecast2.0.1
2003 May 15
0
My iptables (RH 7.2) firewall included
It's a shell script #!/bin/bash IPTABLES="/sbin/iptables" # Load required modules /sbin/insmod ip_tables /sbin/insmod ip_conntrack /sbin/insmod iptable_nat /sbin/insmod ipt_MASQUERADE # Then flush all rules /sbin/iptables -F /sbin/iptables -t nat -F /sbin/iptables -P INPUT DROP /sbin/iptables -P OUTPUT ACCEPT /sbin/iptables -P FORWARD ACCEPT # In the NAT table (-t nat), Append
2005 May 20
2
load constraints
On 5/20/05, Dan Stowell <danstowell@gmail.com> wrote: > Hi Iain, > > It's a simple answer: > > > For example, if a box on a 128kbps upload connection is > > serving a 64Kbps stream (and not audio-on-demand) - is it limited to two > > connections > > Yes it is. > > > or is icecast somehow more efficient? > > No - icecast can't
2012 Jun 20
3
How to iterate over an array? (with a counter)
Given an array, I''d like to iterate over it with a counter to produce something like this from a template: foo.0 = ARRAYVALUE0 foo.1 = ARRAYVALUE1 foo.2 = ARRAYVALUE2 (where ARRAYVALUEn is replaced by the value, and the foo.n is incremented for each value) The puppet templates support iteration, but I don''t see how to also increment a counter to get the behaviour above? Is
2005 Feb 25
2
Re: STATs tools?
I just wanted to point out that it's "stats", not "STATs". "Stats" is not an acronym! It's an abbreviation; it's short for "statistics". On Fri, 25 Feb 2005, Dan Stowell wrote: > Date: Fri, 25 Feb 2005 09:43:38 +0000 > From: Dan Stowell <danstowell@gmail.com> > To: icecast <icecast@xiph.org> > Subject: [Icecast] Re:
2002 Aug 27
1
au audio format?
ogg123 will output to the au audio format so why doesn't oggenc accept this format as input? -- _______________________________________________ Download the free Opera browser at http://www.opera.com/ Free OperaMail at http://www.operamail.com/ Powered by Outblaze --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe
2003 May 14
3
Redhat firewall problem...
I've just tried setting up a Shrike (9) version of Redhat. Using the medium settings of lokkit, then adding manually accept commands for ports 137/udp 138/udp, 139/tcp and 445/tcp, I thought I should have been ready to go. This isn't the case, however. I know it's not the smb.conf settup because when I kill iptables samba works. When iptables IS running however, it will respond
2003 Feb 09
1
is.finite() of a list
> ?is.finite `is.finite' and `is.infinite' return a vector of the same length as `x', indicating which elements are finite or not. is.finite() of a list seems to return a vector of the length of the list, but with value FALSE if any list element isn't finite. Is this intended? > l4 <- list(NA,1,2,3); l4; length(l4); is.finite(l4) [[1]] [1] NA [[2]] [1] 1
2003 Jul 07
4
can't access samba share from xp
Hello, I am running slackware 9 and I have also updated samba to version 2.2.8a from the slackware security update. I can access my xp box with no problems from my linux box but I cannot access my linux box from my xp box. I have been on several forums and IRC channels and no one seems to have much insight into my problem, someone recommended trying to post my problem here. I have gotten
2004 Sep 10
3
AW: AW: Incomplete format description?
Torsdag, 23 januar 2003, skrev Miroslav Lichvar <lichvarm@phoenix. inf.upol.cz>: >If input is 16 bit, side channel will be 17 bit (16bit - 16bit is >17bit number). And warmup samples will be (17 - wasted_bits) bit. Voila, this was the source of all my frustration, sync problems and who knows what. My decoder now works correctly for files encoded with the default settings. Are
2006 May 28
2
Upgrade from R1.8.2 to R1.8.4
Hello you all, this is my first time on this forum because I recently started to learn this exciting "new" language and Frame stuff... anyway, I used to have Ruby 1.8.2 installed with Rails and I wrote some warmup applications on these. Yesterday I decided to update my Ruby and Rails... about 4-5 hours later I finished... it wasn''t easy but what is.. right? so I changed
2005 Feb 18
1
RE: Two questions
On Thu, 17 Feb 2005 09:40:09 -0800, Brendan Cully <brendan@xiph.org> wrote: > On Thursday, 17 February 2005 at 12:20, Dan Stowell wrote: > > So will ices0 - that's what I use, and I nudge it along all the time. > > There is one significant problem with ices0 which is that if you nudge > > it while it's playing *the very last* entry in a playlist, it seems to >
2017 Jul 11
2
getting rid of hp c3180
On 7/11/2017 3:58 PM, Fred Smith wrote: > I faced the same issue some years ago, and found a low-priced mono > laser that lated me quite a few years. no color, but few thing I > wanted to print actually demanded color. my last two laser printers have been Brother black&white all-in-ones ("MFC"). *VERY* cheap per page printing costs, even if you use Brother brand toner
2011 Aug 01
0
dbench strange results
Hi I'm building new samba server (on Debian 6.0, software RAID10 2TB, Xeon CPU). Generally everything is working fine, so I have decided to run some stress tests. My choice was dbench. Old server is Debian 4.0 (samba 3.0.24, Athlon 3000+, one ATA 160GB disk). So run dbench 16 on both old and new server The results are strange old serwer: about 300MB/sek (dbench 3.0) and below are first
2005 Mar 22
5
Push relay from nicecast with icecast2?
Greetings, I have some confusion. I've seen it mentioned, somewhere in some docs, that Icecast2 does not (as yet) support Push relaying. Is this actually the case? Should I be looking at icecast1 (which does support push relay, I believe) until such capability is implemented on icecast2? Or should I be creating a combination of both? Or what? Here's my situation: I have a customer