se xmovie
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 57
XMovie 1.9.13
XMovie is a versatile multimedia and DVD player. more>>
XMovie was originally written as a simple, fast method to play uncompressed movies with stereo sound back when the only uncompressed movie player was xanim and the only MPEG player was MTV.
XAnim didnt play stereo sound and MTV was a $15 shareware. Hard to believe how todays applications toss movies around like nothing when just 4 years ago it was an ordeal just to play an MPEG stream.
XMovie is mainly intended for uncompressed movie playback, nonstandard output from Cinelerra, and testing decoder libraries.
Its not intended for low resolution, low bitrate internet downloads. Your luck will improve with something like M Player
6 channels of audio can be sent to a soundcard supporting 6 channel audio. More importantly, HDTV program and ATSC transport streams play back.
These streams are usually obtained through a capture board like the WinTV HD, set top box hacking, or other means. Forget about downloading HDTV moviez from the internet.
<<lessXAnim didnt play stereo sound and MTV was a $15 shareware. Hard to believe how todays applications toss movies around like nothing when just 4 years ago it was an ordeal just to play an MPEG stream.
XMovie is mainly intended for uncompressed movie playback, nonstandard output from Cinelerra, and testing decoder libraries.
Its not intended for low resolution, low bitrate internet downloads. Your luck will improve with something like M Player
6 channels of audio can be sent to a soundcard supporting 6 channel audio. More importantly, HDTV program and ATSC transport streams play back.
These streams are usually obtained through a capture board like the WinTV HD, set top box hacking, or other means. Forget about downloading HDTV moviez from the internet.
Download (1.96MB)
Added: 2005-05-03 License: GPL (GNU General Public License) Price:
1640 downloads
jresolver 0.1
jresolver is a Java DNS resolver library. more>>
jresolver is a Java DNS resolver library. This is a domain name resolver library written in pure java. It is what RFC1034 describes as a stub resolver, in other words it uses a single nameserver to do the hard work of resolving its queries. At the moment it only handles queries for MX records, but it can easily be extended to resolve new types of queries as needed.
Main features:
- Lightweight. The binary jar is less than 17k at the moment, and has no
- exernal dependencies besides JDK 1.4.
- Multi Threaded. It handles multiple concurrent threads sharing a single
- Resolver instance.
- Easy to use and develop. The software does one thing, and the code is quite
- readable.
- Free software. Released under the GPL 3.0 license, this software can be used,
- modified and redistributed by anyone respecting the terms of the license. If you
- need other licensing options, please contact me.
Usage:
A snippet of code says more than lots of words:
Resolver r = new Resolver("ns.voxbiblia.se");
List l = r.resolve(new MXQuery("voxbiblia.se"));
for (int i = 0; i < l.size(); i++) {
MXRecord mx = (MXRecord)l.get(i);
System.out.println("mx: " + mx.getExchange() + " p: "+ mx.getPreference());
}
If you want to build and test the software you need to unpack the files named jresolver-*-src.tar.bz2 and jresolver-*-test.tar.bz2 and use Apache Ant with the build.xml file included. You may need to update the test cases with your dns server names.
Enhancements:
- Somewhat tested, but not yet ready for a production environment.
<<lessMain features:
- Lightweight. The binary jar is less than 17k at the moment, and has no
- exernal dependencies besides JDK 1.4.
- Multi Threaded. It handles multiple concurrent threads sharing a single
- Resolver instance.
- Easy to use and develop. The software does one thing, and the code is quite
- readable.
- Free software. Released under the GPL 3.0 license, this software can be used,
- modified and redistributed by anyone respecting the terms of the license. If you
- need other licensing options, please contact me.
Usage:
A snippet of code says more than lots of words:
Resolver r = new Resolver("ns.voxbiblia.se");
List l = r.resolve(new MXQuery("voxbiblia.se"));
for (int i = 0; i < l.size(); i++) {
MXRecord mx = (MXRecord)l.get(i);
System.out.println("mx: " + mx.getExchange() + " p: "+ mx.getPreference());
}
If you want to build and test the software you need to unpack the files named jresolver-*-src.tar.bz2 and jresolver-*-test.tar.bz2 and use Apache Ant with the build.xml file included. You may need to update the test cases with your dns server names.
Enhancements:
- Somewhat tested, but not yet ready for a production environment.
Download (0.033MB)
Added: 2007-07-17 License: GPL v3 Price:
829 downloads
XML::DOM::Lite 0.10
XML::DOM::Lite is a Lite Pure Perl XML DOM Parser Kit. more>>
XML::DOM::Lite is a Lite Pure Perl XML DOM Parser Kit.
SYNOPSIS
# Parser
use XML::DOM::Lite qw(Parser :constants);
$parser = Parser->new( %options );
$doc = Parser->parse($xmlstr);
$doc = Parser->parseFile(/path/to/file.xml);
# strip whitespace (can be about 30% faster)
$doc = Parser->parse($xml, whitespace => strip);
# All Nodes
$copy = $node->cloneNode($deep);
$nodeType = $node->nodeType;
$parent = $node->parentNode;
$name = $node->nodeName;
$xmlstr = $node->xml;
$owner = $node->ownerDocument;
# Element Nodes
$first = $node->firstChild;
$last = $node->lastChild;
$tag = $node->tagName;
$prev = $node->nextSibling;
$next = $node->previousSibling;
$node->setAttribute("foo", $bar);
$foo = $node->getAttribute("foo");
foreach my $attr (@{$node->attributes}) { # attributes as nodelist
# ... do stuff
}
$node->attributes->{foo} = "bar"; # or as hashref (overload)
$liveNodeList = $node->getElementsByTagName("child"); # deep
$node->insertBefore($newchild, $refchild);
$node->replaceChild($newchild, $refchild);
# Text Nodes
$nodeValue = $node->nodeValue;
$node->nodeValue("new text value");
# Processing Instruction Nodes
# CDATA Nodes
# Comments
$data = $node->nodeValue;
# NodeList
$item = $nodeList->item(42);
$index = $nodeList->nodeIndex($node);
$nlist->insertNode($newNode, $index);
$removed = $nlist->removeNode($node);
$length = $nlist->length; # OR scalar(@$nodeList)
# NodeIterator and NodeFilter
use XML::DOM::Lite qw(NodeIterator :constants);
$niter = NodeIterator->new($rootnode, SHOW_ELEMENT, {
acceptNode => sub {
my $n = shift;
if ($n->tagName eq wantme) {
return FILTER_ACCEPT;
} elsif ($n->tagName eq skipme) {
return FILTER_SKIP;
} else {
return FILTER_REJECT;
}
}
);
while (my $n = $niter->nextNode) {
# do stuff
}
# XSLT
use XML::DOM::Lite qw(Parser XSLT);
$parser = Parser->new( whitespace => strip );
$xsldoc = $parser->parse($xsl);
$xmldoc = $parser->parse($xml);
$output = XSLT->process($xmldoc, $xsldoc);
# XPath
use XML::DOM::Lite qw(XPath);
$result = XPath->evaluate(/path/to/*[@attr="value"], $contextNode);
# Document
$rootnode = $doc->documentElement;
$nodeWithId = $doc->getElementById("my_node_id");
$textnode = $doc->createTextNode("some text string");
$element = $doc->createElement("myTagName");
$docfrag = $doc->createDocumentFragment();
$xmlstr = $doc->xml;
$nlist = $doc->selectNodes(/xpath/expression);
$node = $doc->selectSingleNode(/xpath/expression);
# Serializer
use XML::DOM::Lite qw(Serializer);
$serializer = Serializer->new;
$xmlout = $serializer->serializeToString($node);
<<lessSYNOPSIS
# Parser
use XML::DOM::Lite qw(Parser :constants);
$parser = Parser->new( %options );
$doc = Parser->parse($xmlstr);
$doc = Parser->parseFile(/path/to/file.xml);
# strip whitespace (can be about 30% faster)
$doc = Parser->parse($xml, whitespace => strip);
# All Nodes
$copy = $node->cloneNode($deep);
$nodeType = $node->nodeType;
$parent = $node->parentNode;
$name = $node->nodeName;
$xmlstr = $node->xml;
$owner = $node->ownerDocument;
# Element Nodes
$first = $node->firstChild;
$last = $node->lastChild;
$tag = $node->tagName;
$prev = $node->nextSibling;
$next = $node->previousSibling;
$node->setAttribute("foo", $bar);
$foo = $node->getAttribute("foo");
foreach my $attr (@{$node->attributes}) { # attributes as nodelist
# ... do stuff
}
$node->attributes->{foo} = "bar"; # or as hashref (overload)
$liveNodeList = $node->getElementsByTagName("child"); # deep
$node->insertBefore($newchild, $refchild);
$node->replaceChild($newchild, $refchild);
# Text Nodes
$nodeValue = $node->nodeValue;
$node->nodeValue("new text value");
# Processing Instruction Nodes
# CDATA Nodes
# Comments
$data = $node->nodeValue;
# NodeList
$item = $nodeList->item(42);
$index = $nodeList->nodeIndex($node);
$nlist->insertNode($newNode, $index);
$removed = $nlist->removeNode($node);
$length = $nlist->length; # OR scalar(@$nodeList)
# NodeIterator and NodeFilter
use XML::DOM::Lite qw(NodeIterator :constants);
$niter = NodeIterator->new($rootnode, SHOW_ELEMENT, {
acceptNode => sub {
my $n = shift;
if ($n->tagName eq wantme) {
return FILTER_ACCEPT;
} elsif ($n->tagName eq skipme) {
return FILTER_SKIP;
} else {
return FILTER_REJECT;
}
}
);
while (my $n = $niter->nextNode) {
# do stuff
}
# XSLT
use XML::DOM::Lite qw(Parser XSLT);
$parser = Parser->new( whitespace => strip );
$xsldoc = $parser->parse($xsl);
$xmldoc = $parser->parse($xml);
$output = XSLT->process($xmldoc, $xsldoc);
# XPath
use XML::DOM::Lite qw(XPath);
$result = XPath->evaluate(/path/to/*[@attr="value"], $contextNode);
# Document
$rootnode = $doc->documentElement;
$nodeWithId = $doc->getElementById("my_node_id");
$textnode = $doc->createTextNode("some text string");
$element = $doc->createElement("myTagName");
$docfrag = $doc->createDocumentFragment();
$xmlstr = $doc->xml;
$nlist = $doc->selectNodes(/xpath/expression);
$node = $doc->selectSingleNode(/xpath/expression);
# Serializer
use XML::DOM::Lite qw(Serializer);
$serializer = Serializer->new;
$xmlout = $serializer->serializeToString($node);
Download (0.030MB)
Added: 2006-07-14 License: Perl Artistic License Price:
1199 downloads
SeoQuake 1.4.1
SeoQuake is a Firefox extension that allows a quick view of site parameters in the Search Engine Results Pages. more>>
SeoQuake is a Firefox extension that allows a quick view of site parameters in the Search Engine Results Pages.
(Google, Yahoo, MSN, Yandex, Rambler are supported)
SEObar indicate some SE-dependent parameters
Warning! Extension is using the advertisement block in results of search engines.
<<less(Google, Yahoo, MSN, Yandex, Rambler are supported)
SEObar indicate some SE-dependent parameters
Warning! Extension is using the advertisement block in results of search engines.
Download (0.082MB)
Added: 2007-03-30 License: MPL (Mozilla Public License) Price:
969 downloads
Apache Harmony
Apache Harmony is the Java SE project of the Apache Software Foundation. more>>
Apache Harmony is the Java SE project of the Apache Software Foundation. Please help us make this a world class, certified implementation of the Java Platform Standard Edition!
Apache Harmonys aim is to produce a large and healthy community of those interested in runtime platforms tasked with creation of :
A compatible, independent implementation of the Java SE 5 JDK under the Apache License v2.
A community-developed modular runtime (VM and class library) architecture.
We aim to support wide range of different platforms. The main criteria for whether a particular platform is supported or not is the involvement of people in running tests on regular base, reporting build status, finding and fixing bugs for that platform, and so on. We have a list of platforms we are actively maintaining at the moment.
Project Status
JRE and HDK snapshots available
JRE can run popular programs like Apache Tomcat, Eclipse, Maven, Derby, Ant
More than 95% of Java 5 API complete. (not compatible, just completed)
More than 1.25 Million Lines of Code
<<lessApache Harmonys aim is to produce a large and healthy community of those interested in runtime platforms tasked with creation of :
A compatible, independent implementation of the Java SE 5 JDK under the Apache License v2.
A community-developed modular runtime (VM and class library) architecture.
We aim to support wide range of different platforms. The main criteria for whether a particular platform is supported or not is the involvement of people in running tests on regular base, reporting build status, finding and fixing bugs for that platform, and so on. We have a list of platforms we are actively maintaining at the moment.
Project Status
JRE and HDK snapshots available
JRE can run popular programs like Apache Tomcat, Eclipse, Maven, Derby, Ant
More than 95% of Java 5 API complete. (not compatible, just completed)
More than 1.25 Million Lines of Code
Download (MB)
Added: 2007-01-10 License: The Apache License 2.0 Price:
1022 downloads
ExTiX 2.0
ExTiX is the Ultimate Linux System. more>>
This new version of ExTiX Linux Live DVD includes the 2.6.11 kernel by default, KDE 3.4.1, OpenOffice.org 2.0, KOffice, Emacs, Gimp 2.2.8, Qcad, AMSN, Kopete (Instant Messenger), Konversation (IRC Chat), aMule (filesharing - you will automatically be connected to the best servers), Firefox 1.0.6, Mozilla 1.7.8,Thunderbird 1.0.2, Kino, Xmovie,Totem Movie Player, Rosegarden4 (Music Editor), Bittornado, Wine, gFTP, Kbear and Vsftpd.
The exciting news, however, is the addition of UnionFS. UnionFS stacks your Knoppix ramdisk on top of the read-only filesystem on the DVD, the effect being that you can apt-get install, and otherwise modify all of the files on the running system as though they were all writeable.
Changes can be stored too (even on NTFS). The standard KDE-language is English. You can, however, easily change language (and keyboard layout) to Swedish, Danish, Finnish or Norwegian. (Go to Menu >> Control Center >> Country >> Keyboard Layouts).
<<lessThe exciting news, however, is the addition of UnionFS. UnionFS stacks your Knoppix ramdisk on top of the read-only filesystem on the DVD, the effect being that you can apt-get install, and otherwise modify all of the files on the running system as though they were all writeable.
Changes can be stored too (even on NTFS). The standard KDE-language is English. You can, however, easily change language (and keyboard layout) to Swedish, Danish, Finnish or Norwegian. (Go to Menu >> Control Center >> Country >> Keyboard Layouts).
Download (1479MB)
Added: 2005-09-21 License: GPL (GNU General Public License) Price:
1493 downloads
State Machine Compiler 4.4.0
State Machine Compiler takes a state machine stored in an .sm file and generates the state pattern classes. more>>
State Machine Compiler takes a state machine stored in an .sm file and generates the state pattern classes in nine programming languages.
Its features include default transitions, transition arguments, transition guards, push/pop transitions, and Entry/Exit actions. State Machine Compiler requires Java SE 1.4.1 or better.
Enhancements:
- This release cleans up C# and VB.net debug output using System.Diagnostics.Trace.
- It fixes a number of minor bugs.
<<lessIts features include default transitions, transition arguments, transition guards, push/pop transitions, and Entry/Exit actions. State Machine Compiler requires Java SE 1.4.1 or better.
Enhancements:
- This release cleans up C# and VB.net debug output using System.Diagnostics.Trace.
- It fixes a number of minor bugs.
Download (MB)
Added: 2007-02-19 License: MPL (Mozilla Public License) Price:
982 downloads
Fuse 0.8.0
Fuse project (the Free Unix Spectrum Emulator) was originally, and somewhat unsurprisingly, a Spectrum emulator for Unix. more>>
Fuse project (the Free Unix Spectrum Emulator) was originally, and somewhat unsurprisingly, a Spectrum emulator for Unix. However, it has now also been ported to Mac OS X, which may or may not count as a Unix variant depending on your advocacy position.
Main features:
- Working 16K, 48K, 128K, +2, +2A, +3, +3e, SE, TC2048, TC2068, TS2068, Pentagon 128 and Scorpion ZS 256 emulation, running at true Speccy speed on any computer youre likely to try it on.
- Support for loading from .tzx files.
- Sound (on systems supporting the Open Sound System, SDL or OpenBSD/Solariss /dev/audio).
- Kempston joystick emulation.
- Emulation of the various printers you could attach to the Spectrum.
- Support for the RZX input recording file format, including competition mode.
- Emulation of the DivIDE, Interface I, Kempston mouse, Spectrum +3e, ZXATASP and ZXCF interfaces.
<<lessMain features:
- Working 16K, 48K, 128K, +2, +2A, +3, +3e, SE, TC2048, TC2068, TS2068, Pentagon 128 and Scorpion ZS 256 emulation, running at true Speccy speed on any computer youre likely to try it on.
- Support for loading from .tzx files.
- Sound (on systems supporting the Open Sound System, SDL or OpenBSD/Solariss /dev/audio).
- Kempston joystick emulation.
- Emulation of the various printers you could attach to the Spectrum.
- Support for the RZX input recording file format, including competition mode.
- Emulation of the DivIDE, Interface I, Kempston mouse, Spectrum +3e, ZXATASP and ZXCF interfaces.
Download (1.2MB)
Added: 2007-04-18 License: GPL (GNU General Public License) Price:
920 downloads
Wiseman 0.5
Wiseman is an implementation of the WS-Management specification for the Java SE platform. more>>
Wiseman is an implementation of the WS-Management specification for the Java SE platform. Wiseman project scope includes the WS-Management specification and its dependent specifications, which can be found at http://www.dmtf.org/standards/wbem/wsman/.
The project requires Java SE 5+ or above, and is built on JAXB 2.0 and SAAJ 1.3 (part of the JAX-WS project). Ant scripts for standalone and Netbeans builds are supplied.
Enhancements:
- This is the first binary release, and it provides good coverage of version 1.0 of the DMTF WS Management specification.
- This release features a tutorial on creating and exposing resources, starting from your schema through generating a Java Web application.
- It also contains sample client and server applications.
<<lessThe project requires Java SE 5+ or above, and is built on JAXB 2.0 and SAAJ 1.3 (part of the JAX-WS project). Ant scripts for standalone and Netbeans builds are supplied.
Enhancements:
- This is the first binary release, and it provides good coverage of version 1.0 of the DMTF WS Management specification.
- This release features a tutorial on creating and exposing resources, starting from your schema through generating a Java Web application.
- It also contains sample client and server applications.
Download (7.5MB)
Added: 2006-09-20 License: The Apache License 2.0 Price:
1135 downloads
nPulse 0.54
nPULSE is a Web-based network monitoring package for Unix-like operating systems. more>>
nPULSE is a Web-based network monitoring package for Unix-like operating systems. It can quickly monitor up to thousands of sites/devices at a time on multiple ports. nPULSE is written in Perl and comes with its own (SSL optional) Web server for extra security.
Instead of re-inventing existing code, nPulse uses many excellent OpenSource (GPL) products including
Nmap www.insecure.org/nmap [required]
Perl www.cpan.org [required]
OpenSSL www.openssl.com [optional]
Net::SSLeay and Mail::Mailer www.cpan.org [optional]
Java Telnet App www.mud.de/se/jta [included]
A modified version of miniserv.pl www.webmin.com [included]
<<lessInstead of re-inventing existing code, nPulse uses many excellent OpenSource (GPL) products including
Nmap www.insecure.org/nmap [required]
Perl www.cpan.org [required]
OpenSSL www.openssl.com [optional]
Net::SSLeay and Mail::Mailer www.cpan.org [optional]
Java Telnet App www.mud.de/se/jta [included]
A modified version of miniserv.pl www.webmin.com [included]
Download (0.38MB)
Added: 2006-06-28 License: GPL (GNU General Public License) Price:
1216 downloads
frob 3D viewer 1.0
frob 3D viewer project is a 3D object point/wireframe/polygon viewer - called frob3dv for lack of a better name. more>>
frob 3D viewer project is a 3D object point/wireframe/polygon viewer - called frob3dv for lack of a better name.
I wrote this version mainly to learn c++. Also it was the first program I wrote after I got a PC (and put linux on it), but it has a long history. Many years ago I wrote a few stacks in Hypercard (on a Mac SE) for editing and displaying 3d shapes. I then ported it to modula-2 , using the free MacMETH compiler, then MOPS, a great free object-oriented programming language and application framework for the mac.
That is where it got most of its current class hierarchy. At that stage it was still only a wire-frame viewer. I then ported it to c++ for the macintosh using the Macintosh Programmers Workshop. When I wiped Windoze off my PC and put an operating system (linux) on it, I ported it to X and added the polygon drawing.
<<lessI wrote this version mainly to learn c++. Also it was the first program I wrote after I got a PC (and put linux on it), but it has a long history. Many years ago I wrote a few stacks in Hypercard (on a Mac SE) for editing and displaying 3d shapes. I then ported it to modula-2 , using the free MacMETH compiler, then MOPS, a great free object-oriented programming language and application framework for the mac.
That is where it got most of its current class hierarchy. At that stage it was still only a wire-frame viewer. I then ported it to c++ for the macintosh using the Macintosh Programmers Workshop. When I wiped Windoze off my PC and put an operating system (linux) on it, I ported it to X and added the polygon drawing.
Download (0.050MB)
Added: 2007-02-26 License: GPL (GNU General Public License) Price:
974 downloads
RemoteJ 0.2.0 Alpha
RemoteJ is an application for adding Bluetooth remote control capability to Sony Ericssons mobile phones. more>>
RemoteJ is an application for adding Bluetooth remote control capability to Sony Ericssons mobile phones such as the K750, W800, Z520, W600, W550, and W900 series.
RemoteJ project offers an extendable, configurable interface system that uses XML configuration files.
It can be used to control your music player, video player, or PC-TV using a menu appearing in your mobile phones menu.
Whats New in 0.1.6 Stable Release:
- Log cleanup (the info level is much cleaner).
- Some bugs have been fixed (global event triggering and event heaping).
- There is some Gnome flavor addition/cleanup in menu.xml.
- build.xml has been added for developers.
Whats New in 0.2.0 Alpha Development Release:
- SE t610 (and alike maybe: T68, T68i, T300, T310, T610, Z600, T230/T238/T226, T630, T290, K700i) support added (alpha testing phase)
<<lessRemoteJ project offers an extendable, configurable interface system that uses XML configuration files.
It can be used to control your music player, video player, or PC-TV using a menu appearing in your mobile phones menu.
Whats New in 0.1.6 Stable Release:
- Log cleanup (the info level is much cleaner).
- Some bugs have been fixed (global event triggering and event heaping).
- There is some Gnome flavor addition/cleanup in menu.xml.
- build.xml has been added for developers.
Whats New in 0.2.0 Alpha Development Release:
- SE t610 (and alike maybe: T68, T68i, T300, T310, T610, Z600, T230/T238/T226, T630, T290, K700i) support added (alpha testing phase)
Download (0.33MB)
Added: 2007-01-28 License: GPL (GNU General Public License) Price:
1003 downloads
SBaGen 1.4.3
SBaGen generates sounds that give an altered state of consciousness. more>>
SBaGen generates sounds that give an altered state of consciousness. The theory behind binaural beats is that if you apply slightly different frequency sine waves to each ear, a beating affect is created in the brain itself, due to the brains internal wiring.
If, in the presence of these tones, you relax and let your mind go, your mind will naturally synchronize with the beat frequency. In this way it is possible to tune the frequency of your brain waves to particular frequencies that you have selected, using of the four bands: Delta: deep sleep, Theta: dreaming and intuitive stuff, Alpha: awake, focussed inside, and Beta: awake, focussed outside.
It is also possible to produce mixtures of brain waves of different frequencies by mixing binaural tones, and in this way, with practice and experimentation, it is reportedly possible to achieve rather unusual states, such as out-of-body stuff, and more. See the books by Ken Eagle Feather, and the Monroe Institute site for more details. The Monroe Institute have apparently put 40 years of research into these techniques.
Centerpointe have also done a great deal of research into binaural beats, concentrating more on improving overall well-being and holistic functioning rather than reaching unusual states, and I recommend reading some of the articles on their site (look under "Site Map", for example their Special Report: "How The Holosync Technology Works" and their FAQ).
I should add that I have only read about the more advanced and unusual uses (OOBEs and so on). My own experiences have not reached quite that far, but still I feel that I have benefitted immensely from using these techniques over the last few years: from simply getting my head clear in confusing moments, to the energy boosts that come at times, to more general emotional clearing, and occasional very intense dreams (although not quite lucid).
So, SBAGEN is my utility, released as free software (under the GNU General Public Licence) for Linux, Windows, DOS and Mac OS X, that generates binaural tones in real-time according to a 24-hour programmed sequence read from a file. It can also be used to play a sequence on demand, rather than according to the clock, or to write a WAV file for playing later. Pink noise, MP3 and Ogg files (since version 1.2.0) may also be mixed with the binaural beats to provide background sounds. (Two files of randomly-looping river sounds are provided from version 1.4.0 onwards). This tool is ideal for anyone who wishes to experiment with these techniques and do research into this for themselves. (For those who would rather pay for a pre-packaged programme with support, I recommend taking a look at the Centerpointe site -- and see my disclaimer)
My original idea was to use this utility to play a programme of different tones throughout the night, hoping to improve dreaming and dream-recall, and then to bring myself up into Alpha rhythms to (hopefully) make a good start to the day. I am now using it more for shorter focussed sessions of about an hour, both during daytime and at night. However, other people have used this software in many different ways. For example, one person suffering constant pain from historical injuries appreciated the way that he could tune the frequencies very accurately to his needs to help him sleep better at night. Other more unusual uses have included: mixing the sounds in as part of musical compositions, and generating ambient sounds during live DJ sets or trance music.
Enhancements:
- Fixed problem when playing 7+ hour sequences with -SE or -L
- Warns properly if the WAV file limit of ~7 hours is exceeded, and truncates
<<lessIf, in the presence of these tones, you relax and let your mind go, your mind will naturally synchronize with the beat frequency. In this way it is possible to tune the frequency of your brain waves to particular frequencies that you have selected, using of the four bands: Delta: deep sleep, Theta: dreaming and intuitive stuff, Alpha: awake, focussed inside, and Beta: awake, focussed outside.
It is also possible to produce mixtures of brain waves of different frequencies by mixing binaural tones, and in this way, with practice and experimentation, it is reportedly possible to achieve rather unusual states, such as out-of-body stuff, and more. See the books by Ken Eagle Feather, and the Monroe Institute site for more details. The Monroe Institute have apparently put 40 years of research into these techniques.
Centerpointe have also done a great deal of research into binaural beats, concentrating more on improving overall well-being and holistic functioning rather than reaching unusual states, and I recommend reading some of the articles on their site (look under "Site Map", for example their Special Report: "How The Holosync Technology Works" and their FAQ).
I should add that I have only read about the more advanced and unusual uses (OOBEs and so on). My own experiences have not reached quite that far, but still I feel that I have benefitted immensely from using these techniques over the last few years: from simply getting my head clear in confusing moments, to the energy boosts that come at times, to more general emotional clearing, and occasional very intense dreams (although not quite lucid).
So, SBAGEN is my utility, released as free software (under the GNU General Public Licence) for Linux, Windows, DOS and Mac OS X, that generates binaural tones in real-time according to a 24-hour programmed sequence read from a file. It can also be used to play a sequence on demand, rather than according to the clock, or to write a WAV file for playing later. Pink noise, MP3 and Ogg files (since version 1.2.0) may also be mixed with the binaural beats to provide background sounds. (Two files of randomly-looping river sounds are provided from version 1.4.0 onwards). This tool is ideal for anyone who wishes to experiment with these techniques and do research into this for themselves. (For those who would rather pay for a pre-packaged programme with support, I recommend taking a look at the Centerpointe site -- and see my disclaimer)
My original idea was to use this utility to play a programme of different tones throughout the night, hoping to improve dreaming and dream-recall, and then to bring myself up into Alpha rhythms to (hopefully) make a good start to the day. I am now using it more for shorter focussed sessions of about an hour, both during daytime and at night. However, other people have used this software in many different ways. For example, one person suffering constant pain from historical injuries appreciated the way that he could tune the frequencies very accurately to his needs to help him sleep better at night. Other more unusual uses have included: mixing the sounds in as part of musical compositions, and generating ambient sounds during live DJ sets or trance music.
Enhancements:
- Fixed problem when playing 7+ hour sequences with -SE or -L
- Warns properly if the WAV file limit of ~7 hours is exceeded, and truncates
Download (0.67MB)
Added: 2006-07-20 License: GPL (GNU General Public License) Price:
1203 downloads
ASork Live Music Studio 0.01 Beta1
ASork Live Music Studio is a live cd with Debian GNU/Linux made of Morphix. more>>
ASork Live Music Studio is a live cd with Debian GNU/Linux made of Morphix. ASork Live Music Studio is usefull for recording music either as a complete sofware studio or as a part in a more complex setup.
Main features:
- hard disk recorder
- midi composition tools
- drum loop programs
- vocoder
- other real time effect processing tools
It can boot and run directly from CD-ROM or be installed to hard disk with morphixinstaller. This means that the Linux audio architecture such as jack and alsa is pre-configured and easy to install.
Root privileges
There is no default root password set on the CD therefore is sudo used for super user privileges. Execute these commands in a terminal:
sudo sh
passwd
exit
su
HDD-Install
Start a terminal and get root privileges, as described above. Execute the command for starting the installer:
morphixinstaller
Keyboard configuration in X
If you want to set your x-windows-system to use another keyboard layout execute "setxkbmap < Keyboad language abrevation >". To set X to use swedish keyboard execute:
setxkbmap se
Jack
Some audio applications does not communicate directly with the soundcard. In that case is most commonly Jack is used as an interface witch enables multiply applications to output sound simultaneously. You need to manually start jack before starting applications such as ardour and jack-rack. Start jack grapical control:
qjackctl
Start jack in a terminal:
jackd -d alsa
There is an shortcut in the menu named "Jack Control", this is a graphical interface for the jack server. You might need to configure jack from this program in order to make it run well on your system.
NVIDIA video card
If you have NVIDA card boot Sork with the boot option xmodule set to nvidia. From the grub boot menu select More Boot Options->NV driver.
VESA cards is handled in the same way; select More Boot Options->VESA driver in the grub boot loader.
<<lessMain features:
- hard disk recorder
- midi composition tools
- drum loop programs
- vocoder
- other real time effect processing tools
It can boot and run directly from CD-ROM or be installed to hard disk with morphixinstaller. This means that the Linux audio architecture such as jack and alsa is pre-configured and easy to install.
Root privileges
There is no default root password set on the CD therefore is sudo used for super user privileges. Execute these commands in a terminal:
sudo sh
passwd
exit
su
HDD-Install
Start a terminal and get root privileges, as described above. Execute the command for starting the installer:
morphixinstaller
Keyboard configuration in X
If you want to set your x-windows-system to use another keyboard layout execute "setxkbmap < Keyboad language abrevation >". To set X to use swedish keyboard execute:
setxkbmap se
Jack
Some audio applications does not communicate directly with the soundcard. In that case is most commonly Jack is used as an interface witch enables multiply applications to output sound simultaneously. You need to manually start jack before starting applications such as ardour and jack-rack. Start jack grapical control:
qjackctl
Start jack in a terminal:
jackd -d alsa
There is an shortcut in the menu named "Jack Control", this is a graphical interface for the jack server. You might need to configure jack from this program in order to make it run well on your system.
NVIDIA video card
If you have NVIDA card boot Sork with the boot option xmodule set to nvidia. From the grub boot menu select More Boot Options->NV driver.
VESA cards is handled in the same way; select More Boot Options->VESA driver in the grub boot loader.
Download (398.4MB)
Added: 2006-10-06 License: GPL (GNU General Public License) Price:
1119 downloads
Apt-get Install / Remove Packet 1.0
Apt-get Install / Remove Packet is a tool to install/remove packets with debian apt-get. more>>
Apt-get Install / Remove Packet is a tool to install/remove packets with debian apt-get.
About Apt-Get:
Advanced Packaging Tool, or APT, is a package management system used by Debian and its derivatives. APT was originally designed to work with .deb packages on Debian systems, but it has since been modified to work with RPM packages via apt-rpm, and to run on other operating systems such as Mac OS X (see fink). On systems with package management based on .deb, such as Debian, APT is a front-end for dpkg.
APT simplifies the process of installing and removing software on Unix systems, by automating the retrieval, (from the Internet, local network, or CD) the configuration, the compiling (sometimes) and the installation of software from APT sources.
There is no apt program per se; APT is a C++ library of functions that are used by several command line programs for dealing with packages, most notably apt-get and apt-cache.
APT front-ends can upgrade the system or specific packages. Packages can be installed or removed. When installing one or several packages, APT front-ends can list the dependencies of these packages, ask the administrator if packages recommended or suggested by newly installed packages should be installed too, automatically install dependencies and perform other operations on the systems packages to allow the installation of the packages. Similarly, to update one or several packages, front-ends can install, remove or update other packages.
APT is often hailed as one of Debians best features, giving Debian the reputation of being a "pain to install, but a joy to maintain", although with Debian 3.1 and its Debian-Installer, Debians installation might be too easy nowadays to keep this true.
<<lessAbout Apt-Get:
Advanced Packaging Tool, or APT, is a package management system used by Debian and its derivatives. APT was originally designed to work with .deb packages on Debian systems, but it has since been modified to work with RPM packages via apt-rpm, and to run on other operating systems such as Mac OS X (see fink). On systems with package management based on .deb, such as Debian, APT is a front-end for dpkg.
APT simplifies the process of installing and removing software on Unix systems, by automating the retrieval, (from the Internet, local network, or CD) the configuration, the compiling (sometimes) and the installation of software from APT sources.
There is no apt program per se; APT is a C++ library of functions that are used by several command line programs for dealing with packages, most notably apt-get and apt-cache.
APT front-ends can upgrade the system or specific packages. Packages can be installed or removed. When installing one or several packages, APT front-ends can list the dependencies of these packages, ask the administrator if packages recommended or suggested by newly installed packages should be installed too, automatically install dependencies and perform other operations on the systems packages to allow the installation of the packages. Similarly, to update one or several packages, front-ends can install, remove or update other packages.
APT is often hailed as one of Debians best features, giving Debian the reputation of being a "pain to install, but a joy to maintain", although with Debian 3.1 and its Debian-Installer, Debians installation might be too easy nowadays to keep this true.
Download (0.032MB)
Added: 2006-03-22 License: GPL (GNU General Public License) Price:
1319 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 se xmovie 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