Main > Free Download Search >

Free snow software for linux

snow

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 26
Snow & Ice 1.0

Snow & Ice 1.0


This product offers a beautiful screensaver with a winter’s theme. more>> <<less
Added: 2008-03-01 License: GPL Price: FREE
14 downloads
blueMarine 0.9.RC1

blueMarine 0.9.RC1


blueMarine project is about an open source workflow for digital photography. more>>
blueMarine project is about an open source workflow for digital photography.

What does it mean?

Start thinking of an opensource application like Aperture or Lightroom that enables you to organize, develop, print and publish your photos. Pretty standard stuff nowadays. Opensource, at first sight, means that the application is free. Now think of an application written with the Java™ language: the application runs everywhere, Mac OS X, Linux, Windows. Now think of a community of people that adds code, plugins, crazy ideas, integrating some of the latest, cool technologies around, such as GPS positioning or geo-mapping.

Well, this is just the core concept of the blueMarine project.

Lets go on and lets think of the workflow. For the existing commercial applications the workflow starts just after shooting the photo and ends with a print on paper, the photo archived and maybe a web gallery published.

Just for a starter, we could do these things in innovative ways. For instance, trip reports could take advantage of GPS positioning data and Google Maps. Galleries could be presented in form of a virtual 3d gallery with walls and pictures hang on them.

Thinking of it twice, there are holes in workflows supported by current commercial applications. For instance, if you want to filter your images with a sophisticated noise reduction algorithm or if you want to create a bigger composite photo out of several shots, you likely have to use an external application. Some communities, such as amateur astrophotographers, need some very special processing that is usually performed by means of specific software. Wouldnt be better to have all of these facilities integrated in a single front end?

Now, lets broaden our workflow horizon. It can extend well beyond the print or the archival. For instance, an ornithologist usually manages field notes about the bird observed and photographed: directly binding them to photos and maybe GPS positioning data is much better than keeping a separate Excel sheet. It can also start much before shooting the photo. Think of trip planning: maybe you travel to nice places and spot interesting subjects, but not all the conditions are favorable: the weather, the light, the sun position, or the season (snow, blossomed flowers, foliage colors). Maybe you take some photos but at home you decide: hey, Im going to return there next Fall when the trees are reddish. Wouldnt be cool if a software application could allow you to easily manage all of these wanna-shoot-again photos, maybe providing assistance to guess which will be the sun position in a certain day and hour and integrating weather forecasts? And synthetising a trip program that can be uploaded on your palm gear?

Theres a further point with opensource photo workflow. Its related to the world of camera raw formats, that is the way professional DSLR cameras work. They provide you with the raw bits from the sensor that need to be extensively cooked, or developed, for getting a good image. This approach gives a tremendous amount of control to the photographers - too bad that most formats are proprietary and not documented. blueMarine supports the OpenRAW initiative and provide an opensource implementation of developing tools for camera raw formats from an ever increasing number of vendors.

Well, all of this and more is the aim of the blueMarine project.

<<less
Download (18.7MB)
Added: 2007-08-10 License: MIT/X Consortium License Price:
807 downloads
PawPaw 0.6

PawPaw 0.6


PawPaw is a forth-like language except that it allows top-down development. more>>
PawPaw is a forth-like language except that it allows top-down development.
There are several stacks. As you would expect there is a data stack, a return stack. But there is also a control structure stack.
Include files are implemented with the # token, which is followed by the filename to include (up to 19 levels).
Here is a list of the words that are implemented so far:
EXIT calls exit(0) to end the interpreter.
+L add longs
.L print long
+ int add
. int print
: define a new word
niy print that a word (string arg) is not implemented, exit the interpret loop early.
; end a definition
"word" edit calls the Kwrite editor on the source file name corresponding to word.
(note the name of the file is a hex string followed by .pp)
size var name define a variable.
value const name define a constant
@C fetch from a character var
!C store to a char var
@S fetch from a short var
!S store to a short var
@ integer fetch
! integer store
- int subtract
- int multiply
% int modulus
/ int divide
& integer and
| integer or
^ integer exclusive or
~ 1s complement integer
> integer shift right
> < >= L convert int to long
L->I convert long to int
@L fetch long
!L store long
-L long subtract
*L long multiply
%L long modulus
&L long and
|L long or
^L long eor
~L ones complement long
L shift long right by int arg
L =L !=L ==L long relationals
dup int dup
dupL long dup
drop int drop
dropL long drop
rot int rot
rotL long rot
swap int swap
swapL long swap
pick int pick
pickL long pick by int arg
[]! subscripted store
/* ... */ comment
"word" compile compile a definition file
"xxx" "yyy" add_dep add a dependency for yyy to word xxx file.
control structure
if (expr) then true-part else false-part fi
or
if (expr) then true-part fi
while expr do body od
until expr do body od
Enhancements:
- Autoloading was fixed.
<<less
Download (0.040MB)
Added: 2007-07-27 License: GPL (GNU General Public License) Price:
819 downloads
PiX Bros 0.5

PiX Bros 0.5


PiX Bros software is a game which mixes three arcade classics: Bubble Bobble, Snow Bros and Tumble Pop. more>>
PiX Bros software is a game which mixes three arcade classics: Bubble Bobble, Snow Bros and Tumble Pop.
Your objective in this game is to destroy every enemy with your characters abilities in order to demonstrate that your character is the best hero in the world.
Main features:
- 3 players at the same time, in the same computer
- 3 different characters
- 6 levels (this is just a demo..)
- 3 different enemies
- Save game
- 3 difficulty levels
<<less
Download (11.9MB)
Added: 2007-06-05 License: Freeware Price:
877 downloads
Persistent::LDAP 0.50

Persistent::LDAP 0.50


Persistent::LDAP is a persistent class implemented using a LDAP directory. more>>
Persistent::LDAP is a persistent class implemented using a LDAP directory.

SYNOPSIS

use Persistent::LDAP;
use English; # import readable variable names like $EVAL_ERROR

eval { ### in case an exception is thrown ###

### allocate a persistent object ###
my $person =
new Persistent::LDAP(localhost, 389,
cn=Directory Manager, test1234,
ou=Engineering,o=Big Snow Org,c=US);

### declare attributes of the object ###
$person->add_attribute(uid, ID, String);
$person->add_attribute(userpassword, Persistent, String);
$person->add_attribute(objectclass, Persistent, String);
$person->add_attribute(givenname, Persistent, String);
$person->add_attribute(sn, Persistent, String);
$person->add_attribute(cn, Persistent, String);
$person->add_attribute(mail, Persistent, String);
$person->add_attribute(telephonenumber, Persistent, String);

### query the datastore for some objects ###
$person->restore_where(& (objectclass=person)(mail=*bigsnow.org),
sn, givenname);
while ($person->restore_next()) {
printf("name = %s, email = %sn",
$person->givenname . . $person->sn,
$person->mail);
}
};

if ($EVAL_ERROR) { ### catch those exceptions! ###
print "An error occurred: $EVAL_ERRORn";
}

ABSTRACT

This is a Persistent class that uses a LDAP directory to store and retrieve objects. This class can be instantiated directly or subclassed. The methods described below are unique to this class, and all other methods that are provided by this class are documented in the Persistent documentation. The Persistent documentation has a very thorough introduction to using the Persistent framework of classes.

<<less
Download (0.015MB)
Added: 2007-05-19 License: Perl Artistic License Price:
889 downloads
Carrera So-o 1.0

Carrera So-o 1.0


Carrera So-o is a simple yet challenging racing game to make time go by in boring moments. more>>
Carrera So-o is a simple yet challenging racing game to make time go by in boring moments.

Carrera So-o counts with 2 tracks to choose (grass and snow) with a simple objective... be the first to get to the finish line in order to win the game.
<<less
Download (0.83MB)
Added: 2007-04-20 License: Freeware Price:
923 downloads
rstudio 0.6

rstudio 0.6


rstudio is a GTK+ GUI that controls programs used in recording, CD mastering, and managing a SHOUTcast server. more>>
rstudio project is a GTK+ GUI that controls programs used in recording, CD mastering, and managing a SHOUTcast server.
The "Radio Station" referred to here is a Shoutcast server. Before you can play any music on the station, you need to either record your own, or use a Peer-to-Peer program or other source to download some music.
The GTK-Gnutella button starts a peer to peer fileshareing program called GTK-Gnutella where you can get a wide variety of music free.
Start Radio station starts up the shoutcast server and its source client, which feeds an mp3 playlist to the server for broadcast.
The playlist file is created when you press the "Close" button in the playlist manager. The playlist manager lets you view either the downloaded files from GTK-Gnutella, or the permanent collection of files. You can select a file, then move it to the permanent collection, only if you are viewing the downloaded files. For either set, you may delete a file, or play it.
Audacity is a very versatile recording tool that can be used to create original content, or to record from other sources, such as a Shoutcast.com station, (or even your own shoutcast station).
Shoutcast.com button starts firefox, with the url of http://www.shoutcast.com so that you may listen to other shoutcast stations, or your own.
Kill XMMS stops any running xmms.
Quit exits rstudio.
GTK-Gnutella starts the P-2-P filesharing system.
K3B can be used to master audio CDs, or even mp3 data CDs that can be played on an mp3-compatible cd player or dvd player.
Enhancements:
- A shuffle playlist button was added.
- The audio player was changed to Audacious since Gentoo does not support XMMS.
- This version was tested on Gentoo AMD64 and Kubuntu 386.
<<less
Download (1.1MB)
Added: 2007-04-01 License: GPL (GNU General Public License) Price:
941 downloads
Acme::Test::Weather 0.2

Acme::Test::Weather 0.2


Acme::Test::Weather is a Perl module to test the weather conditions for a user. more>>
Acme::Test::Weather is a Perl module to test the weather conditions for a user.

SYNOPSIS

use Test::Weather;
plan tests => 2;

# You may only install something
# when its nice outside.

&isnt_snowing();
&isnt_cloudy();

# output:

1..2
ok 1 - its partly cloudy in Montreal, Canada
not ok 2 - its partly cloudy in Montreal, Canada
# Failed test (./t/mtl.t at line 5)
# Partly Cloudy
# matches (?i-xsm:bcloudy)
# Looks like you failed 1 tests of 2.

The package determines a users location by looking up their hostname / IP address using the CAIDA::NetGeo::Client package.

Based on the data returned, weather conditions are polled using the Weather::Underground package.

Because, you know, it may be important to your Perl module that its raining outside...

PACKAGE FUNCTIONS

&is_cloudy()

Make sure it is cloudy, but remember the silver lining.

&isnt_cloudy()

No clouds. Not even little fluffy ones.

&is_raining()

Make sure it is raining.

&isnt_raining()

Make sure sure it is not raining.

&is_snowing()

Make sure it is snowing.

&isnt_snowing()

Make sure it is not snowing.

&is_sunny()

Make sure it is sunny.

&isnt_sunny()

Make sure it is not sunny. Why are you so angry?

&eq_celsius($int)

Temperature in degrees Celsius.

>_celsius($int)

Cooler than, in degrees Celcius.

_fahrenheit($int)

Warmer than, in degrees Fahrenheit.

_humidity($int)

Humidity is greater than.

<<less
Download (0.005MB)
Added: 2007-03-19 License: Perl Artistic License Price:
949 downloads
Snow-Apple

Snow-Apple


Snow-Apple provides an icon pack for Gnome. more>>
Snow-Apple provides an icon pack for Gnome.

Mark Finlay fairly converted the nautilus 2.0.x theme called Snow-Apple, to an icon theme for gnome 2.2.x. thanks to him.

<<less
Download (0.50MB)
Added: 2007-01-27 License: GPL (GNU General Public License) Price:
1010 downloads
HDR Visual Difference Predictor 1.6

HDR Visual Difference Predictor 1.6


HDR Visual Difference Predictor (HDR VDP) is a perceptual metric that can predict whether differences between two images. more>>
Visual difference metrics can predict whether differences between two images are visible to the human observer or not. Such metrics are used for testing either visibility of information (whether we can see important visual information) or visibility of noise (to make sure we do not see any distortions in images, e.g. due to lossy compression).

The image below shows how two input images, a reference image (upper left) and a distorted image (lower left), are processed with the VDP to produce a probability of detection map (right). Such probability of detection map tells how likely we will notice a difference between two images for each part of an image.

Red color denotes high probability, green - low probability. Red color is mostly present in the areas where there is a snow covered path. Because of smooth texture of the snow, there is not much visual masking and distortions are easily visible.

Although there are dozens of visible difference metrics that serve a similar purpose, our Visual Difference Predictor for HDR images (HDR-VDP) has two unique advantages: firstly, our metric works with a full range of luminance values that can be meet in a real word (HDR images), and secondly, we offer a complete source code for free.

High Dynamic Range Visible Difference Predictor (HDR-VDP) can work within the complete range of luminance the human eye can see. An input to our metric is a high dynamic range (HDR) image, or an ordinary 8-bits-per-color image, converted to the actual luminance values. The proposed metric takes into account the aspects of high contrast vision, like scattering of the light in the optics (OTF), nonlinear response to light for the full range of luminance, and local adaptation.

<<less
Download (0.13MB)
Added: 2007-01-05 License: GPL (GNU General Public License) Price:
1028 downloads
Tornado 1.3

Tornado 1.3


Tornado project is a clone of the original C64 game. more>>
Tornado project is a clone of the original C64 game.

The goal of the game is to destroy the opponents house with certain weather phenomena: rain, snow, hail, lightning, and the tornado.

The game can be played together (two players), against the computer (or two computer players against each other) or over a TCP connection.

<<less
Download (0.050MB)
Added: 2006-11-13 License: GPL (GNU General Public License) Price:
1076 downloads
Chart::EPS_graph 0.01d

Chart::EPS_graph 0.01d


Chart::EPS_graph creates line graphs in PostScript as *.eps format. more>>
Chart::EPS_graph creates line graphs in PostScript as *.eps format.

SYNOPSIS

# Create anew a 600 x 600 points (not pixels!) EPS file
my $eps = Chart::EPS_graph->new(600, 600);

# Choose minimum required display info
$eps->set(
label_top => Graph Main Title,
label_y1 => Y1 Axis Measure (Units),
label_y2 => Y2 Axis Measure (Units),
label_x => X Axis Measure (Units),
);

# Choose 6 of 13 named chans, 4 at left, 2 at right
$eps->set(
names => @all_13_name_strings,
data => @all_13_data_arefs,
y1 => [7, 8, 10, 11],
y2 => [9, 12],
);


# Choose optional graph features
$eps->set(
label_y1_2 => Extra Y1 Axis Info,
label_y2_2 => Extra Y2 Axis Info,
label_x_2 => Extra X Axis Info,

# Any common browser color no matter how hideous.
bg_color => DarkOliveGreen,
fg_color => HotPink,
web_colors => [Crimson, Lime, Indigo, Gold, Snow, Aqua],

# Any known I font no matter how illegible
font_name => ZapfChancery-MediumItalic,
font_size => 18,

# See POD about this one. But in brief:
# If set to "1" channel innumeration gaps will be closed.
# If set to "0" (the default) they will be left as they are.
close_gap => 0,

# If the 0th channel is not for the X axis (the default) then the
# data point count is used as the X axis, which you may scale.
# So if X were Time in seconds, with no 0th channel having acutally
# recorded it, but each data point were known to be 0.5 seconds...
$self->{x_is_zeroth} = 0; # Boolean, so 1 or 0.
$self->{x_scale} = 2; # Have 10th datapoint show as 20, etc.
);

# Write output as EPS
$eps->write_eps( cwd() . /whatever.eps ); # Write to a file.

# View, convert or edit the EPS output
$eps->display(); # Display in viewer (autodetects gv or gsview.exe).
$eps->display(GS); # Convert to PNG via Ghostscript.
$eps->display(GIMP); # Open for editng in The GIMP.

<<less
Download (0.024MB)
Added: 2006-10-27 License: Perl Artistic License Price:
1093 downloads
Imager::Color 0.54

Imager::Color 0.54


Imager::Color is a Perl module with color handling for Imager. more>>
Imager::Color is a Perl module with color handling for Imager.

SYNOPSIS

$color = Imager::Color->new($red, $green, $blue);
$color = Imager::Color->new($red, $green, $blue, $alpha);
$color = Imager::Color->new("#C0C0FF"); # html color specification

$color->set($red, $green, $blue);
$color->set($red, $green, $blue, $alpha);
$color->set("#C0C0FF"); # html color specification

($red, $green, $blue, $alpha) = $color->rgba();
@hsv = $color->hsv(); # not implemented but proposed

$color->info();

if ($color->equals(other=>$other_color)) {
...
}

This module handles creating color objects used by imager. The idea is that in the future this module will be able to handle colorspace calculations as well.

new

This creates a color object to pass to functions that need a color argument.

set

This changes an already defined color. Note that this does not affect any places where the color has been used previously.

rgba

This returns the rgba code of the color the object contains.

info

Calling info merely dumps the relevant colorcode to the log.

equals(other=>$other_color)
equals(other=>$other_color, ignore_alpha=>1)

Compares $self and color $other_color returning true if the color components are the same.

Compares all four channels unless ignore_alpha is set. If ignore_alpha is set only the first three channels are compared.

You can specify colors in several different ways, you can just supply simple values:
simple numeric parameters - if you supply 3 or 4 numeric arguments, you get a color made up of those RGB (and possibly A) components.

a six hex digit web color, either RRGGBB or #RRGGBB
an eight hex digit web color, either RRGGBBAA or #RRGGBBAA.
a 3 hex digit web color, #RGB - a value of F becomes 255.
a color name, from whichever of the gimp Named_Colors file or X rgb.txt is found first. The same as using the name keyword.

You can supply named parameters:

red, green and blue, optionally shortened to r, g and b. The color components in the range 0 to 255.

# all of the following are equivalent
my $c1 = Imager::Color->new(red=>100, blue=>255, green=>0);
my $c2 = Imager::Color->new(r=>100, b=>255, g=>0);
my $c3 = Imager::Color->new(r=>100, blue=>255, g=>0);
hue, saturation and value, optionally shortened to h, s and v, to specify a HSV color. 0 new(hue=>120, value=>1, saturation=>0.5);
web, which can specify a 6 or 3 hex digit web color, in any of the forms #RRGGBB, #RGB, RRGGBB or RGB.
my $c1 = Imager::Color->new(web=>#FFC0C0); # pale red
gray or grey which specifies a single channel, from 0 to 255.
# exactly the same
my $c1 = Imager::Color->new(gray=>128);
my $c1 = Imager::Color->new(grey=>128);
rgb which takes a 3 member arrayref, containing each of the red, green and blue values.
# the same
my $c1 = Imager::Color->new(rgb=>[255, 100, 0]);
my $c1 = Imager::Color->new(r=>255, g=>100, b=>0);
hsv which takes a 3 member arrayref, containting each of hue, saturation and value.
# the same
my $c1 = Imager::Color->new(hsv=>[120, 0.5, 1]);
my $c1 = Imager::Color->new(hue=>120, v=>1, s=>0.5);

gimp which specifies a color from a GIMP palette file. You can specify the filename of the palette file with the palette parameter, or let Imager::Color look in various places, typically "$HOME/gimp-1.x/palettes/Named_Colors" with and without the version number, and in /usr/share/gimp/palettes/. The palette file must have color names.

my $c1 = Imager::Color->new(gimp=>snow);
my $c1 = Imager::Color->new(gimp=>snow, palette=>testimg/test_gimp_pal);

xname which specifies a color from an X11 rgb.txt file. You can specify the filename of the rgb.txt file with the palette parameter, or let Imager::Color look in various places, typically /usr/lib/X11/rgb.txt.

my $c1 = Imager::Color->new(xname=>blue) # usually RGB(0, 0, 255)

builtin which specifies a color from the built-in color table in Imager::Color::Table. The colors in this module are the same as the default X11 rgb.txt file.

my $c1 = Imager::Color->new(builtin=>black) # always RGB(0, 0, 0)

name which specifies a name from either a GIMP palette, an X rgb.txt file or the built-in color table, whichever is found first.

channel0, channel1, etc, each of which specifies a single channel. These can be abbreviated to c0, c1 etc.

channels which takes an arrayref of the channel values.

Optionally you can add an alpha channel to a color with the alpha or a parameter.

These color specifications can be used for both constructing new colors with the new() method and modifying existing colors with the set() method.

<<less
Download (0.83MB)
Added: 2006-10-27 License: Perl Artistic License Price:
1092 downloads
ogg2mp3 2006-08-31

ogg2mp3 2006-08-31


ogg2mp3 takes a list of OGG Vorbis formatted files and converts them to mp3 format. more>>
ogg2mp3 takes a list of OGG Vorbis formatted files and converts them to mp3 format. ogg2mp3 project is useful when you want to transfer OGG encoded files to a device which doesnt support the format (e.g. an iPod).

Each file specified on the command line is converted to a file with the same name except the ``.ogg at the end is replaced with ``.mp3. The new file is created in the current working directory unless otherwise specified with the --output-directory option.

By default, ogg2mp3 prints one line of output per file processed (printing it as the processing of that file starts) as follows:

processing 1 / 10 : 01_big_exit.ogg -> ./01_big_exit.mp3

Where 01_big_exit.ogg is the first of ten files to be processed (1 / 10), and the output file is called ./01_big_exit.mp3.

This behaviour can be modified using the --quiet and --verbose options.

OPTIONS:

Note that all command line options may be abbreviated to the shortest unique version, e.g. --output-directory can be shortened to -o because there are no other options beginning with -o. However, to see the version, at least --vers is required since there is also the --verbose option, thus ``vers is the shortest unique abbreviation of ``version.

--debug n

Set the debugging level to n. Ranges from 0 to 10, 10 being really verbose, 0 being just warnings (the default).

--id3-tags or --noid3-tags

Specify that you want (or not) ID3 tags to be copied into the MP3 file.

--force-overwrite

If an output .mp3 file already exists, overewrite it without prompting (the default is to skip such files and issue a warning).

--help

Show a brief command line help message and exit.

--output-directory dir

Tell ogg2mp3 to create the .mp3 files in the directorry dir instead of the current directory.

--prefix prefix

Prefix all output filenames with prefix.

--quiet

Dont print output unless there is an error.

--suffix suffix

Append suffix to all output filenames just before the .mp3 extension.

--verbose

If --quiet is not spcified, this switch increases the amount of information displayed as each file is processed. The extra information details the ID3 tags found in the source file.

--version

Print the program name and version and exit.

EXAMPLES:

Example 1

$ ogg2mp3 echo.ogg got_two_legs.ogg pripple_ipple.ogg
processing 1 / 3 : echo.ogg -> ./echo.mp3
processing 2 / 3 : got_two_legs.ogg -> ./got_two_legs.mp3
processing 3 / 3 : pripple_ipple.ogg -> ./pripple_ipple.mp3
This command will create three new files: echo.mp3, got_two_legs.mp3, and pripple_ipple.mp3 in mp3 format in the current directory.

Example 2

$ ogg2mp3 -o /media/ipod my_song.ogg
processing 1 / 1 : my_song.ogg -> /media/ipod/my_song.mp3
This command creates the file my_song.mp3 in the directory /media/ipod.

Example 3

$ ls *.ogg
track_01.ogg track_02.ogg track_03.ogg
$ ogg2mp3 -o /tmp --verbose *.ogg
processing 1 / 3 : track_01.ogg -> /tmp/track_01.mp3
ID3 Tags:
album => Frengers
artist => Mew
date => 2003
genre => Pop
title => Am I Wry? No
tracknumber => 1

processing 2 / 3 : track_02.ogg -> /tmp/track_02.mp3
ID3 Tags:
album => Frengers
artist => Mew
date => 2003
genre => Pop
title => 156
tracknumber => 2

processing 3 / 3 : track_03.ogg -> /tmp/track_03.mp3
ID3 Tags:
album => Frengers
artist => Mew
date => 2003
genre => Pop
title => Snow Brigade
tracknumber => 3

As you can see, adding the --verbose option turns on display of ID3 tags.

<<less
Download (0.010MB)
Added: 2006-09-26 License: GPL (GNU General Public License) Price:
684 downloads
rmp3 0.5.2

rmp3 0.5.2


rmp3 is a receiver for the rmp3 broadcast protocol. more>>
rmp3 is a receiver for the rmp3 broadcast protocol. This protocol uses teletext data transmitted in the VBI (vertical blanking interval) of TV transmissions to broadcast mp3-files (e.g. RadioMP3 and MegaRadio). rmp3 currently is a command-line application. A GUI is forthcoming.
rmp3 is free software and released under the GNU General Public License. See the file COPYING for more information. See the file AUTHORS, too.
The rmp3 protocol is designed to be used by MEGARADIO http://www.megaradio.net/
to broadcast their program via NBC Europe TV.
NBC Europe TV can be received:
Via analog cable-TV in Germany. Some areas have only part-time reception.
Check http://www.kabelanschluss.com/ for details.
Via Eutelsat HOTBIRD (almost everywhere in Europe) with a *digital* (DVB) receiver. You either need a digital set-top box that re-inserts the teletext stream into the analog signal routed to your TV card. Or you need a DVB-s card and a direct connection to your satellite dish.
Note that NBC Europe cannot be received with an analog satellite receiver. And no, NBC Europe is not on Astra -- do not confuse it with CNBC.
Since rmp3 is a data service you need a pretty good reception of the TV signal. Even if you barely see any snow in the TV picture you may still get too many errors for it to be usable. Check the cable to your TV card (short cables are better) and the finetuning (xawtv: cursor left/right). Use rmp3 -v to check the signal quality indicator (Q=10 is perfect, lower numbers are worse).
Of course this means you either need an (analog) TV card or a (digital)
DVB-S card supported by Linux. It is probably a good idea to get the card
running with a program to watch TV *before* you try running rmp3. xawtv
and alevt are the most popular choices for watching TV and browsing teletext.
Please see the Linux FAQs for details.
The authors of rmp3 would like to point out that we wrote rmp3 but we
are NOT RESPONSIBLE for the RADIO PROGRAM that is broadcast by MEGARADIO!
Please DO NOT COMPLAIN TO US about the music they play or the quality
of the MP3s they send. We cant do anything about it!
In particular MEGARADIO at the time of this writing (August 2002) has the
following problems:
The stream is sent either at 96 kbit/s or 128 kbit/s depending on the time of the day. Although they claim that the former is required because an additional teletext magazine is sent, there is no technical reason for that. If the stream is sent with the correct speed (see below) there is enough room in the VBI to send the teletext magazine even at 128 kbit/s.
The stream is sent too fast (106% for 96 kbit/s and 114% for 128 kbit/s)! But without a correct stream timing listening to the stream is a pain. Since your soundcard can only play at a fixed rate some buffer will inevitably overflow after a short time. You will her a popping noise in the audio and a piece of the song is lost. Note that file saving is
not affected. If you both listen to the stream and save the stream, files will be saved ok even if the audio fails. The only workaround we can offer is to increase the queue length (e.g. rmp3 -Q 1000 will allocate around 900K). But this just delays the problem. You will soon see asynchronous output if you use multiple plugins.
The 128 kbit/s MP3 files are of low quality. Apparently they are not generated with the best encoding and not from an uncompressed source.
All MP3 file names are in UPPERCASE and are missing all special characters. The save script tries to compensate for that but this is of course not perfect.
The MP3 files have ID3 tags now, but they are in UPPERCASE and incomplete.
There are no covers or structured song names, yet.
The are a few violations of the rmp3 protocol which may lead to corrupted MP3 files if there are many errors or gaps in the stream (the stream ID is not changed and empty garbage files are sent).
Sometimes there are long pauses between songs or the rmp3 stream is stopped and then started again. Just have a bit of patience. Sigh.
All of this may be obsolete by the time you read this (we hope so).To find the latest unofficial rumors and gossip about MEGARADIO, please visit: http://www.rettet-radiomp3.de/forum/ (in German only)
Enhancements:
- added Jens V4L 0.9.x stuff
<<less
Download (0.60MB)
Added: 2006-07-21 License: GPL (GNU General Public License) Price:
1192 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 2
  • 1
  • 2