paramore decode
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 302
Audio::AMR::Decode 0.01
Audio::AMR::Decode is a Perl extension do decode .amr files. more>>
Audio::AMR::Decode is a Perl extension do decode .amr files.
SYNOPSIS
use Audio::AMR::Decode;
Audio::AMR::Decode::amr2raw(infile.amr, outfile.pcm);
This module will attempt to decode an amr encoded audio file to a raw pcm audio encoded file.
The package contains C-source files for the optimized fixed-point speech decoder. The optimized fixed-point speech decoder is bit-exact with 3GPP TS 26.073 fixed-point speech decoder version 4.1.0.
<<lessSYNOPSIS
use Audio::AMR::Decode;
Audio::AMR::Decode::amr2raw(infile.amr, outfile.pcm);
This module will attempt to decode an amr encoded audio file to a raw pcm audio encoded file.
The package contains C-source files for the optimized fixed-point speech decoder. The optimized fixed-point speech decoder is bit-exact with 3GPP TS 26.073 fixed-point speech decoder version 4.1.0.
Download (0.13MB)
Added: 2006-06-27 License: GPL (GNU General Public License) Price:
1229 downloads
MIME::WordDecoder 5.420
MIME::WordDecoder is a Perl module to decode RFC-1522 encoded words to a local representation. more>>
MIME::WordDecoder is a Perl module to decode RFC-1522 encoded words to a local representation.
SYNOPSIS
See MIME::Words for the basics of encoded words. See "DESCRIPTION" for how this class works.
use MIME::WordDecoder;
### Get the default word-decoder (used by unmime()):
$wd = default MIME::WordDecoder;
### Get a word-decoder which maps to ISO-8859-1 (Latin1):
$wd = supported MIME::WordDecoder "ISO-8859-1";
### Decode a MIME string (e.g., into Latin1) via the default decoder:
$str = $wd->decode(To: =?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?= );
### Decode a string using the default decoder, non-OO style:
$str = unmime(To: =?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?= );
A MIME::WordDecoder consists, fundamentally, of a hash which maps a character set name (US-ASCII, ISO-8859-1, etc.) to a subroutine which knows how to take bytes in that character set and turn them into the target string representation. Ideally, this target representation would be Unicode, but we dont want to overspecify the translation that takes place: if you want to convert MIME strings directly to Big5, thats your own decision.
The subroutine will be invoked with two arguments: DATA (the data in the given character set), and CHARSET (the upcased character set name).
For example:
### Keep 7-bit characters as-is, convert 8-bit characters to #:
sub keep7bit {
local $_ = shift;
tr/x00-x7F/#/c;
$_;
}
Heres a decoder which uses that:
### Construct a decoder:
$wd = MIME::WordDecoder->new({US-ASCII => "KEEP", ### sub { $_[0] }
ISO-8859-1 => &keep7bit,
ISO-8859-2 => &keep7bit,
Big5 => "WARN",
* => "DIE"});
### Convert some MIME text to a pure ASCII string...
$ascii = $wd->decode(To: =?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?= < keld >);
### ...which will now hold: "To: Keld J#rn Simonsen < keld >"
<<lessSYNOPSIS
See MIME::Words for the basics of encoded words. See "DESCRIPTION" for how this class works.
use MIME::WordDecoder;
### Get the default word-decoder (used by unmime()):
$wd = default MIME::WordDecoder;
### Get a word-decoder which maps to ISO-8859-1 (Latin1):
$wd = supported MIME::WordDecoder "ISO-8859-1";
### Decode a MIME string (e.g., into Latin1) via the default decoder:
$str = $wd->decode(To: =?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?= );
### Decode a string using the default decoder, non-OO style:
$str = unmime(To: =?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?= );
A MIME::WordDecoder consists, fundamentally, of a hash which maps a character set name (US-ASCII, ISO-8859-1, etc.) to a subroutine which knows how to take bytes in that character set and turn them into the target string representation. Ideally, this target representation would be Unicode, but we dont want to overspecify the translation that takes place: if you want to convert MIME strings directly to Big5, thats your own decision.
The subroutine will be invoked with two arguments: DATA (the data in the given character set), and CHARSET (the upcased character set name).
For example:
### Keep 7-bit characters as-is, convert 8-bit characters to #:
sub keep7bit {
local $_ = shift;
tr/x00-x7F/#/c;
$_;
}
Heres a decoder which uses that:
### Construct a decoder:
$wd = MIME::WordDecoder->new({US-ASCII => "KEEP", ### sub { $_[0] }
ISO-8859-1 => &keep7bit,
ISO-8859-2 => &keep7bit,
Big5 => "WARN",
* => "DIE"});
### Convert some MIME text to a pure ASCII string...
$ascii = $wd->decode(To: =?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?= < keld >);
### ...which will now hold: "To: Keld J#rn Simonsen < keld >"
Download (0.37MB)
Added: 2006-08-30 License: Perl Artistic License Price:
1150 downloads
Convert::BulkDecoder 1.03
Convert::BulkDecoder is a Perl module to extract (binary) data from mail and news messages. more>>
Convert::BulkDecoder is a Perl module to extract (binary) data from mail and news messages.
SYNOPSIS
use Convert::BulkDecoder;
my $cvt = new Convert::BulkDecoder::;
# Collect the articles into an array ref.
my $art = [];
# Decode.
my $res = $cvt->decode($art);
die("Failed!") unless $res eq "OK";
print "Extracted ", $cvt->{size}, " bytes to file ", $cvt->{file}, "n";
Convert::BulkDecoder can be used to decode binary contents as included in email and news articles. It supports UUdecoding, ydecoding and MIME attachments. The contents may be split over multiple articles (files), but must be supplied to the decode() function in one bulk.
For yencoded contents, it is possible to verify file consistency using length and checksum tests.
<<lessSYNOPSIS
use Convert::BulkDecoder;
my $cvt = new Convert::BulkDecoder::;
# Collect the articles into an array ref.
my $art = [];
# Decode.
my $res = $cvt->decode($art);
die("Failed!") unless $res eq "OK";
print "Extracted ", $cvt->{size}, " bytes to file ", $cvt->{file}, "n";
Convert::BulkDecoder can be used to decode binary contents as included in email and news articles. It supports UUdecoding, ydecoding and MIME attachments. The contents may be split over multiple articles (files), but must be supplied to the decode() function in one bulk.
For yencoded contents, it is possible to verify file consistency using length and checksum tests.
Download (0.017MB)
Added: 2006-08-22 License: Perl Artistic License Price:
1159 downloads
Convert::Bencode 1.03
Convert::Bencode are functions for converting to/from bencoded strings. more>>
Convert::Bencode are functions for converting to/from bencoded strings.
SYNOPSIS
use Convert::Bencode qw(bencode bdecode);
my $string = "d4:ainti12345e3:key5:value4:type4:teste";
my $hashref = bdecode($string);
foreach my $key (keys(%{$hashref})) {
print "Key: $key, Value: ${$hashref}{$key}n";
}
my $encoded_string = bencode($hashref);
print $encoded_string."n";
This module provides two functions, bencode and bdecode, which encode and decode bencoded strings respectivly.
<<lessSYNOPSIS
use Convert::Bencode qw(bencode bdecode);
my $string = "d4:ainti12345e3:key5:value4:type4:teste";
my $hashref = bdecode($string);
foreach my $key (keys(%{$hashref})) {
print "Key: $key, Value: ${$hashref}{$key}n";
}
my $encoded_string = bencode($hashref);
print $encoded_string."n";
This module provides two functions, bencode and bdecode, which encode and decode bencoded strings respectivly.
Download (0.010MB)
Added: 2006-08-02 License: Perl Artistic License Price:
1181 downloads
Convert::yEnc::Decoder 1.02
Convert::yEnc::Decoder is a Perl module that decodes yEncoded files. more>>
Convert::yEnc::Decoder is a Perl module that decodes yEncoded files.
SYNOPSIS
use Convert::yEnc::Decoder;
$decoder = new Convert::yEnc::Decoder;
$decoder = new Convert::yEnc::Decoder $dir;
$decoder->out_dir($dir);
eval
{
$decoder->decode( $file);
$decoder->decode(*FILE);
$decoder->decode;
};
print $@ if $@;
$name = $decoder->name;
$file = $decoder->file;
$size = $decoder->size;
$ybegin = $decoder->ybegin;
$ypart = $decoder->ypart;
$yend = $decoder->yend;
ABSTRACT
yEnc decoder
Convert::yEnc::Decoder decodes a yEncoded file and writes it to disk. Methods are provided for returning information about the decoded file.
<<lessSYNOPSIS
use Convert::yEnc::Decoder;
$decoder = new Convert::yEnc::Decoder;
$decoder = new Convert::yEnc::Decoder $dir;
$decoder->out_dir($dir);
eval
{
$decoder->decode( $file);
$decoder->decode(*FILE);
$decoder->decode;
};
print $@ if $@;
$name = $decoder->name;
$file = $decoder->file;
$size = $decoder->size;
$ybegin = $decoder->ybegin;
$ypart = $decoder->ypart;
$yend = $decoder->yend;
ABSTRACT
yEnc decoder
Convert::yEnc::Decoder decodes a yEncoded file and writes it to disk. Methods are provided for returning information about the decoded file.
Download (0.056MB)
Added: 2006-08-23 License: Perl Artistic License Price:
683 downloads
openTNEF 0.1-dev
openTNEF is a project focused on providing a quality TNEF decoding library. more>>
openTNEF is a project focused on providing a quality TNEF decoding library.
openTNEF aims to encourage corporate involvement with its development. The use of the BSD licence has previously been shown to be effective in fostering strong development ties as seen with sister projects such as ripMIME, alterMIME and FileType.
While openTNEF can be used as a stand-alone appication, able to decode winmail.dat files, its primary purpose is to actually be developed as a library to be used in the more comprehensive MIME decoding package ripMIME. As openTNEF reaches various stages of feature and stability, it will be rolled back into the ripMIME tree to be used.
Currently, openTNEF is not at the same level of diversity and quality of other open-sourced TNEF decoding projects such as yTNEF and TNEF. We naturally wish to address this issue. openTNEF has been forked out of the existing ripMIME project in order to provide a stronger focus on its development.
<<lessopenTNEF aims to encourage corporate involvement with its development. The use of the BSD licence has previously been shown to be effective in fostering strong development ties as seen with sister projects such as ripMIME, alterMIME and FileType.
While openTNEF can be used as a stand-alone appication, able to decode winmail.dat files, its primary purpose is to actually be developed as a library to be used in the more comprehensive MIME decoding package ripMIME. As openTNEF reaches various stages of feature and stability, it will be rolled back into the ripMIME tree to be used.
Currently, openTNEF is not at the same level of diversity and quality of other open-sourced TNEF decoding projects such as yTNEF and TNEF. We naturally wish to address this issue. openTNEF has been forked out of the existing ripMIME project in order to provide a stronger focus on its development.
Download (0.030MB)
Added: 2006-06-05 License: BSD License Price:
1236 downloads
MPEG Audio/Video Player 1.1.4
MPEG Audio/Video Player is a simple MPEG and AC3 player for Linux, BSD, and Windows systems. more>>
MPEG Audio/Video Player is a simple MPEG and AC3 player for Linux, BSD, and Windows systems.
It plays MPEG transport, program, and elementary stream files. It also has basic DVD support (using libdvdnav on Linux/BSD sytems only).
Main features:
- Runs on Windows, Linux, and BSD systems.
- Plays MPEG Transport Stream, Program Stream, and Elementary Stream files.
- Basic DVD support (with libdvdnav on Linux/BSD systems only).
- Decodes MPEG 1&2 Video, MPEG Layer 2 Audio, and AC3 audio.
- All decoders use only integer operations, for faster performance.
- Flexible, and easy to use decoders, that can decode streams in chunks as small as 1 byte (buffering is not necessary).
<<lessIt plays MPEG transport, program, and elementary stream files. It also has basic DVD support (using libdvdnav on Linux/BSD sytems only).
Main features:
- Runs on Windows, Linux, and BSD systems.
- Plays MPEG Transport Stream, Program Stream, and Elementary Stream files.
- Basic DVD support (with libdvdnav on Linux/BSD systems only).
- Decodes MPEG 1&2 Video, MPEG Layer 2 Audio, and AC3 audio.
- All decoders use only integer operations, for faster performance.
- Flexible, and easy to use decoders, that can decode streams in chunks as small as 1 byte (buffering is not necessary).
Download (0.28MB)
Added: 2007-04-16 License: GPL (GNU General Public License) Price:
700 downloads
mod_form 1.0
mod_form is a utility to decode data submitted from Web forms. more>>
mod_form is a utility to decode data submitted from Web forms. It deals with both GET and POST methods where the data are encoded using the default content type application/x-www-form-urlencoded.
mod_form does not decode multipart/form-data (file upload) forms: for those you should use mod_upload.
Usage:
When mod_form is active, form data will be decoded to an apr_table_t*. Modules can access the table using the optional function form_data, or individual form fields using form_value:
#include "mod_form.h"
some_func(request_rec* r) {
apr_table_t* (*form_vars)(request_rec*) ;
apr_table_t* (*form_lookup)(request_rec*, const char*) ;
apr_table_t* form_data ;
const char* val ;
const char* key = "some-form-field" ;
/* get the whole table */
form_vars = APR_RETRIEVE_OPTIONAL_FN(form_data) ;
if ( form_vars ) {
form_data = form_vars(r) ;
}
/* or get individual values */
form_lookup = APR_RETRIEVE_OPTIONAL_FN(form_value) ;
if ( form_lookup ) {
val = form_lookup(r, key) ;
}
}
<<lessmod_form does not decode multipart/form-data (file upload) forms: for those you should use mod_upload.
Usage:
When mod_form is active, form data will be decoded to an apr_table_t*. Modules can access the table using the optional function form_data, or individual form fields using form_value:
#include "mod_form.h"
some_func(request_rec* r) {
apr_table_t* (*form_vars)(request_rec*) ;
apr_table_t* (*form_lookup)(request_rec*, const char*) ;
apr_table_t* form_data ;
const char* val ;
const char* key = "some-form-field" ;
/* get the whole table */
form_vars = APR_RETRIEVE_OPTIONAL_FN(form_data) ;
if ( form_vars ) {
form_data = form_vars(r) ;
}
/* or get individual values */
form_lookup = APR_RETRIEVE_OPTIONAL_FN(form_value) ;
if ( form_lookup ) {
val = form_lookup(r, key) ;
}
}
Download (0.009MB)
Added: 2006-05-16 License: GPL (GNU General Public License) Price:
1256 downloads
encdec 0.4.0
encdec it encodes and decodes i18n strings, integers, reals, and times. more>>
encdec encodes and decodes a wide range of C objects.
This module may be used to encode and decode C objects such as integers, floats, doubles, times, and internationalized strings to and from a wide variety of binary formats as they might appear in portable file formats or network messages.
These encodings include 16, 34, and 64 bit big and little endian intergers, big and little endian IEEE754 float and double values, 6 time encodings, and the wide range of string encodings supported by libiconv.
The functions are all designed to be ideal for in-situ decoding and encoding of complex formats. The code is licensed under the GNU Library General Public License.
<<lessThis module may be used to encode and decode C objects such as integers, floats, doubles, times, and internationalized strings to and from a wide variety of binary formats as they might appear in portable file formats or network messages.
These encodings include 16, 34, and 64 bit big and little endian intergers, big and little endian IEEE754 float and double values, 6 time encodings, and the wide range of string encodings supported by libiconv.
The functions are all designed to be ideal for in-situ decoding and encoding of complex formats. The code is licensed under the GNU Library General Public License.
Download (0.12MB)
Added: 2005-04-18 License: LGPL (GNU Lesser General Public License) Price:
1655 downloads
mod_ssl_error 1.0.2
mod_ssl_error is a X.509 certificate validation error trapping (SSL). more>>
mod_ssl_error is a X.509 certificate validation error trapping (SSL).
Valid errors are:
unable to get issuer certificate
unable to get CRL
unable to decrypt certificate signature
unable to decrypt CRL signature
unable to decode issuer public key
certificate signature failure
CRL signature failure
certificate not yet valid
certificate has expired
CRL not yet valid
CRL has expired
error in certificate "not before" field
error in certificate "not after" field
error in CRL "last update" field
error in CRL "next update" field
out of memory
depth zero self signed certificate
self signed certificate in chain
unable to get issuer certificate locally
unable to verify leaf signature
certificate chain too long
certificate revoked
invalid certification authority
path length exceeded
invalid purpose
certificate not trusted
certificate rejected
subject issuer mismatch
"akid" skid mismatch
"akid" issuer serial mismatch
"keyusage" different from "certsign"
unable to get CRL issuer
unhandled critical extension
"keyusage" not for CRL signing
unhandled critical CRL extension
<<lessValid errors are:
unable to get issuer certificate
unable to get CRL
unable to decrypt certificate signature
unable to decrypt CRL signature
unable to decode issuer public key
certificate signature failure
CRL signature failure
certificate not yet valid
certificate has expired
CRL not yet valid
CRL has expired
error in certificate "not before" field
error in certificate "not after" field
error in CRL "last update" field
error in CRL "next update" field
out of memory
depth zero self signed certificate
self signed certificate in chain
unable to get issuer certificate locally
unable to verify leaf signature
certificate chain too long
certificate revoked
invalid certification authority
path length exceeded
invalid purpose
certificate not trusted
certificate rejected
subject issuer mismatch
"akid" skid mismatch
"akid" issuer serial mismatch
"keyusage" different from "certsign"
unable to get CRL issuer
unhandled critical extension
"keyusage" not for CRL signing
unhandled critical CRL extension
Download (0.003MB)
Added: 2006-04-21 License: The Apache License Price:
1289 downloads
Encode::RAD50 0.002
Encode::RAD50 is a Perl module that can convert to and from the Rad50 character set. more>>
Encode::RAD50 is a Perl module that can convert to and from the Rad50 character set.
SYNOPSIS
use Encode;
use Encode::RAD50; # Sorry about this.
$rad50 = encode (RAD50, FOO);
$ascii = decode (rad50, pack n, 10215);
binmode STDOUT, :encoding(rad50); # Perverse, but it works.
print A#C; # Gives a warning, since # isnt valid.
Because this is not a standard encoding, you will need to explicitly
use Encode::RAD50;
Though of course the name of the module is case-sensitive, the name of the encoding (passed to encode (), decode (), or ":encoding()") is not case-sensitive.
<<lessSYNOPSIS
use Encode;
use Encode::RAD50; # Sorry about this.
$rad50 = encode (RAD50, FOO);
$ascii = decode (rad50, pack n, 10215);
binmode STDOUT, :encoding(rad50); # Perverse, but it works.
print A#C; # Gives a warning, since # isnt valid.
Because this is not a standard encoding, you will need to explicitly
use Encode::RAD50;
Though of course the name of the module is case-sensitive, the name of the encoding (passed to encode (), decode (), or ":encoding()") is not case-sensitive.
Download (0.006MB)
Added: 2006-08-16 License: Perl Artistic License Price:
1164 downloads
Haru Free PDF library 2.0.8
Haru Free PDF library is a free, cross platform, open-sourced software library for generating PDF. more>>
Haru Free PDF library is a free, cross platform, open-sourced software library for generating PDF.
Main features:
- Generating PDF files with lines, text, images.
- Outline, text annotation, link annotation.
- Compressing document with deflate-decode.
- Embedding PNG, Jpeg images.
- Embedding Type1 font and TrueType font.
- Creating encrypted PDF files.
- Using various character set (ISO8859-1~16, MSCP1250~8, KOI-8R).
- Supporting CJK fonts and encodings.
Enhancements:
- fixed a problem of HPDF_Circle() which causes buffer overflow.
- added HPDF_Ellipse().
<<lessMain features:
- Generating PDF files with lines, text, images.
- Outline, text annotation, link annotation.
- Compressing document with deflate-decode.
- Embedding PNG, Jpeg images.
- Embedding Type1 font and TrueType font.
- Creating encrypted PDF files.
- Using various character set (ISO8859-1~16, MSCP1250~8, KOI-8R).
- Supporting CJK fonts and encodings.
Enhancements:
- fixed a problem of HPDF_Circle() which causes buffer overflow.
- added HPDF_Ellipse().
Download (1.5MB)
Added: 2007-06-14 License: zlib/libpng License Price:
869 downloads
Radstock 0.66
Radstock is a tool to analyse RADIUS traffic on high volume radius servers. more>>
Radstock is a tool to analyse RADIUS traffic on high volume radius servers. It has the ability to fully decode each packet, and also has extensive filters capabilities to allow you to selectively match RADIUS packets.
It provides the ability to fully decode each packet. Here is some sample output.
The key feature of radstock is its ability to filter the packets shown based on any attribute. It will also listen out for responses to matched packets and display these as well. An example filter would be (all on one line):
radstock -e "(user-name = paul or user-name = bob) and exists nas-port-id"
To compile radstock you need the following libraries:
libpcap
flex or lex
bison/yacc
Once you have these, the following three commands should do just about
all you need.
/configure
make
make install
It has been successfully compiled on Linux and Solaris
platforms. Whether it works on them is a completely different story.
<<lessIt provides the ability to fully decode each packet. Here is some sample output.
The key feature of radstock is its ability to filter the packets shown based on any attribute. It will also listen out for responses to matched packets and display these as well. An example filter would be (all on one line):
radstock -e "(user-name = paul or user-name = bob) and exists nas-port-id"
To compile radstock you need the following libraries:
libpcap
flex or lex
bison/yacc
Once you have these, the following three commands should do just about
all you need.
/configure
make
make install
It has been successfully compiled on Linux and Solaris
platforms. Whether it works on them is a completely different story.
Download (0.060MB)
Added: 2006-07-04 License: GPL (GNU General Public License) Price:
1207 downloads
QCreateVOB 1.1
QCreateVOB is a VOB movie file creator. more>>
QCreateVOB is a VOB movie file creator (using transcode, ffmpeg, sox, multimux, mplayer)
With QCreateVOB you can decode movies from AVI, WMV, and MPEG 1/2 to VOB files (VOB is DVD video format).
<<lessWith QCreateVOB you can decode movies from AVI, WMV, and MPEG 1/2 to VOB files (VOB is DVD video format).
Download (0.29MB)
Added: 2005-06-16 License: GPL (GNU General Public License) Price:
1594 downloads
Ambisonics Player 1.0
Ambisonics Player is a simple player for ambisonics files. more>>
Ambisonics Player is a simple player for ambisonics files. Ambisonics Player is programmed in Java, which means that (in theory) should be able to run on all platforms that java runs on. Java-sound must also be implemented on the platform.
It has been developed on Windows XP running Java 1.5, and also tested on linux 64-bit system (Gentoo AMD64) using sun-jdk-1.5.0.03. So these combinations should be fine. I dont think it works with earlier java-versions than 1.5, atleast not very good.
Main features:
- Plays 1.,2. and 3. order soundfiles in B-format.
- Files in wav,aiff,flac and ogg format supported (ogg-files caneven be streamed).
- Floating point support (for WAV-files only).
- Decode ambisonics to speaker-feeds or binaural stereo files by using HRTF and decode to virtual speaker-array.
- Play directly to soundcard outputs or save to file.
<<lessIt has been developed on Windows XP running Java 1.5, and also tested on linux 64-bit system (Gentoo AMD64) using sun-jdk-1.5.0.03. So these combinations should be fine. I dont think it works with earlier java-versions than 1.5, atleast not very good.
Main features:
- Plays 1.,2. and 3. order soundfiles in B-format.
- Files in wav,aiff,flac and ogg format supported (ogg-files caneven be streamed).
- Floating point support (for WAV-files only).
- Decode ambisonics to speaker-feeds or binaural stereo files by using HRTF and decode to virtual speaker-array.
- Play directly to soundcard outputs or save to file.
Download (2.3MB)
Added: 2006-03-23 License: GPL (GNU General Public License) Price:
1324 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 paramore decode 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