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.082.029 Times

Flac Algorithm freeware
Filter: All | Freeware | Demo
 

Flac Algorithm

< 1 2 3 4 5 > 
Added: October 05, 2010 | Visits: 805

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 (146): 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.226

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: April 20, 2012  |  Added: May 19, 2012 | Visits: 3.360

FLAC to MP3 Converter FLAC to MP3 Converter is an easy, efficient, fast yet free FLAC to MP3 converter. It is capable of converting FLAC to MP3 easily and quickly. It can copy & save audio tag from the source FLAC files to the destination MP3 files, FLAC to MP3 Converter is capable of writing ID3v1, ID3v2 and APE...


Platforms: Windows

License: Freeware Size: 2.38 MB Download (701): FLAC to MP3 Converter Download

Released: June 05, 2014  |  Added: June 19, 2014 | Visits: 1.421

Freemore FLAC to MP3 Converter FLAC is a lossless format but you can't play it on certain audio players like iPod. Freemore FLAC to MP3 Converter will help convert FLAC files to standard MP3 format files, which are much smaller and have better support among audio applications and hardware players. Extract audio tracks...


Platforms: Windows, Windows 7

License: Freeware Size: 4.65 MB Download (140): Freemore FLAC to MP3 Converter Download

Released: July 20, 2014  |  Added: August 06, 2014 | Visits: 1.745

Free FLAC to MP3 Convert Wizard With Free FLAC to MP3 Convert Wizard, it is easily to reduce file size of FLAC audio and then send MP3 audio to your mobile device, cell phone, or as an E-mail attachment, or to convert recorded audio from different audio sources: TV card, line-in or microphone saved in smaller, more convenient...


Platforms: Windows, Windows 7

License: Freeware Size: 6.33 MB Download (135): Free FLAC to MP3 Convert Wizard Download

Released: September 08, 2012  |  Added: September 08, 2012 | Visits: 620

1Flac FLAC to MP3 Converter FLAC to MP3 Converter enables you convert FLAC to MP3 Audio. FLAC stands for Free Lossless Audio Codec, an audio format similar to MP3, but lossless, meaning that audio is compressed in FLAC without any loss in quality. Now you can enjoy the versatile audios on your MP3 Player wherever and...


Platforms: Windows, Other

License: Freeware Size: 7.3 MB Download (706): 1Flac FLAC to MP3 Converter Download

Released: December 15, 2012  |  Added: December 15, 2012 | Visits: 627

Free FLAC to MP3 Converter Free FLAC to MP3 Converter offers an easy way to convert all your FLAC audio files to MP3. The program works very fast and has a straightforward interface. Just drag-and-drop FLAC files into the application and click the Convert button.


Platforms: Windows

License: Freeware Size: 1.01 MB Download (897): Free FLAC to MP3 Converter Download

Released: September 01, 2012  |  Added: September 01, 2012 | Visits: 1.194

Boxoft free Flac to MP3 Converter (freeware) Boxoft flac to MP3 Converter is an 100% free and simple, lightning-fast and powerful audio conversion tool that lets you to batch convert flac file to high quality MP3 audio formats, It is equipped with a standard audio compressed encoder, you can select bitrate settings and convert multiple...


Platforms: Windows

License: Freeware Size: 2.05 MB Download (565): Boxoft free Flac to MP3 Converter (freeware) Download

Released: July 11, 2014  |  Added: August 12, 2014 | Visits: 1.220

FLAC to MP3 Converter Free FLAC to MP3 Converter Free allows you to convert audio files from FLAC to more handy and popular MP3 format. Meanwhile, it is also able to handle the conversion between 50+ audio formats and audio extraction from 300+ video formats. It is extremely easy to operate, with just a few mouse clicks,...


Platforms: Windows, Windows 7

License: Freeware Size: 6.47 MB Download (111): FLAC to MP3 Converter Free Download

< 1 2 3 4 5 >