Skip navigation.

What is Symbols

Like just about any form of digital transmission, the receiver has to know the rate at which the transmitter is sending information. In the computer world, we call this the bit rate. For example, PCs can transmit from their serial ports at up to 115,200 bits per second. Bit rate and baud rate are not the same, despite the fact that some people will turn blue trying to tell you that they are. The bit rate specifies how many bits per second are carried across the channel (phone line, serial cable or satellite transponder), however, the baud rate describes the rate that data is sent within the channel.

For example, suppose you invented a simple modem that transmitted at 50 bps by using two tones. One tone could signal a 1 needed to be sent and the other would signal 0. Now imagine that you wanted to double the transfer rate across the channel. By using four tones instead of two, you could signal two sets of bits at the same time by switching various combinations of the four tones. The baud rate is still 50 baud (i.e. the tone pairs change 50 times per second), however, the bit rate is now 100 bps. The combination of the sets of tones is called a "symbol" because too many people are confused by the term baud.

What is DVB

DVB stands for Digital Video Broadcast and is a standard based upon MPEG-2 video and audio. DVB covers how MPEG-2 signals are transmitted via satellite, cable and terrestrial broadcast channels along with how such items as system information and the program guide are transmitted along with the scrambling system used to protect the signal.

With the exception of the United States of America, Mexico, Canada, South Korea and Taiwan, DVB has been adopted by just about every country in the world for digital TV & radio. This document concentrates on DVB-S, the satellite format of DVB - DVB-C is the specification for DVB/MPEG-2 over cable and DVB-T is DVB/MPEG-2 over terrestrial transmitters.

MPEG_TS

MPEG stands for Moving Picture Experts Group. It is a standard method of transmitting digital video and sound in a compressed format using less bandwidth than the traditional analog method.

The first MPEG standard introduced was MPEG-1 which is used to compress film onto regular compact discs (VideoCDs). MPEG-1 uses a low bit rate resulting in a picture similar to VHS video tape. The MPEG-1 data stream supports only one video signal and is therefore not used for satellite transmissions. MPEG-1 uses either 25 or 30 frames per second and is therefore not very well suited to storage of interlaced video.

Broadcasters wanted the enconomy of digital transmission, but because MPEG-1 was not suitable for satellite and MPEG-2 was still being developed, a "bastardized" flavor of MPEG which I call MPEG-1.5 was created. This format is not a official standard, but is still used for satellite (CNN Airport network uses MPEG-1.5). MPEG-1.5 uses a wide bandwidth MPEG-1 flavor of video encoding along with multiplexing of data streams which allows multiple programs to be transmitted across one satellite channel at a time.

MPEG-2 is becoming the de-facto standard in the digital TV world. MPEG-2 fixes many of the problem inherent in MPEG-1, such as resolution, scalability and handling of interlaced video. It allows for a much better picture (studio quality and up to HDTV levels) and allows multiple channels at various bitrates to be multiplexed into a single data stream. It was officially adopted by ISO and has the catalog number ISO 13818-1.

Program producers (like NBC, HBO et al) prefer to use MPEG-2 to distribute their programming because they can transmit multiple programs in the same space as a single analog transmission. Satellite and cable companies also like the idea of digital compression and it allows them to offer much more programming versus analog with the same amount of bandwidth. All licensed US DBS providers (DirecTV, USSB, Echostar etc.) are required by their licenses to transmit in digital format.

SNR, signal for DVB-S

this is the rrdtool script that i used for monitoring sognal and SNR rates on DVB-S ,
NOTE : The graph shown the value as on dvbsnoop, must be converted in log value

SIGNAL RATES on DVB-S at Frequency 3960 MHz SR 27500k





file create.sh
#!/bin/bash

. [path]sig.conf

$RRDTOOL create $FILE -s 60 \
DS:ping:GAUGE:120:0:65535 \
RRA:AVERAGE:0.5:1:2880


file update.sh
#!/bin/bash

. [path]sig.conf

UPDATECMD=$(dvbsnoop -s signal -n 1 | grep 1f | awk -F " " '{ print $7 }'

)

$RRDTOOL update $FILE N:$UPDATECMD


file graph.sh
#!/bin/bash

. /var/www/iseng/sig/sig.conf

$RRDTOOL graph $OUTPUT \
        -t "SIGNAL rates $HOST" -v "in dB" \
        --start="now-1d" \
        --end="now" \
        --height="100" \
        --width="400" \
        -c "BACK#000000" \
        -c "SHADEA#000000" \
        -c "SHADEB#000000" \
        -c "FONT#DDDDDD" \
        -c "CANVAS#202020" \
        -c "GRID#666666" \
        -c "MGRID#AAAAAA" \
        -c "FRAME#202020" \
        -c "ARROW#FFFFFF" \
        "DEF:SNR=$FILE:ping:AVERAGE" \
        "CDEF:shading2=SNR,0.98,*" "AREA:shading2#F90000:$HOST" \
        "GPRINT:SNR:LAST:Last\: %5.2lf dB" \
        "GPRINT:SNR:MIN:Minimum\: %5.2lf dB" \
        "GPRINT:SNR:MAX:Maksimum\: %5.2lf dB" \
        "GPRINT:SNR:AVERAGE:rata-rata\: %5.2lf dB" \
        "CDEF:shading10=SNR,0.90,*" "AREA:shading10#E10000" \
        "CDEF:shading15=SNR,0.85,*" "AREA:shading15#D20000" \
        "CDEF:shading20=SNR,0.80,*" "AREA:shading20#C30000" \
        "CDEF:shading25=SNR,0.75,*" "AREA:shading25#B40000" \
        "CDEF:shading30=SNR,0.70,*" "AREA:shading30#A50000" \
        "CDEF:shading35=SNR,0.65,*" "AREA:shading35#960000" \
        "CDEF:shading40=SNR,0.60,*" "AREA:shading40#870000" \
        "CDEF:shading45=SNR,0.55,*" "AREA:shading45#780000" \
        "CDEF:shading50=SNR,0.50,*" "AREA:shading50#690000" \
        "CDEF:shading55=SNR,0.45,*" "AREA:shading55#5A0000" \
        "CDEF:shading60=SNR,0.40,*" "AREA:shading60#4B0000" \
        "CDEF:shading65=SNR,0.35,*" "AREA:shading65#3C0000" \
        "CDEF:shading70=SNR,0.30,*" "AREA:shading70#2D0000" \
        "CDEF:shading75=SNR,0.25,*" "AREA:shading75#180000" \
        "CDEF:shading80=SNR,0.20,*" "AREA:shading80#0F0000" \
        "CDEF:shading85=SNR,0.15,*" "AREA:shading85#000000"
>/dev/null


Installing DVB on ubuntu 6,06 LTS

=============installation documentations==========
This information about HOWTO setup DVB PCI Card for internet (tested with b2c2 chipset skystar2) using Ubuntu 6.06 LTS Dapper Drake.

make ubuntu to compiles
apt-get install build-essential

get the packages from linuxtv.org [WWW]
wget http://www.linuxtv.org/downloads/linuxtv-dvb-apps-1.1.1.tar.gz

unpacking the packages
tar -zxvf linuxtv-dvb-apps-1.1.1.tar.gz

Make its simple
mv linuxtv-dvb-apps-1.1.1 linuxtv

patc and compile them all
cd linuxtv
make

if no error report copy all off them to /usr/local/bin
cp util/dvbnet/dvbnet /usr/local/bin
cp util/dvbtraffic/dvbtraffic /usr/local/bin
cp util/scan/scan /usr/local/bin
cp util/szap/szap /usr/local/bin
cp util/szap/femon /usr/local/bin
cp util/dvbdate/dvbdate /usr/local/bin



Testing
before we do some testing, we need this informations from satellite internet provider (DVB-S) :
* Satellite band freq (c-band, ku-band)
* Polarization
* Frequency
* Symbol rate
* FEC
* PID

my configurations is
* Satellite Band freq = C-BAND
* Frequency = 3680 Mhz
* Polarization = Horizontal
* Symbolrate = 26666 ksym/s
* FEC = 3/4
* PID = 4004
mkdir /root/.szap
cd /root/.szap


Testing : dvbnet

what we need here is PID (from dvb internet provider). for example our pid is 4004 (decimal)
dvbnet -p 4004

now you can see your new adapter dvb0_0
ifconfig dvb0_0

if you didn't see correct MAC address
ifconfig dvb0_0 hw ether "$YOUR_MAC_ADDRESS"


Testing : scan
we are ready to scan the transponder now i assume that satellite dish is on the right pointing
cd /root/.szap
echo S 3680000 H 26666000 3/4 > sat.conf
scan -l c-band sat.conf

this will ok if no error message.

Testing : szap
this session will create our channels configuration (this is my configuration).
cd /root/.szap
echo myprovidername:3680:h:0:26666:0:0:7 > channels.conf

we will tune it now !!
szap -l c-band -n 1 

if you see "FE_HAS_LOCK" ... dvb card is tuned fine !
CTRL+C to stop it !
make it run as daemon
start-stop-daemon --start -q -b -x /usr/loca/bin/szap -- -l c-band -n 1  

from now, you can only check it by using femon
femon

Testing : dvbtraffic
testing data capability
dvbtraffic

you can also monitor internet packet at dvb0_0
tcpdump -i dvb0_0

you can also using iptraf


reference
* all documentation referer taken from [WWW] http://wiki.ubuntu.com/dvbinternet
* linux dvb application [WWW] http://linuxtv.org
* patch & script [WWW] http://software.prima-info.com
* my dvb pci card [WWW] http://www.technisat.com
* Installation tutorial [WWW] http://www.howtoforge.com/perfect_setup_ubuntu_5.10





DVB

DVB is the way to provided broadband acces network that can transmitting data in high capacities, global coverages.
With DVB so the user can use them for multiservices like data, text, voice, video in broadband access.
The problem on communication that use DVB via satelite as the transmition media is delay propagation, rainy loss when using high frequency like Ku-band Radio Frekuency.

When we wanna used DVB for enjoy TV service so the minimum part that we need
1. Satellite antena (Parabolic) with LNB
2. DVB receiver
3. Television

with the equipment above we can enjoy pay on free-to-air TV services.

To providing data services via DVB so we need satellit modem and router for two-way-data
or just just DVB receiver when used for ane-way-data satelite service.


Continued ....

tes Video Klip







taken from my.opera.com/tux-edo

Perubahan di E208

hari ini aku baru sampe kos, temen yang pertama kutemuo si 1w4y yang baru aja pulang nonton Pirates of Carebean 2, film terbarunya jhony deeps..heheh

setelah 10hari kepulangan banyak berita baru niy pertma
1. jamsoy katanya baru dapet perangko baru
2. tux-edo kabar terbarunya belum jelas banget tapi kayanya ga kalah sama jamsoy:D
3. TemON tambah sukses aja bikin streaming servernya meski sekarang malah tidur gara2 si micon mati
4. 1w4y tambah sakti aja sekarang dan udah jadi dosen..
5. Ondotz sekarang udah dapet tempat KP
6. si alpan yang baru keliatan

just iseng dah kangen ngenet... btw blogs-ku ketinggalan banget niy ..punya temen yang lain udah pada sakti sakti

i hate this day

flu!!!! ga jelas datangnya tiba2 bikin kepala terasa ga karuan, hidung mampet, badan sakit semua dll. tapi kayanya /me memang disuruh istirahat alias ga ngerjain apa2 dulu selama 3 hari ini.
padahal temen2 lagi seneng2 bermain setan+ pinguin. bikin /me ngiri aja.

liat temen pada serius ngerjain TA, jadi seneng + kemaren si TemOn ultah tapi belum makan2 niy.
sekarang ngabur ga jelas.. hehehe:D

Paradigma Ujian SG

rabu tanggal 14juni2006 jam 0805 menuju ke ruang ujian, dijalan ketemu temen..
/me : eh, ga ujian loe...
temen : dah selese niy.... 13 soal pilihan
/me : berarti bisa cepet balik niy (/me tambah sante jalannya)
(waktu didalam /me ngerjain pengawas biar sampai waktu terakhir,sambil ngantuk2, 'n keluar terakhir)

smiles on everychance...
January 2010
S M T W T F S
December 2009February 2010
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30