mario
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 38
Mega Mario 1.3
Mega Mario is a Mario clone + blood. more>>
Mega Mario is a Mario clone + blood. In the game you play Mario and your task is to free his brother Luigi, who was captured by the evil Bowser. Mario is controlled by Keyboard or Gamepad using the Arrowkeys to walk, Space / A to jump and CTRL / B to run/fire. After reaching a castle the game is saved and can be continued at any time by clicking on "Load Game".
Mega Mario also features a blood-mode, which makes killed enemies spread their blood all over the level! And if you have fun to create your own levels after completing the game, you can use the Level-Editor (read "Editor.txt"). For example you can send me your best levels and perhaps Ill build them into the game!
<<lessMega Mario also features a blood-mode, which makes killed enemies spread their blood all over the level! And if you have fun to create your own levels after completing the game, you can use the Level-Editor (read "Editor.txt"). For example you can send me your best levels and perhaps Ill build them into the game!
Download (3.8MB)
Added: 2006-06-30 License: GPL (GNU General Public License) Price:
1808 downloads
Super Mario Clone FX 1.0
Super Mario Clone FX is a jump-and-run game in the style of Super Mario World. more>>
Super Mario Clone FX is a jump-and-run game in the style of Super Mario World. Secret Maryo Chronicles is a two-dimensional, sidescrolling jump-and-run platform game which utilizes the platform independent multimedia library, SDL.
It features a built-in level editor which can be used to easily create your own levels.
Main features:
In-Game Level Editor
- Activated by F8 in the game. You can insert any graphic file as a background or massive sprite in the game.
- Many standart graphics like hedges and ground sprites are included. You can insert enemys, set the players start position on the level,
- insert active sprites, and create half-massive sprites which the player can jump through, but can not fall through.
Multiple Levels
- Each level ends with gate or pipe, press up or down to enter the next level.
Multiple Maryo Stages
- Includes small Maryo, normal Maryo, and fire Maryo. Advance to the next stage by getting mushrooms and fire plants.
- These items can be obtained by jumping into question mark boxes.
Overworld
- Get an aerial perspective between levels, just like the World Map in Super Mario World.
Great Sounds and Music
- High quality Ogg music and sounds for the EXTRA maryo game feeling.
Save and Load
- Save anytime from the game menu. Then load whenever you want.
Get Extra Lives
- By getting 100 coins or finding the Green Mushrooms.
<<lessIt features a built-in level editor which can be used to easily create your own levels.
Main features:
In-Game Level Editor
- Activated by F8 in the game. You can insert any graphic file as a background or massive sprite in the game.
- Many standart graphics like hedges and ground sprites are included. You can insert enemys, set the players start position on the level,
- insert active sprites, and create half-massive sprites which the player can jump through, but can not fall through.
Multiple Levels
- Each level ends with gate or pipe, press up or down to enter the next level.
Multiple Maryo Stages
- Includes small Maryo, normal Maryo, and fire Maryo. Advance to the next stage by getting mushrooms and fire plants.
- These items can be obtained by jumping into question mark boxes.
Overworld
- Get an aerial perspective between levels, just like the World Map in Super Mario World.
Great Sounds and Music
- High quality Ogg music and sounds for the EXTRA maryo game feeling.
Save and Load
- Save anytime from the game menu. Then load whenever you want.
Get Extra Lives
- By getting 100 coins or finding the Green Mushrooms.
Download (15.3MB)
Added: 2007-07-31 License: GPL (GNU General Public License) Price:
747 downloads
MazeRunner 0.63
MazeRunner project is a very extensible puzzle game that is also meant to be (somewhat) a Mario clone. more>>
MazeRunner project is a very extensible puzzle game that is also meant to be (somewhat) a Mario clone, featuring good music, graphics (2D), and other features.
<<less Download (9.2MB)
Added: 2007-04-23 License: GPL (GNU General Public License) Price:
915 downloads
LambdaRogue 0.1.105
LambdaRogue is a rogue-like role playing game set in the future of a somehow parallel world to our own. more>>
LambdaRogue is a rogue-like role playing game set in the future of a somehow "parallel world" to our own.
People had to go underground to survive a war between human society and the once peaceful DrakhNar, another species on the planet. People founded the NeoTerr nation and tried to build up a prosperous civilization.
This worked, until suddenly strange creatures came down the Great River Styx. The river has now become a source of fear and terror. The player has to follow the river through NeoTerr and discover the reason. The atmosphere is rather strange, influcenced by phantasy and cyberpunk.
Enhancements:
- HP does not autoregenrate any longer.
- This makes the game more difficult.
- Monsters are able to do long-range attacks.
- There are three new trader types (hospital, restaurant, and academy).
- There are many UI improvements and bugfixes.
<<lessPeople had to go underground to survive a war between human society and the once peaceful DrakhNar, another species on the planet. People founded the NeoTerr nation and tried to build up a prosperous civilization.
This worked, until suddenly strange creatures came down the Great River Styx. The river has now become a source of fear and terror. The player has to follow the river through NeoTerr and discover the reason. The atmosphere is rather strange, influcenced by phantasy and cyberpunk.
Enhancements:
- HP does not autoregenrate any longer.
- This makes the game more difficult.
- Monsters are able to do long-range attacks.
- There are three new trader types (hospital, restaurant, and academy).
- There are many UI improvements and bugfixes.
Download (1.0MB)
Added: 2007-03-11 License: GPL (GNU General Public License) Price:
957 downloads
MRTG::Parse 0.03
MRTG::Parse is a Perl extension for parsing and utilizing the logfiles generated by the famous MRTG Tool. more>>
MRTG::Parse is a Perl extension for parsing and utilizing the logfiles generated by the famous MRTG Tool.
SYNOPSIS
use strict;
use MRTG::Parse;
my $mrtg_logfile = "/var/www/htdocs/mrtg/eth0.log";
my $period = "day";
my $desired_unit = "GB";
my ($traffic_incoming, $traffic_outgoing, $traffic_sum) = mrtg_parse($mrtg_logfile, $period, $desired_unit);
print "Incoming Traffic: $traffic_incomingn";
print "Outgoing Traffic: $traffic_outgoingn";
print "= Sum $traffic_sumn";
This perl extension enables its users to parse and utilize the logfiles that are generated by the famous MRTG (Multi Router Traffic Grapher) tool.
mrtg_parse() takes three argument:
1st: filename of the mrtg logfile
2nd: time period to genereate the output for
valid values are:
- individual time periods like: 20040821-20050130 (ISO 8601)
- static values: day, month, year
3rd: the desired unit (optional)
valid values are:
- B, KB, MB, GB, TB
- if missing mrtg_parse will chose an adequate one for you
mrtg_parse() returns three values:
1st: Incoming traffic
2nd: Outgoing traffic
3rd: Sum of incoming and outgoing
<<lessSYNOPSIS
use strict;
use MRTG::Parse;
my $mrtg_logfile = "/var/www/htdocs/mrtg/eth0.log";
my $period = "day";
my $desired_unit = "GB";
my ($traffic_incoming, $traffic_outgoing, $traffic_sum) = mrtg_parse($mrtg_logfile, $period, $desired_unit);
print "Incoming Traffic: $traffic_incomingn";
print "Outgoing Traffic: $traffic_outgoingn";
print "= Sum $traffic_sumn";
This perl extension enables its users to parse and utilize the logfiles that are generated by the famous MRTG (Multi Router Traffic Grapher) tool.
mrtg_parse() takes three argument:
1st: filename of the mrtg logfile
2nd: time period to genereate the output for
valid values are:
- individual time periods like: 20040821-20050130 (ISO 8601)
- static values: day, month, year
3rd: the desired unit (optional)
valid values are:
- B, KB, MB, GB, TB
- if missing mrtg_parse will chose an adequate one for you
mrtg_parse() returns three values:
1st: Incoming traffic
2nd: Outgoing traffic
3rd: Sum of incoming and outgoing
Download (0.005MB)
Added: 2007-04-03 License: Perl Artistic License Price:
938 downloads
Glarf 0.35
Glarf is a game with weird creatures on platforms shooting weird things. more>>
Glarf is the working title of a video game. It is a platformer like Mario or MegaMan or Contra, but thats not the Big Idea.
The Big Idea is user created content, radical trust, randomness, and play. Weapon crafting is a key example.
Glarf can shoot things - fireballs, bouncy globs, liquids. When Glarf consumes a powerup, the things he shoots inherit some of that powerups properties, by being selective in what you eat or throw away, you can create weapons with powerful and interesting effects.
Eventually, players will be able to modify the code that governs the behaviour of object in the game world. And theyll be able to share it safely with other players. But for now were just working on getting a first level done that serves as a tutorial and is still fun.
<<lessThe Big Idea is user created content, radical trust, randomness, and play. Weapon crafting is a key example.
Glarf can shoot things - fireballs, bouncy globs, liquids. When Glarf consumes a powerup, the things he shoots inherit some of that powerups properties, by being selective in what you eat or throw away, you can create weapons with powerful and interesting effects.
Eventually, players will be able to modify the code that governs the behaviour of object in the game world. And theyll be able to share it safely with other players. But for now were just working on getting a first level done that serves as a tutorial and is still fun.
Download (2.9MB)
Added: 2005-11-08 License: GPL (GNU General Public License) Price:
1445 downloads
Download (0.064MB)
Added: 2006-12-18 License: LGPL (GNU Lesser General Public License) Price:
1040 downloads
Netrok 0.95
Netrok is a GPL open source SDL game for linux and Windows. more>>
Netrok is a GPL open source SDL game for linux and Windows. It`s a platform game like Super Mario, but it is not a clone. Netrok has a new, fast and unique gameplay with some puzzle passages, where you have to think, how to proceed.
In Netrok you jump on small buttons on the ground and upgrade your player and depending of this upgrade you have to destroy the enemies different, and you have to react fast.
Also Netrok has a very complex score system and you get score for everything well done and you loose score for actions, which makes gameplay easier. E.g. you can throw a level jump`in flag and if you die, you can replay level from the position of this flag, but it costs 1000 score to place the flag, and you have only once the possibility to throw it and you have to deliberate about where to place it, if you place it to early, you have to replay much more than if you place it later in the level, which is also risky, because you could die before.
Main features:
- very portable source code
- resolution 320*200
- 1 level is 20 screens big, with 13*20 tiles per screen
- 20 levels full of fun
- 8 different enemies
- Leveleditor
- Retro Feeling
- Netrok can be upgraded
- new unique game design
- funny gameplay instead of super graphics and effects
- midi music and sound
- compley score system
<<lessIn Netrok you jump on small buttons on the ground and upgrade your player and depending of this upgrade you have to destroy the enemies different, and you have to react fast.
Also Netrok has a very complex score system and you get score for everything well done and you loose score for actions, which makes gameplay easier. E.g. you can throw a level jump`in flag and if you die, you can replay level from the position of this flag, but it costs 1000 score to place the flag, and you have only once the possibility to throw it and you have to deliberate about where to place it, if you place it to early, you have to replay much more than if you place it later in the level, which is also risky, because you could die before.
Main features:
- very portable source code
- resolution 320*200
- 1 level is 20 screens big, with 13*20 tiles per screen
- 20 levels full of fun
- 8 different enemies
- Leveleditor
- Retro Feeling
- Netrok can be upgraded
- new unique game design
- funny gameplay instead of super graphics and effects
- midi music and sound
- compley score system
Download (0.32MB)
Added: 2006-06-26 License: GPL (GNU General Public License) Price:
1219 downloads
MRTG-eth-probe 1.5.5
MRTG-eth-probe provides a probe for the Multi Router Traffic Grapher. more>>
MRTG-eth-probe provides a probe for the Multi Router Traffic Grapher, generating statistics for network devices that do not support the SNMP protocol. It reads interface stats from /proc/net/dev (or some other file you configure), and generates an output readable for MRTG by parsing the file.
Since the starting of this project MRTG-eth-probe has been downloaded more than 1700 times (as of 2001-11-04). Thanks for this go first of all to Freshmeat for accepting the project and for redirecting so much people to my sourceforge projectpage Additional thanks go to Michael Feger for sending me a patch to 1.5.2 which makes up the most important changes of this release.
Enhancements:
- bugfix: missing dot
<<lessSince the starting of this project MRTG-eth-probe has been downloaded more than 1700 times (as of 2001-11-04). Thanks for this go first of all to Freshmeat for accepting the project and for redirecting so much people to my sourceforge projectpage Additional thanks go to Michael Feger for sending me a patch to 1.5.2 which makes up the most important changes of this release.
Enhancements:
- bugfix: missing dot
Download (0.010MB)
Added: 2006-06-29 License: GPL (GNU General Public License) Price:
1215 downloads
gmp3sort 0.3
gmp3sort is used to reorder files on usb mp3 sticks with fat16 filesystem. more>>
gmp3sort is used to reorder files on usb mp3 sticks with fat16 filesystem.
Some mp3 usb sticks have no support for playlists or shuffle.
Since they use fat16, files are ordered by creation date, which results in no or little control over the playlist.
gmp3sort renames files, moves them to a temporary directory and moves them back, thus creating the desired file order.
Main features:
- glade xml
- double click on textview row
- copynpaste textview rows
- dragndrop textview rows
- textview multiple selection
- textview context menu
- textview selection, iteration
- textview column sort, return to unsorted mode
- dragndrop from nautilus
- GnomeVFS URI parsing
- FileChooserDialogs?
- GtkFilter? for FileChooserDialog?
- Statusbar
<<lessSome mp3 usb sticks have no support for playlists or shuffle.
Since they use fat16, files are ordered by creation date, which results in no or little control over the playlist.
gmp3sort renames files, moves them to a temporary directory and moves them back, thus creating the desired file order.
Main features:
- glade xml
- double click on textview row
- copynpaste textview rows
- dragndrop textview rows
- textview multiple selection
- textview context menu
- textview selection, iteration
- textview column sort, return to unsorted mode
- dragndrop from nautilus
- GnomeVFS URI parsing
- FileChooserDialogs?
- GtkFilter? for FileChooserDialog?
- Statusbar
Download (0.016MB)
Added: 2005-07-19 License: GPL (GNU General Public License) Price:
1557 downloads
Crispy 1.1.1
Crispy is a client for remote invocation for different kinds of services via proxies. more>>
Crispy is a client for remote invocation for different kinds of services via proxies.
The intention for this project is a very simple API for call different kinds of services (provider/technology). Crispys aims is to provide a single point of entry for remote invocation for a wide number of transports: eg. RMI, EJB, JAX-RPC or XML-RPC.
It works by using properties to configure a service manager, which is then used to invoke the remote API. Crispy is a simple Java codebase with an API that sits between your client code and the services your code must access.
Crispy provides a layer of abstraction to decouple client code from access to a service, as well as its location and underlying implementation. The special on this idea is, that these calls are simple Java object calls (remote or local calls are transparent).
From Crispy supported service-provider are:
RMI,
Web-Service (JAX-RPC, for example Axis),
EJB (with JNDI lookup),
XML-RPC (for example Apache XML-RPC)
Burlap and Hessian (Caucho)
JBoss Remoting,
REST (REpresentational State Transfer), a pure Crispy implementation,
Main features:
- Very easy to use.
- Very simple and minimal to configure.
- You can call a remote method from Java object, like a local call.
- You dont need to know, how the (remote) technology work.
- You can easy change the technology (for example from XML-RPC to RMI).
- The services dont know a remote-interface or a RemoteException (how RMI).
- The parameter can be a complex object (in parts without programming a Serializabler (Marshalling) or Deserializabler (Unmarshalling))
- You can intercept methods before and after invocation (for logging, time stopping, ...).
- You can modify or extends method parameter and the result (transformation, set a authorization (login) token for the request in the background, ...).
<<lessThe intention for this project is a very simple API for call different kinds of services (provider/technology). Crispys aims is to provide a single point of entry for remote invocation for a wide number of transports: eg. RMI, EJB, JAX-RPC or XML-RPC.
It works by using properties to configure a service manager, which is then used to invoke the remote API. Crispy is a simple Java codebase with an API that sits between your client code and the services your code must access.
Crispy provides a layer of abstraction to decouple client code from access to a service, as well as its location and underlying implementation. The special on this idea is, that these calls are simple Java object calls (remote or local calls are transparent).
From Crispy supported service-provider are:
RMI,
Web-Service (JAX-RPC, for example Axis),
EJB (with JNDI lookup),
XML-RPC (for example Apache XML-RPC)
Burlap and Hessian (Caucho)
JBoss Remoting,
REST (REpresentational State Transfer), a pure Crispy implementation,
Main features:
- Very easy to use.
- Very simple and minimal to configure.
- You can call a remote method from Java object, like a local call.
- You dont need to know, how the (remote) technology work.
- You can easy change the technology (for example from XML-RPC to RMI).
- The services dont know a remote-interface or a RemoteException (how RMI).
- The parameter can be a complex object (in parts without programming a Serializabler (Marshalling) or Deserializabler (Unmarshalling))
- You can intercept methods before and after invocation (for logging, time stopping, ...).
- You can modify or extends method parameter and the result (transformation, set a authorization (login) token for the request in the background, ...).
Download (10MB)
Added: 2006-11-15 License: LGPL (GNU Lesser General Public License) Price:
1076 downloads
libencio 0.1
libencio is a stdio-like symmetric key encryption library. more>>
libencio is a library providing stdio-like interface for reading and writing of encrypted files in MCrypt format. Additionally, through creation of an "index", libencio provices full support for fseek()-like random read access of encrypted data.
This allows one to operate on MCrypt-encrypted files as if they were ordinary, cleartext files.
Installation:
The `configure shell script attempts to guess correct values for various system-dependent variables used during compilation.
It uses those values to create a `Makefile in each directory of the package. It may also create one or more `.h files containing system-dependent definitions.
Finally, it creates a shell script `config.status that you can run in the future to recreate the current configuration, and a file `config.log containing compiler output (useful mainly for
debugging `configure).
It can also use an optional file (typically called `config.cache and enabled with `--cache-file=config.cache or simply `-C) that saves the results of its tests to speed up reconfiguring. (Caching is disabled by default to prevent problems with accidental use of stale cache files.)
If you need to do unusual things to compile the package, please try to figure out how `configure could check whether to do them, and mail diffs or instructions to the address given in the `README so they can be considered for the next release.
If you are using the cache, and at some point `config.cache contains results you dont want to keep, you may remove or edit it.
The file `configure.ac (or `configure.in) is used to create `configure by a program called `autoconf. You only need `configure.ac if you want to change it or regenerate `configure using a newer version of `autoconf.
The simplest way to compile this package is:
1. `cd to the directory containing the packages source code and type `./configure to configure the package for your system. If youre using `csh on an old version of System V, you might need to type `sh ./configure instead to prevent `csh from trying to execute
`configure itself.
Running `configure takes awhile. While running, it prints some messages telling which features it is checking for.
2. Type `make to compile the package.
3. Optionally, type `make check to run any self-tests that come with the package.
4. Type `make install to install the programs and any data files and documentation.
5. You can remove the program binaries and object files from the source code directory by typing `make clean. To also remove the files that `configure created (so you can compile the package for a different kind of computer), type `make distclean.
There is also a `make maintainer-clean target, but that is intended mainly for the packages developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution.
<<lessThis allows one to operate on MCrypt-encrypted files as if they were ordinary, cleartext files.
Installation:
The `configure shell script attempts to guess correct values for various system-dependent variables used during compilation.
It uses those values to create a `Makefile in each directory of the package. It may also create one or more `.h files containing system-dependent definitions.
Finally, it creates a shell script `config.status that you can run in the future to recreate the current configuration, and a file `config.log containing compiler output (useful mainly for
debugging `configure).
It can also use an optional file (typically called `config.cache and enabled with `--cache-file=config.cache or simply `-C) that saves the results of its tests to speed up reconfiguring. (Caching is disabled by default to prevent problems with accidental use of stale cache files.)
If you need to do unusual things to compile the package, please try to figure out how `configure could check whether to do them, and mail diffs or instructions to the address given in the `README so they can be considered for the next release.
If you are using the cache, and at some point `config.cache contains results you dont want to keep, you may remove or edit it.
The file `configure.ac (or `configure.in) is used to create `configure by a program called `autoconf. You only need `configure.ac if you want to change it or regenerate `configure using a newer version of `autoconf.
The simplest way to compile this package is:
1. `cd to the directory containing the packages source code and type `./configure to configure the package for your system. If youre using `csh on an old version of System V, you might need to type `sh ./configure instead to prevent `csh from trying to execute
`configure itself.
Running `configure takes awhile. While running, it prints some messages telling which features it is checking for.
2. Type `make to compile the package.
3. Optionally, type `make check to run any self-tests that come with the package.
4. Type `make install to install the programs and any data files and documentation.
5. You can remove the program binaries and object files from the source code directory by typing `make clean. To also remove the files that `configure created (so you can compile the package for a different kind of computer), type `make distclean.
There is also a `make maintainer-clean target, but that is intended mainly for the packages developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution.
Download (0.15MB)
Added: 2005-10-11 License: GPL (GNU General Public License) Price:
1473 downloads
libisofs 0.2.3
libisofs is a library to pack up hard disk files and directories into an ISO 9660 disk image. more>>
libisofs is a library to pack up hard disk files and directories into an ISO 9660 disk image. This may then be brought to CD via libburn. It is part of the "libburnia" project.
Build and Installation:
Our build system is based on autotools. For preparing the build of a SVN
snapshot you will need autotools of at least version 1.7.
Check out from SVN by
svn co http://libburn-svn.pykix.org/trunk libburn_pykix
and apply autotools by
./bootstrap
Alternatively you may unpack a release tarball for which you do not need autotools installed.
To build libburn.pykix.org and its subprojects it should be sufficient to go into its toplevel directory (here: "libburn_pykix") and execute
./configure
make
To make the libraries accessible for running resp. developing applications
make install
Enhancements:
- This is a bugfix release with some improvements for FreeBSD support.
<<lessBuild and Installation:
Our build system is based on autotools. For preparing the build of a SVN
snapshot you will need autotools of at least version 1.7.
Check out from SVN by
svn co http://libburn-svn.pykix.org/trunk libburn_pykix
and apply autotools by
./bootstrap
Alternatively you may unpack a release tarball for which you do not need autotools installed.
To build libburn.pykix.org and its subprojects it should be sufficient to go into its toplevel directory (here: "libburn_pykix") and execute
./configure
make
To make the libraries accessible for running resp. developing applications
make install
Enhancements:
- This is a bugfix release with some improvements for FreeBSD support.
Download (0.32MB)
Added: 2006-12-08 License: GPL (GNU General Public License) Price:
1053 downloads
GuitarTeX 3.1.0
GuitarTeX is a tool for guitarists who want to print good looking and easy to play song sheets. more>>
GuitarTeX is a tool for guitarists who want to print good looking and easy to play song sheets or song books from their chord or chordpro files. It uses the well known chord format with several extensions. The program was developed on a Linux system, but it should run on any other Unix system which has a Perl/TK environment.
It is based upon an idea of Martin Leclerc and Mario Dorion from Canada and their program Chord (Version 3.5 from 1993). To use GuitarTeX, you need to have knowledge of the Chord program (explained later). Though the LaTeX text processing system is used by GuitarTeX, you dont have to know very much about it. GuitarTeX produces Postscript or PDF output automatically (if you want). The Chord directives supplied by GuitarTeX are described in Chapter 5.
Main features:
- Graphical user interface with integrated editor and syntax highlighting
- Prints good looking song sheets including guitar chords without using monospace fonts
- Output formats: LaTeX, Postscript and PDF
- Compatible with ChordPro format, import function for ascii format
- Support for music typesetting with the LaTeX packages MusixTeX, MusixLyr and TabDefs
- Flexible page layout (paper size, margins...)
- User defined colors for different parts of a song (e.g. verse, chorus)
- Optional printing of chord symbols at the end of a song
- Transpose up or down your song by mouse clicks
- Creates single song sheets or complete song books with a title page, table of
- contents, headlines with page numbering, chord table and index
- Supports ASCII tablature and the built in tablature directives for guitar and bass tabs
- Support for multiple languages (if you dont find your langauage, you can help the
- author to add it)
- Runs on Linux operating system (it should run on any Unix system that is supported by Perl/TK and LaTeX, but it is not tested)
- Setup your song book project from single song files with the include directive
- LaTeX commands may be used in Chordpro files (for the professionals)
Enhancements:
- Support to create song books
- Several Bugfixes
<<lessIt is based upon an idea of Martin Leclerc and Mario Dorion from Canada and their program Chord (Version 3.5 from 1993). To use GuitarTeX, you need to have knowledge of the Chord program (explained later). Though the LaTeX text processing system is used by GuitarTeX, you dont have to know very much about it. GuitarTeX produces Postscript or PDF output automatically (if you want). The Chord directives supplied by GuitarTeX are described in Chapter 5.
Main features:
- Graphical user interface with integrated editor and syntax highlighting
- Prints good looking song sheets including guitar chords without using monospace fonts
- Output formats: LaTeX, Postscript and PDF
- Compatible with ChordPro format, import function for ascii format
- Support for music typesetting with the LaTeX packages MusixTeX, MusixLyr and TabDefs
- Flexible page layout (paper size, margins...)
- User defined colors for different parts of a song (e.g. verse, chorus)
- Optional printing of chord symbols at the end of a song
- Transpose up or down your song by mouse clicks
- Creates single song sheets or complete song books with a title page, table of
- contents, headlines with page numbering, chord table and index
- Supports ASCII tablature and the built in tablature directives for guitar and bass tabs
- Support for multiple languages (if you dont find your langauage, you can help the
- author to add it)
- Runs on Linux operating system (it should run on any Unix system that is supported by Perl/TK and LaTeX, but it is not tested)
- Setup your song book project from single song files with the include directive
- LaTeX commands may be used in Chordpro files (for the professionals)
Enhancements:
- Support to create song books
- Several Bugfixes
Download (MB)
Added: 2007-07-15 License: GPL (GNU General Public License) Price:
834 downloads
Yet Another Time Machine 0.4
Yet Another Time Machine is a command line Ogg Vorbis and MPEG audio player. more>>
Yet Another Time Machine is a command line Ogg Vorbis and MPEG audio player with the ability to control the tempo of playback without changing the pitch.
Primary usage would be to listen (for example) to audio books at 150% tempo. This is still understandable and saves time, hence the name of the program.
The following audio encoding formats are supported:
- Ogg Vorbis
- Ogg Speex
- MPEG
- All formats supported by libsndfile (FLAC, WAV, AIFF, ...)
Enhancements:
- Version 0.4 adds support for libsndfile.
- There is also an undocumented gem, you can use < and > to slow down or speed up by 10%, and hitting SPACE can be used to pause playback.
<<lessPrimary usage would be to listen (for example) to audio books at 150% tempo. This is still understandable and saves time, hence the name of the program.
The following audio encoding formats are supported:
- Ogg Vorbis
- Ogg Speex
- MPEG
- All formats supported by libsndfile (FLAC, WAV, AIFF, ...)
Enhancements:
- Version 0.4 adds support for libsndfile.
- There is also an undocumented gem, you can use < and > to slow down or speed up by 10%, and hitting SPACE can be used to pause playback.
Download (0.17MB)
Added: 2005-11-07 License: GPL (GNU General Public License) Price:
1446 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above mario search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed