Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

pob-fec(1) [debian man page]

POB-FEC(1)							   User Command 							POB-FEC(1)

NAME
pob-fec - receive FEC MP3 streams SYNOPSIS
pob-fec [ -s address ] [ -p port ] [ -b size ] [ -q ] DESCRIPTION
pob-fec receives a FEC MP3 stream using a custom protocol. The streamed MP3 frames are first decomposed in autonomous data units (ADUs). These ADUs are grouped into ADU groups, which are encoded redundantly using a FEC method by Luigi Rizzo. For example, a group if 8 ADUs can be encoded into 16 packets. Any 8 received packets of these 16 packets is sufficient to recover the original 8 ADUs. The incoming MP3 stream is decoded, buffered and written to stdout. OPTIONS
-s address Specify the address to listen to (default 224.0.1.23). If the address is a multicast address, group membership is requested automat- ically. -p port Specify the port to listen to. -b size Specify the number of ADU groups that are hold in the buffer (default 16). -q Don't output any information on standard error. EXAMPLES
pob-fec -s 224.0.1.24 -p 8989 | mpg123 - Receive the MP3 FEC stream sent to 224.0.1.24 on port 8989 and feed it into the MP3 decoder mpg123. AUTHORS
Manuel Odendahl <manuel@bl0rg.net>, Florian Wesch <dividuum@bl0rg.net> February 2005 POB-FEC(1)

Check Out this Related Man Page

NG_FEC(4)						   BSD Kernel Interfaces Manual 						 NG_FEC(4)

NAME
ng_fec -- netgraph Fast EtherChannel node SYNOPSIS
#include <netgraph/ng_fec.h> DESCRIPTION
The fec node implements Ethernet port trunking using the ``Cisco Fast EtherChannel'' protocol. Upon creation, a fec node creates a network interface associated with it. Interfaces are named ``fec0'', ``fec1'', etc. New nodes take the first available unit. HOOKS
The fec node accepts any hooks. However it does not use them. Under normal operation, a fec node should not have any hooks. CONTROL MESSAGES
Interface membership in the FEC group is configured with the following control messages: NGM_FEC_ADD_IFACE (``add_iface'') Attach interface to the FEC group. The target interface name is passed as a string argument. NGM_FEC_DEL_IFACE (``del_iface'') Remove interface from the trunk. The target interface name is passed as a string argument. The following control messages define the forwarding method for a node: NGM_FEC_SET_MODE_MAC (``set_mode_mac'') Forwarding decisions will be based on the link-layer MAC address of the destination. NGM_FEC_SET_MODE_INET (``set_mode_inet'') Forwarding decisions will be based on the IP address of the destination. SHUTDOWN
This node shuts down upon receipt of a NGM_SHUTDOWN control message. EXAMPLES
The following example script creates an fec node, attaches four Ethernet interfaces to it and sets the forwarding method to be IP-address based: /usr/sbin/ngctl -f- << SEQ mkpeer fec dummy fec msg fec0: add_iface "dc0" msg fec0: add_iface "dc1" msg fec0: add_iface "dc2" msg fec0: add_iface "dc3" msg fec0: set_mode_inet SEQ SEE ALSO
netgraph(4) HISTORY
The fec node type was implemented in FreeBSD 5.0. AUTHORS
The fec node was written by Bill Paul <wpaul@FreeBSD.org>. This manual page was written by Gleb Smirnoff <glebius@FreeBSD.org>. BSD
July 22, 2004 BSD
Man Page

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Boot Problems

During the boot process of my SPARCstation 5, it hangs up at this message: Setting default interface for multicast: add net 224.0.0.0: gateway jpt2. What do I need to do to get past this point? Is there something I need to turn off? (2 Replies)
Discussion started by: saucierm
2 Replies

2. Solaris

how to recover writing stream

SunOS 5.8 this command launchs my server: ./some_java_application > stdout.log 2>&1 & tha stdout.log file was deleted Q1) Is there a way to recover or redirect the writing stream without restart tha application? Q2) If not Q1, is there a way to launch the application so I can see the... (3 Replies)
Discussion started by: fabtrix
3 Replies

3. UNIX for Dummies Questions & Answers

recursively renaming files

Hi, I'm new linux user.I need to recursively rename all files .I used this command "rename .MP3\;1 .MP3 *.MP3\;1" to rename files in one directory.But Inside this directory lots of sub directories there. Please help me out how to rename all files recursively? Thanks Govindan (2 Replies)
Discussion started by: catgovind
2 Replies

4. Shell Programming and Scripting

Shell Script help - MP3 Downloader using Wget

I want to make a script to use wget to find and download mp3s on a website into a directory with a name derived from that URL. So far I have: #!/bin/sh echo “MP3 Downloader” echo -n "Enter full URL address of website or website subdirectory > " read text cd ~ mkdir $text cd $text ... (3 Replies)
Discussion started by: Garnett
3 Replies

5. IP Networking

Help with capturing/reading total packets on specific port number

Hi guys, I'm using a Linux system(Ubuntu) and I've been trying to find a method to read the total packets received/sent on a specific port (e.g port 80 or port 25) on a local machine. I can read the overall total packets received/sent from the /proc/net/dev file system. But what I can't do is... (2 Replies)
Discussion started by: lildee
2 Replies

6. Shell Programming and Scripting

Uppercase to lowercase

Hello, I have a list of files in a directory whose names are all in uppercasse, including the file format for eg *.MP3 . I would like to convert these to the normal way we write it ie ABC.MP3 to be converted to Abc.mp3 . I know that this can be done manually by using a lot of "mv" or rename... (6 Replies)
Discussion started by: ajayram
6 Replies

7. UNIX for Dummies Questions & Answers

Use awk to change an IP format

Basically I am trying to run a standard output of IP address with a port number into another command but I need to change it from. 74.125.224.194.80 into 74.125.224.194:80 One command wants a period before the port the subsequent one wants a colon. So is there anyway I can feed... (3 Replies)
Discussion started by: MrEddy
3 Replies

8. Shell Programming and Scripting

Fixed width file comparision not working

when i used diff/cmp/cat -v commands i am getting the difference cmp command cmp -l file1 file2 |head -1 1300 15 10 Manually checked records. record length and data matched. diff file1 file2 3C3 <record information Manually checked records. record length and data matched.... (4 Replies)
Discussion started by: onesuri
4 Replies