Main > Free Download Search >

Free openmax il software for linux

openmax il

Sponsored Links
Sponsored Links
Sort by >> Relevance
rss
Secleted [ 0 ] software to compare
Results 1 - 15 of about 10
Bellagio OpenMAX IL Implementation 0.3.1

Bellagio OpenMAX IL Implementation 0.3.1


Bellagio is a sample implementation of OpenMAX IL for Linux. more>>
Bellagio is a sample implementation of OpenMAX IL for Linux.
It enables software developers and ISVs to familiarize themselves with the OpenMAX IL API and to develop their own OpenMAX multimedia and streaming media components for mobile devices, including codecs, video I/O, and audio mixers.
Included sample components comply with the OpenMAX base and interoperability profiles and can be tunnelled together.
Main features:
- a shared library with the IL core and a "reference" OpenMAX component
- a number of OpenMAX components which pass Khronos conformance tests
- a set of GStreamer plugins that use the IL API (not available yet)
Enhancements:
New video components:
- ffmpeg based MPEG4/H.264 decoder
- color converter component YUV -> RGB
- video renderer based on devFB
New audio component:
- audio file reader based on ffmpeg audio format
- volume component
Fixed known bugs:
- FFMPEG audio decoder now works on FC6 and other distributions with the latest ffmpeg release (0.4.9-0.35.20070204)
Known pending bugs:
- some ogg streams can not be decoded properly
- the tunneling between file reader, mp3 dec based on ffmpeg - alsa sink ends in a deadlock sometimes.
- This behavior has been detected some times using FC6 and UBUNTU, not with the FC4
Full list of components:
Audio:
- ogg decoder based on libvorbis (stand alone components, and multiple roles component)
- mp3 decoder based on mad decoder
- mp3 decoder based on ffmpeg (multiple roles component)
- volume component
- alsa audio sink
- ffmpeg audio file reader (to be used with mp3 ffmpeg decoder)
Video:
- MPEG4 decoder based on ffmpeg (multiple roles component)
- H.264 decoder based on ffmpeg (multiple roles component)
- Color converter based on ffmpeg
- video renderer based on devFB
- Major additions to the 0.2
- New port classes
The components are:
- multiple formats audio decoder component that supports mp3 and ogg audio formats
- alsa sink component
- all the other components are NOT compatible with the new architecture.
- They have been removed and will be ported to the new architecture in a further delivery
<<less
Download (0.49MB)
Added: 2007-06-06 License: GPL (GNU General Public License) Price:
895 downloads
Nmap Log Stripp3r 1.0

Nmap Log Stripp3r 1.0


Nmap Log Stripp3r is intended to be a way to condense all, or some, of the IPs of a random nmap scan. more>>
Nmap Log Stripp3r program is intended to be a way to condense all, or some, of the IPs of a "random" nmap scan into a file for later usage.

Common uses are to be able to feed the file back into nmap with the -iL switch, or feeding it into another port or vulnerability scanner of your choice.

Stripp3r supports stripping the nmap log of all but the IPs of hosts running a certain service, a version of a service, or even an arbitrary banner, and writing them to a file.

This is intended to be a way to condense all the IPs of a "random" Nmap scan into a file for later useage. Common uses are to be able to feed the file back into Nmap its self with the -iL switch, or feeding it into another port or vulnerability scanner.

Useage: ./stripp3r < logfile > < output > "< version string >" -v

Pretty simple. First, you must run an Nmap scan, on random hosts.

Ex. nmap -p 80 -sV -v -iR 500000 -oN nmaplogfile.nmap

This will tell nmap to do a scan service scan of 500,000 random IP addresses for the port 80, vobosely, and save the log to a file named nmaplogfile.nmap. You can change this around, eg, scanning a different service port (if say, you were looking for computers running FTP, you would scan for port 21 instead of 80 for HTTP), scanning a different number of hosts (500,000 or so is good, takes a few hours ususally though), or saving the log file to a different filename.

Nmap will then save a list of hosts that were "up" to a log file, with some informaiton about them, specifically weather the port that you specified was open, closed, or filtered. We are interested in "open" ports, so by default, Stripp3r will take all the log
enteries that have the port your specified listed as "open" and condense them into a file, listing only the IPs, one on each line.

Ex. ./stripp3r nmaplogfile.nmap output.ips

You can be more specific, and have Stripp3r put only the IPs that are running a certain service in the output file. The service string will only register the strings matching EXACTLY, so be careful to get the case and such correct.

apache httpd 1.3.27 (wont work)
Apache 1.3.27 (wont work)
Apache httpd 1.3.27 (works!)

Ex. ./stripp3r nmaplogfile.nmap output.ips "Apache httpd 1.3.27"

If you want to try it with verbosity, say

Ex. ./stripp3r nmaplogfile.nmap output.ips "Apache httpd 1.3.27" -v

And stripp3r will print out what it finds, along with writing it to the file.

You may change, copy, and reproduce this file, as long as the author is given credit for the initial writing of the code.
<<less
Download (0.002MB)
Added: 2006-04-17 License: GPL (GNU General Public License) Price:
1286 downloads
Data::ENAML 0.03

Data::ENAML 0.03


Data::ENAML is a Perl extension for ENAML data representation. more>>
Data::ENAML is a Perl extension for ENAML data representation.

SYNOPSIS

use Data::ENAML qw (serialize deserialize);

print serialize(login => {nick => Schop,
email => ariel@atheist.org.il,
tagline => If I had no modem I would not lose Regina});

$struct = deserialize(bad-nick: {nick: "c00l dewd" text: "spaces not allowed"});

ENAML stands for ENAML is Not A Markup Language. (And as we all know, Gnu is Not UNIX, Pine Is Not Email, Wine Is Not Emulator, Lame Aint Mp3 Encoder and so on).

ENAML was defined by Robey Pointer for use in Say2, check http://www.lag.net/say2.

<<less
Download (0.004MB)
Added: 2006-11-15 License: Perl Artistic License Price:
1073 downloads
WWW::YahooMaps 0.3

WWW::YahooMaps 0.3


WWW::YahooMaps is a Perl module which can create links to Yahoo! Maps. more>>
WWW::YahooMaps is a Perl module which can create links to Yahoo! Maps.

SYNOPSIS

use WWW::YahooMaps;

#first method: PASSING ADDRESS BIT-BY-BIT
my %addr = (
"street" => "555 N Michigan Ave",
"city" => "Chicago, IL 60611",
"country" => "us",
);

if (my $url = WWW::YahooMaps::hashreftolink(%addr)){
print "url1 $urln";
}

#second method: ADDRESS INFO IN STRING
#separators can be ";" or newline "n"
#street should come before city
#pass an additional 1 at the end if you want to pass city first
if (my $url = WWW::YahooMaps::stringtolink("us","us","101 Morris Street; Sebastopol, CA 95472")){
print "url2 $urln";
}

#third method: CALL A FUNCTION WITH BIT-BY-BIT PARAMETERS
if (my $url = WWW::YahooMaps::stringtolink("us","us","Paris, TX; Main Street", 1)){
print "url3 $urln";
}

<<less
Download (0.004MB)
Added: 2006-12-12 License: Perl Artistic License Price:
1046 downloads
WWW::Mechanize::Examples 1.30

WWW::Mechanize::Examples 1.30


WWW::Mechanize::Examples is a Perl module with sample programs that use WWW::Mechanize. more>>

SYNOPSIS

Plenty of people have learned WWW::Mechanize, and now, you can too!
Following are user-supplied samples of WWW::Mechanize in action.

You can also look at the t/*.t files in the distribution.

Please note that these examples are not intended to do any specific task. For all I know, theyre no longer functional because the sites they hit have changed. Theyre here to give examples of how people have used WWW::Mechanize.

Note that the examples are in reverse order of my having received them, so the freshest examples are always at the top.

Starbucks Density Calculator, by Nat Torkington

Heres a pair of scripts from Nat Torkington, editor for OReilly Media and co-author of the Perl Cookbook.

Rael [Dornfest] discovered that you can easily find out how many Starbucks there are in an area by searching for "Starbucks". So I wrote a silly scraper for some old census data and came up with some Starbucks density figures. Theres no meaning to these numbers thanks to errors from using old census data coupled with false positives in Yahoo search (e.g., "Dodie Starbuck-Your Style Desgn" in Portland OR). But it was fun to waste a night on.

Here are the top twenty cities in descending order of population, with the amount of territory each Starbucks has. E.g., A New York NY Starbucks covers 1.7 square miles of ground.

New York, NY 1.7
Los Angeles, CA 1.2
Chicago, IL 1.0
Houston, TX 4.6
Philadelphia, PA 6.8
San Diego, CA 2.7
Detroit, MI 19.9
Dallas, TX 2.7
Phoenix, AZ 4.1
San Antonio, TX 12.3
San Jose, CA 1.1
Baltimore, MD 3.9
Indianapolis, IN 12.1
San Francisco, CA 0.5
Jacksonville, FL 39.9
Columbus, OH 7.3
Milwaukee, WI 5.1
Memphis, TN 15.1
Washington, DC 1.4
Boston, MA 0.5

<<less
Download (0.10MB)
Added: 2007-07-20 License: Perl Artistic License Price:
828 downloads
MILA::Transliterate 0.01

MILA::Transliterate 0.01


MILA::Transliterate is a Perl Module for transliterating text from Hebrew to various transliterations used in the Knowledge Cent more>>
MILA::Transliterate is a Perl Module for transliterating text from Hebrew to various transliterations used in the Knowledge Center for Processing Hebrew (MILA) and vise versa.

SYNOPSIS

use MILA::Transliterate qw((hebrew2treebank hebrew2erel hebrew2fsma);
my $erel_transliterated = hebrew2erel($utf8_encoded_hebrew_text);
my $treebank_transliterated = hebrew2treebank($utf8_encoded_hebrew_text);
my $fsma_transliterated = hebrew2fsma($utf8_encoded_hebrew_text);

# note that the reverse transliteration does NOT maintain final Hebrew letters!

Before UNICODE was widely used, applications that were manipulating Hebrew text usually used some transliteration into ASCII characters instead of using Hebrew letters. This was particularly true for software developed in the academia. MILA is a nick name for the Knowledge Center for Processing Hebrew (see: http://mila.cs.technion.ac.il/).

This knowledge center develops software and standards that result from research in natural language processing for Hebrew. As a result, some legacy software also needs to be maintained and such legacy software usually used transliteration.

This module contains mapping from UTF-8 encoded Hebrew to the various transliteration schemes that MILA needs to support and also contains the reversed mapping.

<<less
Download (0.004MB)
Added: 2007-03-05 License: Perl Artistic License Price:
964 downloads
Cook County PIN Search 2.1

Cook County PIN Search 2.1


Cook County PIN Search provides a title search tool. more>>
Cook County PIN Search provides a title search tool.

Cook County (IL, USA) Property Index Number Search

A title search tool. If in the course of your browsing you come across a Cook County Property Index Number (PIN) (format 99-99-999-999 or 99-99-999-999-9999) in your browser window, select it and "right"-click and on the context menu you will be offered options to open new tabs of relevant information from Cook County websites.

<<less
Download (0.004MB)
Added: 2007-04-05 License: MPL (Mozilla Public License) Price:
933 downloads
Il Catalogo 1.00

Il Catalogo 1.00


A classical CD music cataloging utility more>> A classical CD music cataloging utility

Il Catalogo will allow you to keep track of all your CDs and organize you classical music collection. An easy to use and handy cataloguer written in Java.

<<less
Download (865KB)
Added: 2009-04-07 License: GPL Price: FREE
199 downloads
auto-submiter 1.0

auto-submiter 1.0


un software gratis il piu primato, objeto di multi aplicatione suggerire url del tuo sito automaticamente in piu di dodice motore di richerce in piu u... more>> <<less
Download (241KB)
Added: 2009-04-20 License: Freeware Price: Free
193 downloads
WWW::Yahoo::DrivingDirections 0.08

WWW::Yahoo::DrivingDirections 0.08


WWW::Yahoo::DrivingDirections is a Perl module to generate driving directions for multiple-stop trips in the United States. more>>
WWW::Yahoo::DrivingDirections is a Perl module to generate driving directions for multiple-stop trips in the United States, courtesy of maps.yahoo.com.

ABSTRACT

Object-oriented interface to the maps.yahoo.com driving directions.

SYNOPSIS

use WWW::Yahoo::DrivingDirections;
my $yd = WWW::Yahoo::DrivingDirections->new ();
$yd->add_stops ( @ARGV );
$yd->get_maps();
or
use WWW::Yahoo::DrivingDirections;
my $yd = WWW::Yahoo::DrivingDirections->new (
{
roundtrip => 1,
return_html => 1,
save_html => 0,
save_format => output_%d.html,
},
atlanta, ga,
123 fake st, boston, ma,
0 church st, cambridge, ma,
LAX,
);
$yd->add_stops ( paris, tx, 1 main st, springfield, IL );
$yd->roundtrip ( 1 );
$html_array_ref = $yd->get_maps();

WWW::Yahoo::DrivingDirections provides a simple means of generating driving directions for trips with more stops than a start and a finish. Driving from LAX airport to 1 Main St, Portland, OR to Denver, CO? Just do this:

use WWW::Yahoo::DrivingDirections;
my $yd = WWW::Yahoo::DrivingDirections->new (
LAX, 1 Main St, Portland, OR, Denver, CO
);
$yd->get_maps();

and the directions will be saved in trip_leg_1.html and trip_leg_2.html.

<<less
Download (0.020MB)
Added: 2006-12-13 License: Perl Artistic License Price:
1046 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 1
  • 1