via
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2221
VIA 4.1
VIA enhanced Xine Player (VeXP) is a program based on Xine multimedia player. more>>
VIA enhanced Xine Player (VeXP), a program based on Xine multimedia player, which uses hardware-specific acceleration in decoding for better MPEG2 performance. End users will benefit in both improved video playback, and reduced system power consumption.
Instructions for usage:
Start running two applications in console or X Window
a. X Window player (GUI mode)
For the first time launching the player after the compilation and installation:
startx
viaexp dvd:/
b. Console player (Console mode)
For the first time launching the player after the compilation and installation:
viaexpfb dvd:/
<<lessInstructions for usage:
Start running two applications in console or X Window
a. X Window player (GUI mode)
For the first time launching the player after the compilation and installation:
startx
viaexp dvd:/
b. Console player (Console mode)
For the first time launching the player after the compilation and installation:
viaexpfb dvd:/
Download (1.6MB)
Added: 2006-07-19 License: GPL (GNU General Public License) Price:
1198 downloads
Socks via HTTP 1.2
Socks via HTTP provides a socks tunnel via HTTP. more>>
Socks via HTTP provides a socks tunnel via HTTP.
Socks via HTTP is a program converting SOCKS requests into HTTP requests and tunnelling them through HTTP proxies if needed.
The SOCKS protocol allows programs to traverse firewalls on any port number and is used by many popular programs, like Napster, MSN Messenger, CRT(telnet client) and many others.
Many companies restrict firewall traversals only to HTTP requests, disabling SOCKS proxy.
Socks via HTTP provides a miniature SOCKS server for the SOCKS client, performing its connection through an HTTP proxy to a remote server, which establishes the real connection.
Socks via HTTP is 100% Java, and can run on any OS. It is entirely written in Java.
<<lessSocks via HTTP is a program converting SOCKS requests into HTTP requests and tunnelling them through HTTP proxies if needed.
The SOCKS protocol allows programs to traverse firewalls on any port number and is used by many popular programs, like Napster, MSN Messenger, CRT(telnet client) and many others.
Many companies restrict firewall traversals only to HTTP requests, disabling SOCKS proxy.
Socks via HTTP provides a miniature SOCKS server for the SOCKS client, performing its connection through an HTTP proxy to a remote server, which establishes the real connection.
Socks via HTTP is 100% Java, and can run on any OS. It is entirely written in Java.
Download (0.35MB)
Added: 2007-06-26 License: GPL (GNU General Public License) Price:
854 downloads
PerlIO::via::CBC 0.0.8
PerlIO::via::CBC is a PerlIO layer for reading/writing CBC encrypted files. more>>
PerlIO::via::CBC is a Perl IO layer for reading/writing CBC encrypted files.
SYNOPSIS
use PerlIO::via::CBC;
PerlIO::via::CBC->config(
key => my secret key,
cipher => Blowfish,
iv => $KJh#(}q,
regenerate_key => 0, # default true
padding => space,
prepend_iv => 0,
pcbc => 1 #default 0
);
my $fh;
open($fh, >:via(PerlIO::via::CBC), $file)
or die "Cant open $file for encryption: $!n";
print $fh $lots_of_secret_data;
close($fh)
or die "Error closing file: $!n";
open($fh, ;
close($fh)
or die "Error closing file: $!n";
This module implements a PerlIO layer that can read and read CBC encrypted files. It uses Crypt::CBC to do the CBC. So check Crypt::CBC for more information.
config(%args)
Allows the configuration of the CBC. Check Crypt::CBC->new() for more information.
<<lessSYNOPSIS
use PerlIO::via::CBC;
PerlIO::via::CBC->config(
key => my secret key,
cipher => Blowfish,
iv => $KJh#(}q,
regenerate_key => 0, # default true
padding => space,
prepend_iv => 0,
pcbc => 1 #default 0
);
my $fh;
open($fh, >:via(PerlIO::via::CBC), $file)
or die "Cant open $file for encryption: $!n";
print $fh $lots_of_secret_data;
close($fh)
or die "Error closing file: $!n";
open($fh, ;
close($fh)
or die "Error closing file: $!n";
This module implements a PerlIO layer that can read and read CBC encrypted files. It uses Crypt::CBC to do the CBC. So check Crypt::CBC for more information.
config(%args)
Allows the configuration of the CBC. Check Crypt::CBC->new() for more information.
Download (0.005MB)
Added: 2007-04-11 License: Perl Artistic License Price:
926 downloads
PerlIO::via::Logger 1.01
PerlIO::via::Logger is a PerlIO layer for prefixing current time to log output. more>>
PerlIO::via::Logger is a PerlIO layer for prefixing current time to log output.
SYNOPSIS
use PerlIO::via::Logger;
PerlIO::via::Logger->format( [%b %d, %Y %r] );
use PerlIO::via::Logger format => [%b %d, %Y %r] ;
open( my $in,:via(Logger),fileout )
or die "Cant open file.ln for writing: $!n";
PerlIO::via::Logger::logify(*STDOUT); # redirect stdout in one line!
PerlIO::via::Logger::logify(*openhandle); # or any other handle
This module implements a PerlIO layer that prefixes the current time to each line of output or input. This module was created because I frequently need to use file logging systems in daemon-style Perl systems. This module was created to fulfill three requirements:
1. Must be low overhead/fast
2. Must be simple to use (i.e. print "something to logn")
3. Must be able to add a prefix to each line (times in my case)
CLASS METHODS
The following two class methods allow you to alter the prefix formatting string used by the I/O layer and to redirect existing filehandles with (almost) no effort.
For convienance, class methods can also be called as key-value pairs in the use statement. This allows you to use this module in an "import and forget it" fashion.
Please note that the new value of the class methods that are specified, only apply to the file handles that are opened (or to which the layer is assigned using binmode()) after they have been changed.
format
use PerlIO::via::Logger format => [%b %d, %Y %r] ;
PerlIO::via::Logger->format( [%b %d, %Y %r] );
my $format = PerlIO::via::Logger->format;
The class method format returns the format that will be used for adding the time to lines. The optional input parameter specifies the format that will be used for any files that are opened in the future. You should use only the conversion specifiers defined by the ANSI C standard (C89, to play safe). These are aAbBcdHIjmMpSUwWxXyYZ% . The default is [%b %d, %Y %H:%M:%S] , though the examples throughout this document use a more elegant - but less portable - format.
logify
PerlIO::via::Logger::logify( $filehandle );
PerlIO::via::Logger::logify( *WRITEFH );
PerlIO::via::Logger::logify( *STDOUT );
The class method logify exists purely for convenience and my personal use. I do not recommend using it unless your systems are for development only, or you understand how it works. In short it will reopen the given filehandle through the Logger I/O layer.
<<lessSYNOPSIS
use PerlIO::via::Logger;
PerlIO::via::Logger->format( [%b %d, %Y %r] );
use PerlIO::via::Logger format => [%b %d, %Y %r] ;
open( my $in,:via(Logger),fileout )
or die "Cant open file.ln for writing: $!n";
PerlIO::via::Logger::logify(*STDOUT); # redirect stdout in one line!
PerlIO::via::Logger::logify(*openhandle); # or any other handle
This module implements a PerlIO layer that prefixes the current time to each line of output or input. This module was created because I frequently need to use file logging systems in daemon-style Perl systems. This module was created to fulfill three requirements:
1. Must be low overhead/fast
2. Must be simple to use (i.e. print "something to logn")
3. Must be able to add a prefix to each line (times in my case)
CLASS METHODS
The following two class methods allow you to alter the prefix formatting string used by the I/O layer and to redirect existing filehandles with (almost) no effort.
For convienance, class methods can also be called as key-value pairs in the use statement. This allows you to use this module in an "import and forget it" fashion.
Please note that the new value of the class methods that are specified, only apply to the file handles that are opened (or to which the layer is assigned using binmode()) after they have been changed.
format
use PerlIO::via::Logger format => [%b %d, %Y %r] ;
PerlIO::via::Logger->format( [%b %d, %Y %r] );
my $format = PerlIO::via::Logger->format;
The class method format returns the format that will be used for adding the time to lines. The optional input parameter specifies the format that will be used for any files that are opened in the future. You should use only the conversion specifiers defined by the ANSI C standard (C89, to play safe). These are aAbBcdHIjmMpSUwWxXyYZ% . The default is [%b %d, %Y %H:%M:%S] , though the examples throughout this document use a more elegant - but less portable - format.
logify
PerlIO::via::Logger::logify( $filehandle );
PerlIO::via::Logger::logify( *WRITEFH );
PerlIO::via::Logger::logify( *STDOUT );
The class method logify exists purely for convenience and my personal use. I do not recommend using it unless your systems are for development only, or you understand how it works. In short it will reopen the given filehandle through the Logger I/O layer.
Download (0.006MB)
Added: 2007-07-25 License: Perl Artistic License Price:
821 downloads
GBookmarks via Right Click 1.0
GBookmarks via Right Click is an extension used to add 2 more options to your Right Click Menu. more>>
GBookmarks via Right Click is an extension used to add 2 more options to your Right Click Menu.
Add to Google Bookmarks.
View Google Bookmarks (In new TAB).
When you want to bookmark a webpage, simply Right Click and choose the +++++ option.
The page will be added to your Google bookmarks.
It doesnt get any easier than this.
Tested on:
OS X, with Firefox 1.5.x
Windows XP Firefox 1.5.x, 2.0.x
Linux Firefox 1.5.x,2.0.x
Works fine.
<<lessAdd to Google Bookmarks.
View Google Bookmarks (In new TAB).
When you want to bookmark a webpage, simply Right Click and choose the +++++ option.
The page will be added to your Google bookmarks.
It doesnt get any easier than this.
Tested on:
OS X, with Firefox 1.5.x
Windows XP Firefox 1.5.x, 2.0.x
Linux Firefox 1.5.x,2.0.x
Works fine.
Download (0.001MB)
Added: 2007-04-04 License: MPL (Mozilla Public License) Price:
933 downloads
VoiceApp 0.4.4
VoiceApp records sound from soundcard (or any file) and converts it to frequency domain via FFT, showing the result in a window. more>>
VoiceApp records sound from soundcard (or any file) and converts it to frequency domain via FFT, showing the result in a window. The result is thrown on the screen in matrixish colors.
<<less Download (0.090MB)
Added: 2006-01-10 License: GPL (GNU General Public License) Price:
1383 downloads
AWAG
AWAG is an application which dials a number via ISDN and plays a message. more>>
AWAG is an application which dials a number via ISDN and plays a message.
It can dial another number if the first call did not worked, or nobody answered the phone.
<<lessIt can dial another number if the first call did not worked, or nobody answered the phone.
Download (0.001MB)
Added: 2006-09-14 License: GPL (GNU General Public License) Price:
1135 downloads
PodNova 2.2
PodNova Desktop Client is the desktop application supporting the www.podnova.com website. more>>
PodNova Desktop Client is the desktop application supporting the www.podnova.com website. PodNova is an iSpider based iPodder client with automatic subscription updating via dynamic OPML.
<<less Download (1.3MB)
Added: 2005-12-15 License: GPL (GNU General Public License) Price:
1408 downloads
lintad 0.0.8
lintad is a Web-based voicemail/fax system using the Lucent/Agere Linmodem. more>>
Linux Telephone Answering Device (lintad) is a fax and voicemail application.
It uses a softmodem as a soundcard attached to the phoneline to play greetings and record messages.
Messages and faxes are made available to browsers via Apache and PHP.
<<lessIt uses a softmodem as a soundcard attached to the phoneline to play greetings and record messages.
Messages and faxes are made available to browsers via Apache and PHP.
Download (0.50MB)
Added: 2005-04-20 License: GPL (GNU General Public License) Price:
1649 downloads
Sundial 0.1.1
Sundial is a Web-based group schedule application. more>>
Sundial is a Web-based group schedule application used to share appointment information with groups and access it anywhere via the Internet.
Enhancements:
- A bug in appointment sorting was corrected.
- The capability to attach notes to a days page was added.
<<lessEnhancements:
- A bug in appointment sorting was corrected.
- The capability to attach notes to a days page was added.
Download (0.009MB)
Added: 2006-01-30 License: GPL (GNU General Public License) Price:
1363 downloads
squid-imap 1.0
squid-imap provides a piece of oftware to authenticate squid users via an IMAP server. more>>
squid-imap provides a piece of oftware to authenticate squid users via an IMAP server.
squid-imap is a basic squid auth helper that authenticates usernames and passwords via an IMAP server.
<<lesssquid-imap is a basic squid auth helper that authenticates usernames and passwords via an IMAP server.
Download (0.002MB)
Added: 2007-04-13 License: GPL (GNU General Public License) Price:
932 downloads
WhiteBoard 3.5
Wb is an remote conferencing application for shared drawing. more>>
Wb is an remote conferencing application for shared drawing developed by the Network Research Group of Lawrence Berkeley National Laboratory. Pre-compiled binaries are available on ftp. Wb-related questions and feedback are welcome and can be sent to the developers via wb@ee.lbl.gov.
<<less Download (3.6MB)
Added: 2006-06-21 License: GPL (GNU General Public License) Price:
1316 downloads
CGIFeed
CGIFeed is a CGI based feed reader. more>>
CGIFeed is a CGI program that reads news feeds (via XML/RDF/RSS) and prepares HTML pages for them.
You can enter new feeds through the Web page, and edit the name and update interval for each feed.
<<lessYou can enter new feeds through the Web page, and edit the name and update interval for each feed.
Download (0.009MB)
Added: 2005-04-26 License: Free To Use But Restricted Price:
1641 downloads
Joystick
Joystick is a utility to read commands from joystick and send to BMPx via DBUS. more>>
Joystick is a utility to read commands from joystick and send to BMPx via DBUS. Commands are configured via .ini file. Should be easy to work with other DBUS-consumers.
<<less Download (0.028MB)
Added: 2006-08-15 License: GPL (GNU General Public License) Price:
1168 downloads
EiffelMedia 1.0.0
EiffelMedia is a multimedia library for Eiffel. more>>
EiffelMedia is a multimedia library for Eiffel. The library allows you to use 2D and 3D graphics, sound, networking, and input via joystick and keyboard. EiffelMedia has many smaller frameworks that make life easier for a multimedia or game programmer.
<<less Download (42.3MB)
Added: 2007-08-22 License: Other/Proprietary License Price:
793 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 via 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