Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.054.559 Times

Flac Algorithm software
Filter: All | Freeware | Demo
 

Flac Algorithm

< 1 2 3 4 5 > 
Added: October 08, 2010 | Visits: 1.258

Optimization Algorithm Toolkit Optimization Algorithm Toolkit is a workbench and toolkit for developing, evaluating, and playing with classical and state-of-the-art optimization algorithms on standard benchmark problem domains; including reference algorithm implementations, graphing, visualizations and much more. The project...



Platforms: *nix

License: Freeware Size: 6.5 MB Download (123): Optimization Algorithm Toolkit Download

Added: July 18, 2010 | Visits: 807

Algorithm::Networksort Algorithm::Networksort can create inline comparisons for sorting. SYNOPSIS use Algorithm::Networksort qw(:all); my $inputs = 4; # # Generate the network (a list of comparators). # my @network = nw_comparators($inputs); # # Print the list, and print the graph of the list. # print...





Platforms: *nix

License: Freeware Size: 15.36 KB Download (89): Algorithm::Networksort Download

Added: July 09, 2010 | Visits: 964

Algorithm::SocialNetwork Algorithm::SocialNetwork is a social network analysis. SYNOPSIS use Graph::Undirected; use Algorithm::SocialNetwork; my $G = Graph::Undirected->new(); $G->add_edges([qw(a b)], [qw(b c)]); my $algo = Algorithm::SocialNetwork->new(graph => $G3); my $BC = $algo->BetweenessCentrality(); #...


Platforms: *nix

License: Freeware Size: 9.22 KB Download (104): Algorithm::SocialNetwork Download

Added: February 07, 2010 | Visits: 783

Algorithm::Diff Algorithm::Diff is a Perl module to compute `intelligent differences between two files / lists. SYNOPSIS require Algorithm::Diff; # This example produces traditional diff output: my $diff = Algorithm::Diff->new( @seq1, @seq2 ); $diff->Base( 1 ); # Return line numbers, not indices...


Platforms: *nix

License: Freeware Size: 33.79 KB Download (93): Algorithm::Diff Download

Added: June 17, 2010 | Visits: 3.054

Wav and Flac conversion FLAC is a lossless compression method for audio files. Using it, one is able to reduce the filesize and keep the same audio quality as a regular WAV file (CD quality). The FLAC format is open source, and can be read without any problem by such applications as Amarok or Kaffeine. Wav and Flac...


Platforms: *nix

License: Freeware Download (822): Wav and Flac conversion Download

Added: October 05, 2010 | Visits: 804

Algorithm::SixDegrees Algorithm::SixDegrees is a Perl module that can find a path through linked elements in a set. SYNOPSIS use Algorithm::SixDegrees; my $sd1 = Algorithm::SixDegrees->new(); $sd1->data_source( actors => &starred_in ); $sd1->data_source( movies => &stars_of ); @elems = $sd1->make_link(actors,...


Platforms: *nix

License: Freeware Size: 11.26 KB Download (90): Algorithm::SixDegrees Download

Added: July 07, 2010 | Visits: 1.318

Algorithm::Line::Bresenham Algorithm::Line::Bresenham is a Perl module that contains a simple pixellated line-drawing algorithm. SYNOPSIS use Algorithm::Line::Bresenham qw/line/; my @points = line(3,3 => 5,0); # returns the list: [3,3], [4,2], [4,1], [5,0] line(3,3 => 5,0, &draw_line); # calls draw_line on each...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (134): Algorithm::Line::Bresenham Download

Added: October 15, 2010 | Visits: 875

Algorithm::C3 Algorithm::C3 is a module for merging hierarchies using the C3 algorithm. SYNOPSIS use Algorithm::C3; # merging a classic diamond # inheritence graph like this: # # # / # # / # my @merged = Algorithm::C3::merge( D, sub { # extract the ISA array # from the package no...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (130): Algorithm::C3 Download

Released: July 10, 2012  |  Added: July 10, 2012 | Visits: 1.439

Algorithm::Pair::Best Algorithm::Pair::Best is a Perl module to select pairings (designed for Go tournaments, but can be used for anything, really). SYNOPSIS use Algorithm::Pair::Best; my $pair = Algorithm::Pair::Best->new( ? options ? ); $pair->add( item, ? item, ... ? ); @pairList = $pair->pick( ? $window...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (112): Algorithm::Pair::Best Download

Added: February 03, 2010 | Visits: 845

Algorithm::SkipList Algorithm::SkipList is a Perl implementation of skip lists. SYNOPSIS my $list = new Algorithm::SkipList(); $list->insert( key1, value ); $list->insert( key2, another value ); $value = $list->find(key2); $list->delete(key1); This is an implementation of skip lists in Perl. Skip...


Platforms: *nix

License: Freeware Size: 30.72 KB Download (117): Algorithm::SkipList Download

Added: January 01, 2010 | Visits: 926

Algorithm::ScheduledPath Algorithm::ScheduledPath is a Perl module that helps you to find scheduled paths in a directed graph. SYNOPSIS use Algorithm::ScheduledPath; use Algorithm::ScheduledPath::Path; $graph = new Algorithm::ScheduledPath(); $graph->add_edge( { path_id => R, origin => A, depart_time => 1,...


Platforms: *nix

License: Freeware Size: 20.48 KB Download (90): Algorithm::ScheduledPath Download

Added: August 20, 2010 | Visits: 1.123

POE::Component::Enc::Flac POE::Component::Enc::Flac is a POE component to wrap FLAC encoder flac. SYNOPSIS use POE qw(Component::Enc::Flac); $encoder1 = POE::Component::Enc::Flac->new(); $encoder1->enc(input => "/tmp/track03.wav"); $encoder2 = POE::Component::Enc::Flac->new( parent => mainSession, priority =>...


Platforms: *nix

License: Freeware Size: 737.28 KB Download (140): POE::Component::Enc::Flac Download

Added: November 04, 2010 | Visits: 940

Algorithm::Munkres Algorithm::Munkres is a Perl extension for Munkres solution to classical Assignment problem for square and rectangular matrices. This module extends the solution of Assignment problem for square matrices to rectangular matrices by padding zeros. Thus a rectangular matrix is converted to square...


Platforms: *nix

License: Freeware Size: 9.22 KB Download (100): Algorithm::Munkres Download

Added: March 20, 2010 | Visits: 2.257

Algorithm::LUHN Algorithm::LUHN is a Perl module to calculate the modulus 10 double add double checksum. SYNOPSIS use Algorithm::LUHN qw/check_digit is_valid/; $c = check_digit("43881234567"); print "It worksn" if is_valid("43881234567$c"); $c = check_digit("A2C4E6G8"); # this will cause an error...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (510): Algorithm::LUHN Download

Added: May 02, 2010 | Visits: 1.059

Algorithm::AhoCorasick::SearchMachine Algorithm::AhoCorasick::SearchMachine provides an implementation and low-level interface of Algorithm::AhoCorasick. Feeds input to the state machine. First (after the instance) argument of this method is the input text (which can be empty, in which case the method doesnt do anything), second...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (114): Algorithm::AhoCorasick::SearchMachine Download

Added: February 09, 2010 | Visits: 897

Algorithm::AhoCorasick Algorithm::AhoCorasick provides efficient search for multiple strings. Aho-Corasick is a classic (1975) algorithm for locating elements of a finite set of strings within an input text. It constructs a finite state machine from a list of keywords, then uses the machine to locate all occurrences...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (143): Algorithm::AhoCorasick Download

Added: February 01, 2010 | Visits: 1.225

Algorithm::NeedlemanWunsch Algorithm::NeedlemanWunsch is a sequence alignment with configurable scoring. SYNOPSIS use Algorithm::NeedlemanWunsch; sub score_sub { if (!@_) { return -2; # gap penalty } return ($_[0] eq $_[1]) ? 1 : -1; } my $matcher = Algorithm::NeedlemanWunsch->new(&score_sub); my $score =...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (105): Algorithm::NeedlemanWunsch Download

Added: February 27, 2010 | Visits: 912

Algorithm::Combinatorics Algorithm::Combinatorics Perl module is an efficient generator of combinatorial sequences. SYNOPSIS use Algorithm::Combinatorics qw(permutations); my @data = qw(a b c); # scalar context gives an iterator my $iter = permutations(@data); while (my $p = $iter->next) { # ... } # list...


Platforms: *nix

License: Freeware Size: 15.36 KB Download (153): Algorithm::Combinatorics Download

Released: July 10, 2010  |  Added: August 12, 2010 | Visits: 1.285

Magic FLAC CD Burner Magic FLAC CD Burner is an easy-to-use tool to burn your own Audio CDs from APE, FLAC or MP3, WMA ,WAV files. All you need to do is select the files to be included in the CD, and the software will do the rest. The resulting CDs can be played on most home and car stereos.


Platforms: Windows

License: Shareware Cost: $29.95 USD Size: 2.97 MB Download (668): Magic FLAC CD Burner Download

Released: March 06, 2011  |  Added: March 28, 2011 | Visits: 1.030

FLAC MP3 Converter FLAC MP3 Converter converts FLAC to MP3 and MP3 to FLAC. It's an ALL-IN-ONE audio converter that converts more than 90 audio and video files to popular audio formats such as AAC, AIFF, ALAC, FLAC, M4A, M4B, MP2, MP3, OGG, WAV, and WMA. The software is full compatible with Vista and Windows 7....


Platforms: Windows

License: Shareware Cost: $19.95 USD Size: 3.87 MB Download (1181): FLAC MP3 Converter Download

< 1 2 3 4 5 >