Main > Free Download Search >

Free outputs software for linux

outputs

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2443
Cow outputs waves 0.1.2

Cow outputs waves 0.1.2


Cow is something like a waveform editor in that it generates a wave file from one or more graphs for amplitude and frequency. more>>
Cow is something like a waveform editor in that it generates a wave file from one or more graphs for amplitude and frequency. It has a graphical user interface that simplifies this process.

First i wrote some classes to generate wavefiles with graphs for amplitude and frequency. Thats really simple sound synthesis. The waveformeditor of Christopher Rowley[1] inspired me. As it worked i made a little GUI just because its more compfortable to edit the
graphs... Ok. I could produce sounds, thats fine. Someone lend me a midi-keyboard and i programmed something to play the sound at different tonepitches. Well, thats it. Was a funny project, still works for me, but i guess it is dead. This will be the last release so
far. Hope you have fun with it .

cowman reads midi-events from /dev/midi00 and plays the apropriate note on /dev/dsp. You must start it with a cow-file as command-line-option or with a configfile. See manpage.
<<less
Download (0.084MB)
Added: 2006-07-24 License: GPL (GNU General Public License) Price:
1188 downloads
XML::Output 0.03

XML::Output 0.03


XML::Output is a Perl module for writing simple XML documents. more>>
XML::Output is a Perl module for writing simple XML documents.

SYNOPSIS

use XML::Output;

open(FH,>file.xml);
my $xo = new XML::Output({fh => *FH});
$xo->open(tagname, {attrname => attrval});
$xo->pcdata(element content);
$xo->close();
close(FH);

ABSTRACT

XML::Output is a Perl module for writing simple XML documents

XML::Output is a Perl module for writing simple XML document. The following methods are provided.

new
$xo = new XML::Output;
Constructs a new XML::Output object.

open
$xo->open(tagname, {attrname => attrval});
Open an element with specified name (and optional attributes)

close
$xo->close;
Close an element

empty
$xo->empty(tagname, {attrname => attrval});
Insert an empty element with specified name (and optional attributes)

pcdata
$xo->pcdata(element content);
Insert text

comment
$xo->comment(comment text);
Insert a comment

xmlstr
print $xo->xmlstr;
Get a string representation of the constructed document

<<less
Download (0.035MB)
Added: 2006-09-07 License: GPL (GNU General Public License) Price:
1144 downloads
mboxstats 3.0

mboxstats 3.0


mboxstats creates several top-10 lists from a file containing message in mbox-format. more>>
mboxstats project creates several top-10 lists from a file containing message in mbox-format.
List of top10 lists:
- Top writes
- Top receivers
- Top subjects
- Top ccers
- Top top-level-domain
- Top timezones
- Top organisations
- Top useragents (mailprograms)
- Top month/day-of-month/day-of-week/hour
- Average number of lines per message
- All kinds of per-user statistics
- And much more!
It outputs a formatted text-file or XML output.
Enhancements:
- Added nummer of messages per year
<<less
Download (0.020MB)
Added: 2007-01-18 License: GPL (GNU General Public License) Price:
1009 downloads
Audio Input-Output Library 0.2.0

Audio Input-Output Library 0.2.0


Audio Input-Output Library (libaio) is meant to solve the problem of differing digital audio platforms once and for all. more>>
Audio Input-Output Library (libaio) is meant to solve the problem of differing digital audio platforms once and for all.

JACK is unnecessarily complex for most applications, and while libaos support for file output is cool, it limits what the API can do and is therefore inadequate for any kind of real time application.

libaio provides a clean application interface and a simple compile-time driver switching decision, yielding a lightweight way to use the local sound hardware without having to care what it is.

Libaios first sparkle was when I, Hod McWuff (alias, of course), found myself trying to debug ALSA implementations for libao and madplay, and another audio-related project Id been working on. That project needed multiplatform audio support of its own, with latency management, which libao lacked.

It also seemed that libao shouldnt have been trying to be both a hardware abstraction *AND* an output abstraction, and also that it seemed more intuitive as an output (live vs file) abstraction.

Enter libaio. All it does is abstract the local sound hardware platform, to present a clean, uniform interface to playing and capturing digital audio, with facilities for basic latency management. It was written from scratch around its developing ALSA driver, from many many reference sources including libao and Robert Leslies excellent madplay MP3 decoder, and of course the ALSA documentation and examples.

Libaios distinction comes from its build-time decisionmaking. It only compiles and links the best driver available for the given platform. Therefore, selecting and loading a driver no longer applies; and well it shouldnt, theres never more than one correct choice anyway.

Libaio is not intended to replace libao; rather it is intended to supplement it. The key argument is, why would anyone EVER have more than one running sound platform type on any single machine? Sure, they might have ESD or ARTS, but they more resemble file output than a live device. Theres also the OSS emulation in ALSA, but given a good ALSA driver, whod use OSS?

Then theres the fact that applications have to tell libao what "plugin" to use, and all the drivers in libao have different parameters. That means the application has to know more than it should about what it shouldnt have to see. The app shouldnt have to say more than "give me the local device for playback with *** format" or something to that effect, and start writing.

Finally, plugins for stuff like proprietary file formats, ESD et al, but there shouldnt be any need for more than one of (ALSA|OSS|SUN|WIN32|MACOSX ) on any given distribution. Therefore, binary distribution of a compiled-in driver is possible, even preferred.

It is proposed that all of the hardware drivers in libao, and madplay, and several other places, be reviewed and ported to libaio. Then, they can be removed from those packages in favor of an AIO interface.

Installation:

## building
./configure
make


## installing (as root)
make install
<<less
Download (0.15MB)
Added: 2006-04-07 License: LGPL (GNU Lesser General Public License) Price:
1298 downloads
jgnuplot 0.2

jgnuplot 0.2


jgnuplot is a Java library for interfacing with the gnuplot plotting package. more>>
jgnuplot project is a Java library for interfacing with the gnuplot plotting package which outputs to X11, PostScript, PNG, GIF and other formats.
This library generates temporary gnuplot files which result in plots in specified output files.
The jar files can be build with the command:
$ ant
This compiles, tests and packages the software, resulting in the these files:
dist/
jgnuplot-[version].jar
jgnuplot-[version].jar.MD5
jgnuplot-[version]-src.tar.gz
jgnuplot-[version]-src.tar.gz.MD5
jgnuplot-[version]-src.zip
jgnuplot-[version]-src.zip.MD5
doc/
api/
index.html
...
These and any intermediate files can be removed by the command:
$ ant clean
Enhancements:
- general: Small bug fix [ 1517826 ] NullPointerException in Plot.setOutput(...).
<<less
Download (0.020MB)
Added: 2006-10-03 License: GPL (GNU General Public License) Price:
1116 downloads
httpget 2.0.0

httpget 2.0.0


httpget is a simple command-line program for running scripts on remote web servers. more>>
httpget is a simple command-line program for running scripts on remote web servers. Runs on Win32, Linux, Mac OS X (and possibly other Unix-like OSes).

Often on complex application sites, there are scripts that must run periodically (often nightly) to do housekeeping work. These scripts are often very complex and can take a long time to run, sometimes longer than programs like curl or wget will allow.

httpget will wait for a configurable amount of time (12 hours by default) for the script to finish running. It outputs everything that is received from the remote server for logging purposes. httpget can send usernames and passwords for basic authentication but it cannot hit SSL sites.

<<less
Download (0.050MB)
Added: 2007-03-09 License: GPL (GNU General Public License) Price:
961 downloads
Autocomp 0.0.5

Autocomp 0.0.5


Autocomp is an accompaniment generator written in Perl and Csound. more>>
Autocomp is an accompaniment generator written in Perl and Csound.

It takes as input a text file containing chord changes, plus time signature and bpm information, and outputs a Csound .sco file containing a simple arrangement of those changes.

A sample Csound .orc file containing a bass instrument, a selection of keyboard instruments, and a small sample-based drumkit is provided.

<<less
Download (0.15MB)
Added: 2006-09-04 License: GPL (GNU General Public License) Price:
1146 downloads
Arbitrary Command Output Colourer 0.7.1

Arbitrary Command Output Colourer 0.7.1


acoc is a regular-expression based colour formatter for programs that display output on the command-line. more>>
acoc is a regular-expression based colour formatter for programs that display output on the command-line. It works as a wrapper around the target program, executing it and capturing the stdout stream. Optionally, stderr can be redirected to stdout, so that it, too, can be manipulated. acoc then applies matching rules to patterns in the output and applies colours to those matches.

Ever wondered why the output of your favourite UNIX/Linux commands is still displayed in black-and-white after all these years?

Ever had to search back through your scroll-buffer in search of gcc errors and salient information to tell you what went wrong with your programs execution?

acoc is a regular expression based colour formatter for programs that display output on the command-line. It works as a wrapper around the target program, executing it and capturing the stdout stream. Optionally, stderr can be redirected to stdout, so that it, too, can be manipulated.

acoc then applies matching rules to patterns in the output and applies colour sets to those matches. A picture is worth a thousand words, so look at the sample screenshots in the next section.

Configuration

The configuration files used by the program are /usr/local/etc/acoc.conf, /etc/acoc.conf and ~/acoc.conf. One or more of these must exist. A sample /etc/acoc.conf is supplied with some example matching rules.

Blank lines and those that begin with a # are ignored.

A program configuration stanza is introduced as follows:

[program_spec]

The square brackets are mandatory literal characters. Alternatively, the @ symbol may be used, to allow [ and ] to retain their usual semantics in program specs comprising a regular expression:

@program_spec@

program_spec is defined as one or more instances of the following component, separated by a comma:

invocation[/flags]

where invocation consists of the programs name (not including its directory path component) plus any initial arguments.

Alternatively, invocation may be a regular expression, which can be used to match multiple programs and/or command-line arguments in arbitrary order. Regular expressions are automatically anchored to the beginning of the command line.

flags, if present, is separated from invocation by a slash and consists of one or more of the following characters:

a
continue to attempt to find matching patterns after the first match has been found. By default, acoc will stop processing a line and display it after the first match has been found.
e
redirect the target programs stderr to stdout, allowing it, too, to be matched by rules
p
allocate a pseudo-terminal in which to run the target program

Some programs, such as ls(1), behave differently when their stdout is not connected to a tty. Use of this option will fool the target program into believing it is outputting to a tty, rather than a pipe to acoc.

Use of this flag requires Masahiro Tomitas Ruby/TPty library to be installed. Otherwise, the flag is silently ignored.

Note that the pseudo-terminal communication enabled by this flag is one-way only, from the target program to acoc. It is thus not possible to use acoc in combination with interactive programs, such as the interactive Ruby interpreter (irb).
t
apply colour formatting even if stdout is not a tty. By default, formatting is not applied if the output stream is not attached to a terminal.

Heres an example of a line that introduces a configuration stanza:

[rpm/ae,rpmbuild/ae]

which says to apply the following rules to the rpm and rpmbuild commands, attempt to apply all matching rules, and also apply those rules to the programs stderr stream.

Another example:

[ls/p]

This says to allocate a pseudo-terminal to ls(1), fooling it into believing that its output is being sent to a regular terminal instead of a pipe to acoc.

With this flag, the effect will be this:

$ ls
file1 file2 file3 file4 file5 file6

Without it, ls will detect that its stdout is connected to a pipe and behave accordingly:

$ ls
file1
file2
file3
file4
file5
file6

A third example:

[diff/t,rcsdiff/t,cvs diff/t,p4 diff/t]

This says that the rules that follow should be applied to all invocations of diff(1) and rcsdiff(1), as well as those invocations of cvs(1) and p4 that are followed by the argument diff.

Additionally, colouring should be applied even when stdout is not connected to a tty, so that the colours still show up when the output is displayed in a pager such as more(1) or less(1).

Yet another example:

/ps -.*(e.*f|f.*e)/

In this example, the ps(1) command will be matched, as long as the e and f options are both passed in either order.

An alternative way to write the above spec is:

@ps -.*[ef].*[ef]@

There are two things to note in this alternative:

1. @ has been used to delimit the spec, because [ and ] are required for the character lists in the regular expression.
2. While this form is less specific (in that it allows matches against duplicated command line options), it makes for considerably shorter specs if one wishes to test for the inclusion of a set of more than 2 or 3 command line flags. In the original form, one must manually list all of the possible permutations, which is equal to x! (factorial). For 3 command line flags, this is 6 permutations; for 4, it is 24, etc.

Heres one more example:

[tcpdump/r]

If this were placed in ~/.acoc.conf, it would remove any matching rules that had been installed for the diff command by either /etc/acoc.conf or /usr/local/etc/acoc.conf.

After defining the program name and operational flags, matching rules can be defined. These take the following form:

/regex/[flags] colour_spec

where regex is a Ruby-compatible regular expression. The delimiting / characters can be any character, as long as that character is not present in the regular expression itself. flags, if present, consists of one or more characters from the following list:

g
find every match on the line, not just the first. When using this flag, regex should not include parentheses.

colour_spec is defined as a comma-separated list of one or more colour_groups, which are defined as a plus-separated (+) list of one or more of the following:

* black
* blink
* blue
* bold
* clear
* concealed
* cyan
* dark
* green
* italic
* magenta
* negative
* on_black
* on_blue
* on_cyan
* on_green
* on_magenta
* on_red
* on_white
* on_yellow
* rapid_blink
* red
* reset
* strikethrough
* underline
* underscore
* white
* yellow

Examples of a colour_group are white+bold, black+on_white, etc. A complete colour_spec might look like this:

red+bold,white,yellow+bold,black+on_green

Except when using the g flag, each component of the regex that you wish to colour should be placed in parentheses. Text outside parentheses will be used for matching, but will not be coloured.

For example, examine the following:

/^(d+)foos*(w+)/

This will match a line that starts with more or one digits, followed by the string foo and any amount of white space, followed by one or more word characters. However, only the initial group of digits and the group of word characters will be coloured. The string foo and the white space that follows it will be used for matching, but will not be coloured.

Separated from the regex by white space is the colour_spec. Usually, you will include in this as many colours (separated by commas) as you have parenthesised expressions in the regex. However, its also permissible to have fewer. If, for example, you have three parenthesised expressions in the regex, but only two colours listed in the colour_spec, then the second colour will be used for colouring both the second and third matches.

If you have more colours listed in the colour_spec than there are parenthesised expressions in the regex, the surplus colours are ignored.

When using the g flag to perform a global match on the line, you may list as many colours as you want. The same rules apply here. If there are more matches than colours, the remaining matches will be coloured using the last colour listed. Surplus colours are ignored.

<<less
Download (0.04MB)
Added: 2005-04-11 License: GPL (GNU General Public License) Price:
1656 downloads
units-filter 2.7

units-filter 2.7


Units-filter is a basic standalone filter written in C, flex, and bison. more>>
Units-filter is a basic standalone filter written in C, flex, and bison.
It inputs strings like "1.5e3 nN.m.s^-1" (which could be the time growth ratio of a torque) and outputs the value in standard SI units, followed by the physical dimension of this value.
units-filter can be embedded in educational test systems, in order to analyze a students answer to a problem of physics or chemistry.
Enhancements:
- The support for quantities with a particular number of significative digits was added.
- For example, the entry "1.02m#5" or "1.0200m" are equivalent and signify a distance measurement precise at the sub-millimeter scale.
- Both would yield the output "1.0200e+00 m".
<<less
Download (0.016MB)
Added: 2007-06-30 License: GPL (GNU General Public License) Price:
846 downloads
xfpt 0.00

xfpt 0.00


xfpt is a program that reads a file of plain text that contains relatively simple markup, and outputs an XML file. more>>
xfpt is a program that reads a file of plain text that contains relatively simple markup, and outputs an XML file.

xfpt project is intended to simplify the management of XML data. It is not a program that attempts to turn a plain text document into XML. Markup within text is introduced by ampersand characters, but is otherwise "soft".

You can define what follows the ampersand, for example, &" to generate a "quote" element. There is also a macro facility that allows for higher level concepts such as chapters, displays, tables, etc.

Installation:

It should just be a matter of typing

./configure
make
make install

to get youself an installed xfpt command. There is a man page that lists the
command arguments. However, the main documentation is provided only as a PDF
file in the doc directory. The xfpt source that was used to create the XML that
in turn was used to generate the PDF is also included. You can get rid of xfpt
by "make uninstall".
<<less
Download (0.12MB)
Added: 2006-01-23 License: GPL (GNU General Public License) Price:
1369 downloads
paps 0.6.8

paps 0.6.8


paps is a text to PostScript converter that works through Pango. more>>
paps is a text to PostScript converter that works through Pango. Its input is a UTF-8 encoded text file and it outputs vectorized PostScript that is quite compressed.

paps may be used for printing any complex script supported by Pango. paps supports landscape and portrait printing as well as multiple columns.

SYNTAX

paps [--landscape] [--columns cl] [--font_scale fs] [--family f] [--rtl]

OPTIONS

--landscape
Landscape output. Default is portrait.
--column cl
Number of columns output. Default is 1.
--fontscale fs
Font scaling. Default is 12.
--family f
Pango ft2 font family. Default is sans.
--rtl
Do rtl layout.
--svg
Output svg. Default is postscript.
<<less
Download (0.41MB)
Added: 2007-04-15 License: LGPL (GNU Lesser General Public License) Price:
922 downloads
Tiny Translator 0.6

Tiny Translator 0.6


Tiny Translator is a very simple class for easily organizing dialogue outputs and creating language tables. more>>
Tiny Translator is a very simple class for easily organizing dialogue outputs and creating language tables for multilingual projects.
Tiny Translator uses flat files and does not require a database engine.
Enhancements:
- This release supports MySQL databases for storing phrases.
- It still supports flat files (comma separated).
- The translate() method was split into various methods.
- Deprecated elements were deleted.
<<less
Download (0.016MB)
Added: 2005-11-22 License: LGPL (GNU Lesser General Public License) Price:
1435 downloads
PukiWiki 1.4.7_notb

PukiWiki 1.4.7_notb


PukiWiki is a wiki implementation that works on PHP 4 and 5. more>>
PukiWiki (PoohKeyWeKey without any prolonged sounds) is a wiki implementation that works on PHP 4 and 5, outputs XHTML 1.1.

PukiWiki has many plugins (including one for bug tracking) and skins (such as one for embedded browsers), enables English and/or UTF-8 configuration, and features case-insensitive WikiNames.

The formatting rules are based on YukiWiki.

<<less
Download (0.27MB)
Added: 2006-10-24 License: GPL (GNU General Public License) Price:
1095 downloads
HCS Open Source Project Beta

HCS Open Source Project Beta


HCS Open Source Project consists of a do-it-yourself home automation hardware and software system. more>>
HCS Open Source Project consists of a do-it-yourself home automation hardware and software system.

The HCS Open Source Project is a stand-alone home automation control system which consists of hardware (main controllers and remote networked controllers) and software to monitor and control various devices around your house.

The current plans support using wired and wireless X10 modules, as well as analog, digital, and voice input and output. Once the HCS is programmed, the use of a PC is not required.

CS stands for Home Control System. Originally designed by Steve Ciarcia for the article "Home Run Control System" for Byte magazine.

What is the HCS II? The HCS II is an expandable, network-based (RS485), intelligent-node, industrial-oriented supervisory control system intended for demanding home control applications.

The HCS incorporates direct and remote digital inputs and outputs, direct and remote analog inputs and outputs, real-time or Boolean decision event triggering, X-10 transmission and reception, infrared remote control transmission and reception, remote LCD displays, and a master console.

The HCS II system architecture consists of a central supervisory controller (SC) connected to up to 32 other functional modules (called links) via a RS485 serial network. The SC and the COMM-Links can operate independently and dont need each other to function.

This allows easy testing or incorporation as intelligent subsystems in other control equipment. Initially the subsystems links all shared a comon 8031 controller board (generically called a COMM-Link) with the I/O customized for each application.

<<less
Download (0.005MB)
Added: 2007-01-16 License: GPL (GNU General Public License) Price:
1014 downloads
InsightPoint 3.2.5.2

InsightPoint 3.2.5.2


InsightPoint creates sophisticated illustration and layout for Web and print. more>>
InsightPoint creates sophisticated illustration and layout for Web and print. When it comes to spell out and share your ideas, in text and in graphics as well, InsightPoint is the fastest and easiest way to get you there.

Built on top of XML technologies, comprehensive object-oriented vector design tools, trivial learning curve, smooth drawing experience and much more InsightPoint has to offer.

Besides popular bitmap outputs, InsightPoint can also create high-quality, Web-deployable multipage slide shows in the compact, sharp SVG format.
<<less
Download (29.6MB)
Added: 2006-08-29 License: Freeware Price:
2328 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5