search for: kilobits

Displaying 20 results from an estimated 67 matches for "kilobits".

2004 Aug 06
2
bit/bytes
Hi everybody, I have a theoretical question here. A 128K stream is a 128 KiloBITS (NOT kiloBYTES) per second stream; am I right? Is a 512k internet connection a 512 kiloBITS or 512 kiloBYTES connection? 128 KiloBITS = 16 KiloBYTES (8 bits = 1 byte). I am wondering if a 512k connection (upload and download) could THEORITICALLY handle 4 (512/128) or 32 (512/16) 128k streams? I a...
2007 Aug 31
4
About "b" meaning "byte" and bit
Hi all :) I think that this issue has already been discussed on this list, but google didn''t find anything interesting, so I''m bringing the subject again. The output of "tc" uses "b" meaning "byte" and "bit" for "bit". The "official" suffixes for those units are "B" and "b", respectively,
2004 Aug 06
1
bit/bytes
...; <macsym69@yahoo.fr> >Reply-To: icecast@xiph.org >To: <icecast@xiph.org> >Subject: RE: [icecast] bit/bytes >Date: Sun, 29 Feb 2004 13:16:55 +0100 > >Hi Goeff, > >Thanks for your precisions. You wrote: "Internet connections are also >expressed in bits, or kilobits, not Kilobytes"; then I guess a connection >of >1Mb is also 1 megaBITS and NOT megaBYTES. There is something I don't >understand; how are affording small radios that have up to 1000 concurrent >listeners a 128Mb connection? Is there any magical solution I am not aware >of?...
2001 Sep 09
4
Ogg Vorbis and Bitrate
In Ogg Vorbis, does one kilobit equal 1000 bits, or 1024 bits? _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-request@xiph.org'
2004 Aug 06
0
bit/bytes
On Sun, 29 Feb 2004, MacSym wrote: > A 128K stream is a 128 KiloBITS (NOT kiloBYTES) per second stream; am I > right? Right. > Is a 512k internet connection a 512 kiloBITS or 512 kiloBYTES > connection? Internet connections are also expressed in bits, or kilobits, not kilobytes. In this sense, calling it a 512k connection is actually wrong, as this impl...
2004 Aug 06
2
bit/bytes
Hi Goeff, Thanks for your precisions. You wrote: "Internet connections are also expressed in bits, or kilobits, not Kilobytes"; then I guess a connection of 1Mb is also 1 megaBITS and NOT megaBYTES. There is something I don't understand; how are affording small radios that have up to 1000 concurrent listeners a 128Mb connection? Is there any magical solution I am not aware of? Thanks for clarifyin...
2008 Nov 05
3
Check my math please
...his is kind of a goofy question but I want to make sure I get it right. Suppose we have a 25 mb video, that is 117 seconds long. If we wish for this streaming video to play smoothly with no compression, buffering or skipping, the following bandwidth requirements must be met: 25 megabytes = 204800 kilobits. 204800 kb / 117 seconds ~ 1750kb/s Does that look right to you?
2004 Aug 06
3
bit/bytes
...: icecast@xiph.org > >To: <icecast@xiph.org> > >Subject: RE: [icecast] bit/bytes > >Date: Sun, 29 Feb 2004 13:16:55 +0100 > > > >Hi Goeff, > > > >Thanks for your precisions. You wrote: "Internet connections are also > >expressed in bits, or kilobits, not Kilobytes"; then I guess a connection > >of > >1Mb is also 1 megaBITS and NOT megaBYTES. There is something I don't > >understand; how are affording small radios that have up to 1000 concurrent > >listeners a 128Mb connection? Is there any magical solution I...
2009 May 09
3
Nagios Monitoring with xentop
...-d1 I am trying to get the network tx / rx data, however I think I am missing something here. NETTX(k) NETRX(k) So total network bandwidth is 1048576 k if the above header from xentop is true. So I am wondering why the output for each vm exceeds the theoretical max, Is it really not measured in kilobits, or maybe there is something screwy with the counters? Any help is much appreciated. If I add up all my vm values for RX I get: 5527563 k This is greater than my gigabit connection which is: 1048576 k Thank you! _______________________________________________ Xen-users mailing list Xen-users...
2004 Aug 06
3
Direct URL
Ok for shoutcast you can do http://domain.com/listen.pls to get the feed what can you do for icecast so it can be a clickable url? --- >8 ---- List archives: http://www.xiph.org/archives/ icecast project homepage: http://www.icecast.org/ To unsubscribe from this list, send a message to 'icecast-request@xiph.org' containing only the word 'unsubscribe' in the body. No
2007 May 24
2
tc-htb traffic shaping script
Hi, Is there any tested good HTB script for traffic shaping available like as that of CBQ available at. http://freshmeat.net/projects/cbq.init I am n new bie and need to work on htb. -- Regards, M Arman _______________________________________________ LARTC mailing list LARTC@mailman.ds9a.nl http://mailman.ds9a.nl/cgi-bin/mailman/listinfo/lartc
2005 Oct 25
4
Terminal Services and traffic control.
...he traffic control? In LinuxFW-1 or LinuxFW-2? 3) Is my script changes right? Here comes the script. Thanks a lot. ---- cut --- #!/bin/bash # The Ultimate Setup For Your Internet Connection At Home # # # Set the following values to somewhat less than your actual download # and uplink speed. In kilobits DOWNLINK=850 UPLINK=850 DEV=eth2 # clean existing down- and uplink qdiscs, hide errors /sbin/tc qdisc del dev $DEV root 2> /dev/null > /dev/null /sbin/tc qdisc del dev $DEV ingress 2> /dev/null > /dev/null ###### uplink # install root CBQ /sbin/tc qdisc add dev $DEV root handle 1...
2005 Aug 04
1
libtheora Bitrate Problem
...ple.c -- case 'V': video_r=rint(atof(optarg)*1000); if(video_r<45000 || video_r>2000000) { fprintf(stderr,"Illegal video bitrate (choose 45kbps through 2000kbps)\n"); exit(1); } video_q=0; break; I assume 'kbps' is Kilobits Per Second (kbit/s) and *theora_info.target_bitrate* is in Bits Per Second. If this is true then shouldn't the argument (optarg) be multiplied by 1024 and not 1000? Or does it matter? Thanks, Draco draco@dragonsguild.net -------------- next part -------------- An HTML attachm...
2016 Aug 26
2
Using opus on ATMEL 32-bit RISC microcontroller
Hello Daniele It would be worthwhile to attach an external serial flash or USB thumb drive, if the intent is store data. This allows for far more flexibility in storage Regards Amit On Fri, Aug 26, 2016 at 11:02 AM, Jean-Marc Valin <jmvalin at jmvalin.ca> wrote: > On 26/08/16 11:40 AM, Daniele Barzotti wrote: > > You're right! I forgot to say that I need only the encoder
2004 Aug 05
6
TC-ng questions/problems
Hi all, We have 2 class C networks that are connected by a Linux router with the internet. We want to apply traffic control (bandwidth control). For that we wrote the tcc script below. We have 2 problems: 1. To establish a 2 megagit download we must actually set the value to 2500kbps. Is there a possible reason for that? 2. If we enable the WAN device we get very hight ping times (they change
2006 Mar 19
3
g729 and latency measures
...PSTN Site A has 1 Megabit of bandwith (up 512kilobit down 1 megabit) The asterisk box gets internet service via a wireless antenna. 1 Mbit of up/down bandwith Comments: So far, this means that I will need licenses for the 729. asterisk only supports 20ms sampling on g729 so 4 channels will need 96 kilobits at 20ms sampling (or is it kilobytes??) for the internet bandwith. i cannot use CRTP because i cant be sure if the ISP's routers are CRTP aware. Installing ADSL from ISP1 on the asterisk place will give a clear advantage Please correct any of my prior statements if wrong. should I maintain pa...
2000 Dec 03
4
Low bitrate high-band coding...
Hi, I'd like to contribute to Vorbis and I think this may be of some interest for low bitrate coding. I have been experimenting with low bit-rate coding for the high-band (11 kHz to 22 kHz) and, though I haven't yet started quantizing my coefficients (a gain and an LPC filter), I expect to be able to approximate the whole 11-22 kHz band with around 1000 bits/s per channel (maybe even 500
2004 Aug 06
2
buffer size from source to ice/shoutcast
Hello, I've built my own source for ICE/SHOUTcast, and it works pretty well except for one thing. After tuning into the server and listening for an 60-90 minutes you may hear a song skip ahead 30-90 seconds. I think I know why this is happening but I'mnot sure how to fix it. I think this is happening because my source is sending a little bit too much data to ICE/SHOUTcast. My formula
2016 Aug 26
3
Using opus on ATMEL 32-bit RISC microcontroller
Hi Jean-Marc, thanks a lot for your reply. > Well, the first question is whether you want encoding, decoding, or > both. If there's one you don't need then you can remove that > (unfortunately, there's no easy way right now). You're right! I forgot to say that I need only the encoder side (and only for voice). My application have to acquire a 16bit 8KHz PCM stream and
2007 Aug 02
5
Allocating 64 kbits/s out of 256 kbits/s for one LAN behing firewall
Hi, We have a 256 kbits/s (kilobits per second) link to the internet. it is a router running Linux that belongs to our ISP. They have given us 8 internet ips. (i.e- subnet is 255.255.255.248). one has been given to this router. I have given another internet ip to the firewall running CentOS 4.5. iptables is running on it. And also,...