the genomic sequence of legionella
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 747
UML::Sequence 0.07
UML::Sequence is a Perl module to render UML sequence diagrams, often by running the code. more>>
UML::Sequence is a Perl module to render UML sequence diagrams, often by running the code.
SYNOPSIS
use UML::Sequence;
my $tree = UML::Sequence->new(@methods, @outline, &parse_method);
print $tree->build_xml_sequence(Title);
To use this package, or see how to use it, see genericseq.pl and seq2svg.pl.
This class helps produce UML sequence diagrams. build_xml_sequence returns a string (suitable for printing to a file) which the seq2svg.pl script converts into svg.
To control the appearance of the sequence diagram, pass to the constructor:
1 a reference to an array containing the signatures you want to hear about or a reference to a hash whose keys are the signatures you want 2 a reference to an array containing the lines in the outline of calls 3 a reference to a sub which takes signatures and returns class and method names
To build the array references and supply the code reference consult UML::Sequence::SimpleSeq, UML::Sequence::JavaSeq, or UML::Sequence::PerlSeq. To see one way to call these look in the supplied genericseq script.
<<lessSYNOPSIS
use UML::Sequence;
my $tree = UML::Sequence->new(@methods, @outline, &parse_method);
print $tree->build_xml_sequence(Title);
To use this package, or see how to use it, see genericseq.pl and seq2svg.pl.
This class helps produce UML sequence diagrams. build_xml_sequence returns a string (suitable for printing to a file) which the seq2svg.pl script converts into svg.
To control the appearance of the sequence diagram, pass to the constructor:
1 a reference to an array containing the signatures you want to hear about or a reference to a hash whose keys are the signatures you want 2 a reference to an array containing the lines in the outline of calls 3 a reference to a sub which takes signatures and returns class and method names
To build the array references and supply the code reference consult UML::Sequence::SimpleSeq, UML::Sequence::JavaSeq, or UML::Sequence::PerlSeq. To see one way to call these look in the supplied genericseq script.
Download (0.12MB)
Added: 2007-04-23 License: Perl Artistic License Price:
916 downloads
Chart::Sequence 0.002
Chart::Sequence is a sequence Perl class. more>>
Chart::Sequence is a sequence Perl class.
SYNOPSIS
use Chart::Sequence;
my $s = Chart::Sequence->new(
Nodes => [qw( A B C )],
Messages => [
[ A => B => "Message 1" ],
[ B => A => "Ack 1" ],
[ B => C => "Message 2" ],
],
);
# or #
my $s = Chart::Sequence->new(
SeqMLInput => "foo.seqml",
);
my $r = Chart::Sequence::Imager->new;
my $png => $r->render( $s => "png" );
$r->render_to_file( $s => "foo.png" );
<<lessSYNOPSIS
use Chart::Sequence;
my $s = Chart::Sequence->new(
Nodes => [qw( A B C )],
Messages => [
[ A => B => "Message 1" ],
[ B => A => "Ack 1" ],
[ B => C => "Message 2" ],
],
);
# or #
my $s = Chart::Sequence->new(
SeqMLInput => "foo.seqml",
);
my $r = Chart::Sequence::Imager->new;
my $png => $r->render( $s => "png" );
$r->render_to_file( $s => "foo.png" );
Download (0.015MB)
Added: 2007-07-27 License: Perl Artistic License Price:
819 downloads
Bio::Factory::SequenceFactoryI 1.4
Bio::Factory::SequenceFactoryI is a Perl interface that allows for generic building of sequences in factories. more>>
Bio::Factory::SequenceFactoryI is a Perl interface that allows for generic building of sequences in factories which create sequences (like SeqIO).
SYNOPSIS
# do not use this object directly it is an interface # get a Bio::Factory::SequenceFactoryI object like
use Bio::Seq::SeqFactory;
my $seqbuilder = new Bio::Seq::SeqFactory(type => Bio::PrimarySeq);
my $seq = $seqbuilder->create(-seq => ACTGAT,
-display_id => exampleseq);
print "seq is a ", ref($seq), "n";
A generic way to build Sequence objects via a pluggable factory. This reduces the amount of code that looks like
if( $type eq Bio::PrimarySeq ) { ... }
elsif( $type eq Bio::Seq::RichSeq ) { ... }
<<lessSYNOPSIS
# do not use this object directly it is an interface # get a Bio::Factory::SequenceFactoryI object like
use Bio::Seq::SeqFactory;
my $seqbuilder = new Bio::Seq::SeqFactory(type => Bio::PrimarySeq);
my $seq = $seqbuilder->create(-seq => ACTGAT,
-display_id => exampleseq);
print "seq is a ", ref($seq), "n";
A generic way to build Sequence objects via a pluggable factory. This reduces the amount of code that looks like
if( $type eq Bio::PrimarySeq ) { ... }
elsif( $type eq Bio::Seq::RichSeq ) { ... }
Download (4.7MB)
Added: 2006-09-02 License: Perl Artistic License Price:
1147 downloads
Sequence Analysis 1.6.0
Sequence Analysis project is a collage of coding projects. more>>
Sequence Analysis project is a collage of coding projects which I have written over the past several years for various clients in my work as a bioinformatics consultant.
These clients have graciously allowed me to release these works into the public domain as freeware for Macintosh OS X in order to promote the platform and to encourage migration from Classic.
The upper window panel can hold several sequences, which are both editable and selectable. The tabs in the lower analysis panel try to keep up with the current sequence selection to provide immediate feedback. The selection is used in some modules as only the portion being analyzed for other modules i.e. Digest is used to determine if enzymes cut in the in or outside of the selection.
Most commonly available sequence formats have been reverse engineered. You can also access a sequences from the NCBI via its GID or UID. This currently cannot be done from behind a firewall.
Most of the analyses are simple enough that they are obvious to use, Composition, pI. Others could stand some documenation i.e. Pairwise and Primer Design. The Publish tab uses a string to control the layout. Click on the Legend button for some help.
<<lessThese clients have graciously allowed me to release these works into the public domain as freeware for Macintosh OS X in order to promote the platform and to encourage migration from Classic.
The upper window panel can hold several sequences, which are both editable and selectable. The tabs in the lower analysis panel try to keep up with the current sequence selection to provide immediate feedback. The selection is used in some modules as only the portion being analyzed for other modules i.e. Digest is used to determine if enzymes cut in the in or outside of the selection.
Most commonly available sequence formats have been reverse engineered. You can also access a sequences from the NCBI via its GID or UID. This currently cannot be done from behind a firewall.
Most of the analyses are simple enough that they are obvious to use, Composition, pI. Others could stand some documenation i.e. Pairwise and Primer Design. The Publish tab uses a string to control the layout. Click on the Legend button for some help.
Download (2.3MB)
Added: 2006-01-18 License: Freeware Price:
1377 downloads
Off-the-Record Messaging 3.1.0
Off-the-Record Messaging is a Pidgin plugin that allows you to have private conversations over instant messaging. more>>
Off-the-Record Messaging is a Pidgin plugin that allows you to have private conversations over instant messaging by providing:
Encryption
No one else can read your instant messages.
Authentication
You are assured the correspondent is who you think it is.
Deniability
The messages you send do not have digital signatures that are checkable by a third party. Anyone can forge messages after a conversation to make them look like they came from you. However, during a conversation, your correspondent is assured
the messages he sees are authentic and unmodified.
Perfect forward secrecy
If you lose control of your private keys, no previous conversation is compromised.
Enhancements:
- Translations for English, Dutch, Spanish, French, Slovak
- Added option to not log OTR conversations
- Large messages are now fragmented transparently instead of failing
- Removed "view secure session id" and "verify fingerprint" options from the OTR button menu. Added "authenticate buddy" option in its place. This new option allows you to authenticate your buddies by entering some secret that only the two of you know, rather than by using a long user-unfriendly sequence of hex characters. [The old "verify fingerprint" dialog is still available via an "Advanced..." button from the new "authenticate buddy" dialog.]
<<lessEncryption
No one else can read your instant messages.
Authentication
You are assured the correspondent is who you think it is.
Deniability
The messages you send do not have digital signatures that are checkable by a third party. Anyone can forge messages after a conversation to make them look like they came from you. However, during a conversation, your correspondent is assured
the messages he sees are authentic and unmodified.
Perfect forward secrecy
If you lose control of your private keys, no previous conversation is compromised.
Enhancements:
- Translations for English, Dutch, Spanish, French, Slovak
- Added option to not log OTR conversations
- Large messages are now fragmented transparently instead of failing
- Removed "view secure session id" and "verify fingerprint" options from the OTR button menu. Added "authenticate buddy" option in its place. This new option allows you to authenticate your buddies by entering some secret that only the two of you know, rather than by using a long user-unfriendly sequence of hex characters. [The old "verify fingerprint" dialog is still available via an "Advanced..." button from the new "authenticate buddy" dialog.]
Download (0.39MB)
Added: 2007-08-10 License: GPL (GNU General Public License) Price:
807 downloads
Proc::BackOff::Linear 0.01
Proc::BackOff::Linear is directly inherited from and then modified by overloading the calculate_back_off object method. more>>
Proc::BackOff::Linear is a generic module meant to be directly inherited from and then modified by overloading the calculate_back_off object method.
SYNOPSIS
Usage:
use Proc::BackOff::Linear;
my $obj = Proc::BackOff::Linear->new( { $slope => 5, x => count, b => 0 );
# sequence would be
# y = slope * x + b;
# 1st failure : 5 * count + b = 5 * 1 + 0 = 5
# 2nd failure : 5 * 2 + 0 = 10
# 3nd failure : 5 * 3 + 0 = 10
Overloaded Methods
new()
Check for variables being set:
Required: slope. B defaults to 0 x defaults to count
calculate_back_off()
Returns the new back off value.
<<lessSYNOPSIS
Usage:
use Proc::BackOff::Linear;
my $obj = Proc::BackOff::Linear->new( { $slope => 5, x => count, b => 0 );
# sequence would be
# y = slope * x + b;
# 1st failure : 5 * count + b = 5 * 1 + 0 = 5
# 2nd failure : 5 * 2 + 0 = 10
# 3nd failure : 5 * 3 + 0 = 10
Overloaded Methods
new()
Check for variables being set:
Required: slope. B defaults to 0 x defaults to count
calculate_back_off()
Returns the new back off value.
Download (0.006MB)
Added: 2007-07-28 License: Perl Artistic License Price:
819 downloads
SDE for NetBeans Community Edition 4.1
SDE for NetBeans is a UML modeling environment tightly integrated with NetBeans. more>>
SDE for NetBeans is a UML modeling environment tightly integrated with NetBeans.
It lets you draw all types of UML diagrams (use case diagram, class diagram, sequence diagram, activity diagram, etc.) in NetBeans, reverse source code (Java, C++, XML, XML Schema, CORBA IDL, etc.) to UML models, and generate Java source from UML diagrams.
SDE for NetBeans Community Edition features a Rational Rose importer, an XMI importer, HTML/PDF documentation generators, and plug-in and template support.
Enhancements:
- Branch and tag capability was added to the VP Teamwork Server with Subversion and CVS repository integration.
- This allows different modeling projects to be run in parallel while keeping the release quality project stable in the trunk.
- A user interface designer was introduced for creating screen mock-ups in the early stages of a software development project.
- Usability of the sequence diagram was increased.
- There were also a number of enhancements for various other features.
<<lessIt lets you draw all types of UML diagrams (use case diagram, class diagram, sequence diagram, activity diagram, etc.) in NetBeans, reverse source code (Java, C++, XML, XML Schema, CORBA IDL, etc.) to UML models, and generate Java source from UML diagrams.
SDE for NetBeans Community Edition features a Rational Rose importer, an XMI importer, HTML/PDF documentation generators, and plug-in and template support.
Enhancements:
- Branch and tag capability was added to the VP Teamwork Server with Subversion and CVS repository integration.
- This allows different modeling projects to be run in parallel while keeping the release quality project stable in the trunk.
- A user interface designer was introduced for creating screen mock-ups in the early stages of a software development project.
- Usability of the sequence diagram was increased.
- There were also a number of enhancements for various other features.
Download (89.7MB)
Added: 2007-08-15 License: Free for non-commercial use Price:
806 downloads
UML::Sequence::JavaSeq 0.07
UML::Sequence::JavaSeq is a Perl module for use with genericseq.pl script, works on compiled Java programs. more>>
UML::Sequence::JavaSeq is a Perl module for use with genericseq.pl script, works on compiled Java programs.
SYNOPSIS
genericseq.pl UML::Sequence::JavaSeq Hello.methods Hello > Hello.xml
seq2svg.pl Hello.xml > Hello.svg
OR
genericseq.pl UML::Sequence::JavaSeq Hello.methods Hello | seq2svg.pl > Hello.svg
This file depends on UML::Sequence::SimpleSeq and a Java tool called Seq.java. The later produces an outline of the calls to methods named in Hello.methods. The former provides methods UML::Sequence needs to produce an xml sequence. Look in the provided Hello.methods to see what options you have for controlling output.
For this class to work, you must have Seq.class (and its friends) and tools.jar (the one containing the the jpda) in your class path. Your jpda must be happy. (The jpda is the Java Platform Debugger Architecture. It ships with java 1.3.)
grab_outline_text
Call this method through the class name with the method file, the class you want to sequence, and any arguments that classs main method needs. Returns an outline you can pass to UML::Sequence::SimpleSeq->grab_methods and to the UML::Sequence constructor.
<<lessSYNOPSIS
genericseq.pl UML::Sequence::JavaSeq Hello.methods Hello > Hello.xml
seq2svg.pl Hello.xml > Hello.svg
OR
genericseq.pl UML::Sequence::JavaSeq Hello.methods Hello | seq2svg.pl > Hello.svg
This file depends on UML::Sequence::SimpleSeq and a Java tool called Seq.java. The later produces an outline of the calls to methods named in Hello.methods. The former provides methods UML::Sequence needs to produce an xml sequence. Look in the provided Hello.methods to see what options you have for controlling output.
For this class to work, you must have Seq.class (and its friends) and tools.jar (the one containing the the jpda) in your class path. Your jpda must be happy. (The jpda is the Java Platform Debugger Architecture. It ships with java 1.3.)
grab_outline_text
Call this method through the class name with the method file, the class you want to sequence, and any arguments that classs main method needs. Returns an outline you can pass to UML::Sequence::SimpleSeq->grab_methods and to the UML::Sequence constructor.
Download (0.12MB)
Added: 2007-06-05 License: Perl Artistic License Price:
872 downloads
GNU Superoptimizer 2.5
GNU Superoptimizer is a project that uses an approach to finding the shortest instruction sequence for a given function. more>>
GNU Superoptimizer is a project that uses an approach to finding the shortest instruction sequence for a given function.
The superoptimizer is a function sequence generator that uses an exhaustive
generate-and-test approach to finding the shortest instruction sequence for
a given function. You have to tell the superoptimizer which function and
which CPU you want to generate code for, and how many instructions you can
accept.
The superoptimizer cant generate very long sequences, unless you have a
very fast computer or very much spare time. The time complexity of the used
algorithm is approximately
2n
O(m n )
where m is the number of available instructions on the architecture and n is
the shortest sequence for the goal function. The practical sequence length
limit depends on the target architecture and goal function arity; In most
cases it is about 5, but for a rich instruction set as the HPPA it is just
4. The longest sequence ever generated was for the MC68020 and 7
instructions long. It took several weeks to generate it...
The superoptimizer cant guarantee that it finds the best possible
instruction sequences for all possible goal functions. For example, it
doesnt even try to include immediate constants (other that -1, 0, +1, and
the smallest negative and biggest positive numbers) in the sequences.
Other reasons why not optimal sequences might be found is that not all
instructions are included, not even in their register-only form. Also, some
instructions included might not be correctly simulated. If you encounter
any of these problems, please report them to the address below.
WARNING! The generated sequences might be incorrect with a very small
probability. Always make sure a sequence is correct before using it. So
far, I have never encountered any incorrect sequences. If you find one,
please let me know about it!
Having said this, note that the superoptimizer practically always finds
optimal and correct sequences for functions that depend on registers only.
Enhancements:
- Delete unused variable tot_bits.
- Make state1 have char type.
- Use random() on alpha, since srand48 doesnt work there.
- Return small numbers with high probability.
<<lessThe superoptimizer is a function sequence generator that uses an exhaustive
generate-and-test approach to finding the shortest instruction sequence for
a given function. You have to tell the superoptimizer which function and
which CPU you want to generate code for, and how many instructions you can
accept.
The superoptimizer cant generate very long sequences, unless you have a
very fast computer or very much spare time. The time complexity of the used
algorithm is approximately
2n
O(m n )
where m is the number of available instructions on the architecture and n is
the shortest sequence for the goal function. The practical sequence length
limit depends on the target architecture and goal function arity; In most
cases it is about 5, but for a rich instruction set as the HPPA it is just
4. The longest sequence ever generated was for the MC68020 and 7
instructions long. It took several weeks to generate it...
The superoptimizer cant guarantee that it finds the best possible
instruction sequences for all possible goal functions. For example, it
doesnt even try to include immediate constants (other that -1, 0, +1, and
the smallest negative and biggest positive numbers) in the sequences.
Other reasons why not optimal sequences might be found is that not all
instructions are included, not even in their register-only form. Also, some
instructions included might not be correctly simulated. If you encounter
any of these problems, please report them to the address below.
WARNING! The generated sequences might be incorrect with a very small
probability. Always make sure a sequence is correct before using it. So
far, I have never encountered any incorrect sequences. If you find one,
please let me know about it!
Having said this, note that the superoptimizer practically always finds
optimal and correct sequences for functions that depend on registers only.
Enhancements:
- Delete unused variable tot_bits.
- Make state1 have char type.
- Use random() on alpha, since srand48 doesnt work there.
- Return small numbers with high probability.
Download (0.076MB)
Added: 2007-02-28 License: GPL (GNU General Public License) Price:
969 downloads
ReZound 0.12.0 beta
ReZound aims to be a stable, open source, and graphical audio file editor primarily for but not limited to the Linux OS. more>>
ReZound aims to be a stable, open source, and graphical audio file editor primarily for but not limited to the Linux operating system.
Enhancements:
- Implemented Macros. Now, if you often repeat a sequence of edits, you can record this sequence, and play them back unattendedly on different files.
- Implemented user-definable key-bindings. Now a user can customize what he wants keys on the keyboard to do in ReZound.
- Added a new Remaster action which can "shorten quiet areas". That is, it finds quiet areas and automatically shortens these by some given amount. Its great for
- Enhanced the Burn To CD action. More feedback to the user.
- Included a new Finnish thanks to Uffek
- There is new M column in the loaded sound list to indicate which files are in a "modified" state.
- Updated other translation files
- Compiles with latest FOX releases
- Several other bug fixes and cosmetic tweaks
<<lessEnhancements:
- Implemented Macros. Now, if you often repeat a sequence of edits, you can record this sequence, and play them back unattendedly on different files.
- Implemented user-definable key-bindings. Now a user can customize what he wants keys on the keyboard to do in ReZound.
- Added a new Remaster action which can "shorten quiet areas". That is, it finds quiet areas and automatically shortens these by some given amount. Its great for
- Enhanced the Burn To CD action. More feedback to the user.
- Included a new Finnish thanks to Uffek
- There is new M column in the loaded sound list to indicate which files are in a "modified" state.
- Updated other translation files
- Compiles with latest FOX releases
- Several other bug fixes and cosmetic tweaks
Download (1.7MB)
Added: 2005-08-17 License: GPL (GNU General Public License) Price:
1529 downloads
Easy Game Library 20040323
Easy Game Library is a C++ class libary designed for quick and easy development of games. more>>
Easy Game Library is library of C++ classes designed to make game programming easier. Now it consists only of easy_sprite library which consists of classes for using sprites.
It should compile on different platforms because it uses SDL library as backend.
Installation:
To install run such sequence of commands:
make - Compiles library and tests
make install - Installs library and tests
<<lessIt should compile on different platforms because it uses SDL library as backend.
Installation:
To install run such sequence of commands:
make - Compiles library and tests
make install - Installs library and tests
Download (0.057MB)
Added: 2005-09-30 License: LGPL (GNU Lesser General Public License) Price:
1488 downloads
VLinux Bioinformatics Workbench 1.0
VLinux Bioinformatics workbench is a Linux distribution for Bioinformatics. more>>
VLinux Bioinformatics workbench is a Linux distribution for Bioinformatics. It is easy to use, no installation required, CD-based distribution based on Knoppix 3.3.
VLinux Bioinformatics Workbench includes a variety of sequence and structure analysis packages. It is an Open source product released under the GNU GPL License.
Packages:
- EMBOSS
- GDE
- Rasmol
- PyMOL
- GROMACS
- Phylip
- Arka/Genpak
- ClustalW/ClustalX
- TCoffee
- Seaview
- Glimmer
- Mummer
- Garlic
- Ramachandran Plot viewer
- Primer
- XMolCalc
- Babel, NJPlot
<<lessVLinux Bioinformatics Workbench includes a variety of sequence and structure analysis packages. It is an Open source product released under the GNU GPL License.
Packages:
- EMBOSS
- GDE
- Rasmol
- PyMOL
- GROMACS
- Phylip
- Arka/Genpak
- ClustalW/ClustalX
- TCoffee
- Seaview
- Glimmer
- Mummer
- Garlic
- Ramachandran Plot viewer
- Primer
- XMolCalc
- Babel, NJPlot
Download (499MB)
Added: 2005-12-28 License: GPL (GNU General Public License) Price:
790 downloads
Folder Extension Wizard 1.0.1
Folder Extension Wizard provides a small extension that Loads extensions from folders (unpacked xpi files). more>>
Folder Extension Wizard provides a small extension that Loads extensions from folders (unpacked xpi files).
A wizard is a user interface element where the user is led through a sequence of dialogs. Unlike most modern user interface paradigms, the user is forced to perform the task in a specific sequence.
However, for complex or infrequently performed tasks where the user is unfamiliar with the steps involved, it may make it easier for them to perform the task. In some open source software, wizards are called Druids.
<<lessA wizard is a user interface element where the user is led through a sequence of dialogs. Unlike most modern user interface paradigms, the user is forced to perform the task in a specific sequence.
However, for complex or infrequently performed tasks where the user is unfamiliar with the steps involved, it may make it easier for them to perform the task. In some open source software, wizards are called Druids.
Download (0.007MB)
Added: 2007-05-01 License: MPL (Mozilla Public License) Price:
909 downloads
libGenome 1.0.0
libGenome is a freely available toolkit for developing bioinformatic related software in C++. more>>
libGenome is a freely available toolkit for developing bioinformatic related software in C++.
libGenome library is intended to take the hassle out of performing common tasks on genetic sequence and annotation data.
libGenome is a development library written in ANSI C++.
It is known to compile on the following platforms:
- Linux using the gcc compiler
- Solaris using the gcc compiler
- Windows using Metrowerks CodeWarrior
- MacOS 9 using Metrowerks CodeWarrior
- OpenBSD using the gcc compiler
- Cygwin using the gcc compiler
libGenome can access sequence data in several different file formats:
- Reads and writes Multi-FastA files, designated by a .fas file extension
- Reads and writes GenBank flat file database entries
- Reads DNAStar .SEQ file format
- Reads and writes raw sequence data
- Reads ABI file format
libGenome can manipulate sequence data in the following ways:
- Append
- Truncate
- Erase subsequences
- Insert subsequences
- Reverse
- Complement
- Ambiguity sensitive and insensitive comparison
- Translate DNA to RNA, DNA to Protein, RNA to DNA, RNA to Protein, and vice versa.
libGenome has a well developed system for accessing annotation data in GenBank records.
<<lesslibGenome library is intended to take the hassle out of performing common tasks on genetic sequence and annotation data.
libGenome is a development library written in ANSI C++.
It is known to compile on the following platforms:
- Linux using the gcc compiler
- Solaris using the gcc compiler
- Windows using Metrowerks CodeWarrior
- MacOS 9 using Metrowerks CodeWarrior
- OpenBSD using the gcc compiler
- Cygwin using the gcc compiler
libGenome can access sequence data in several different file formats:
- Reads and writes Multi-FastA files, designated by a .fas file extension
- Reads and writes GenBank flat file database entries
- Reads DNAStar .SEQ file format
- Reads and writes raw sequence data
- Reads ABI file format
libGenome can manipulate sequence data in the following ways:
- Append
- Truncate
- Erase subsequences
- Insert subsequences
- Reverse
- Complement
- Ambiguity sensitive and insensitive comparison
- Translate DNA to RNA, DNA to Protein, RNA to DNA, RNA to Protein, and vice versa.
libGenome has a well developed system for accessing annotation data in GenBank records.
Download (0.44MB)
Added: 2006-03-22 License: GPL (GNU General Public License) Price:
1322 downloads
Versatile Encoder 0.8p2
Versatile Encoder allows you to encode your own videos into good quality mpeg4 or h264. more>>
Versatile Encoder allows you to encode your own videos into good quality mpeg4 or h264. The input can be a sequence of files (as generated by blender), a file (if you want to recompress something) or a DVD/VCD (if you need to backup some movie).
This piece of software tries to guess good defaults and to help the user in his choices. It works at least under Windows and Linux, the coding platform is Linux.
It should work without a hassle under all BSD variants and probably under MacOSX too, report me if you get it working somewhere else.
<<lessThis piece of software tries to guess good defaults and to help the user in his choices. It works at least under Windows and Linux, the coding platform is Linux.
It should work without a hassle under all BSD variants and probably under MacOSX too, report me if you get it working somewhere else.
Download (0.092MB)
Added: 2006-07-10 License: BSD License Price:
1207 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 the genomic sequence of legionella 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