Main > Free Download Search >

Free to capture software for linux

to capture

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 382
JCapture 1.0

JCapture 1.0


JCapture is an automatic Webcam image grabber & image manipulator. more>>
JCapture is an automatic Webcam image grabber & image manipulator. Control it from your crontab once a minute, or however often you want to update the image.

A working installation of ImageMagick is required for this to run properly. I also use CQCam v0.90p7 to capture the image. You will need to change the associated lines in the file where necessary to adjust for paths to the proper executables on your machine.
<<less
Download (0.002MB)
Added: 2006-07-19 License: GPL (GNU General Public License) Price:
1223 downloads
Show Screen Captures 1.0

Show Screen Captures 1.0


Show Screen Captures is an extension which enables displaying screen captures of external links on a web page. more>>
Show Screen Captures is an extension which enables displaying screen captures of external links on a web page.

Displays screen captures of external links on a web page. Screen shots provided by openthumbshots.org.

A screenshot, screen capture, or screen dump is an image taken by the computer to record the visible items on the monitor or another visual output device. Usually this is a digital image taken by the host operating system or software running on the computer device, but it can also be a capture made by a camera or a device intercepting the video output of the computer.

Screenshots, screen dumps, or screen captures can be used to demonstrate a program, a particular problem a user might be having or generally when computer output needs to be shown to others or archived.

<<less
Download (0.004MB)
Added: 2007-04-04 License: MPL (Mozilla Public License) Price:
939 downloads
jack_capture 0.2.3

jack_capture 0.2.3


jack_capture is a small simple program to capture whatever sound is going out to your speakers into a file. more>>
jack_capture is a small simple program to capture whatever sound is going out to your speakers into a file.

jack_capture is the program I always wanted to have for jack, but no one made. So here it is.

Usage:

jack_capture [ -b bitdepth ] [-c channels] [ -B bufsize ] [filename]

Filename is by default auotogenerated to something like "jack_capture_ .wav"
Bitdepth is by default FLOAT.
Channels is by default 2.
Bufsize is by default 262144.

<<less
Download (0.006MB)
Added: 2006-03-23 License: GPL (GNU General Public License) Price:
1311 downloads
Test::Tester::Capture 0.103

Test::Tester::Capture 0.103


Test::Tester::Capture is a help testing test modules built with Test::Builder. more>>
Test::Tester::Capture is a help testing test modules built with Test::Builder.

This is a subclass of Test::Builder that overrides many of the methods so that they dont output anything.

It also keeps track of its own set of test results so that you can use Test::Builder based modules to perform tests on other Test::Builder based modules.

<<less
Download (0.014MB)
Added: 2006-11-01 License: Perl Artistic License Price:
1088 downloads
ltraf 0.2.1-pre1

ltraf 0.2.1-pre1


ltraf is a simple utility to list traffic flowing through a computers network interface. more>>
ltraf is a simple utility to list traffic flowing through a computers network interface. It can categorize the traffic based on bpf rules. It uses libpcap to capture network traffic.
The main goal of the project is to give systems administrators a chance to visualize the traffic flow through a linux based computers network interface in real time.
There are a number of projects that can do similar things (and even more) so you might want to try IPTraf or tcpdump but they are a bit different. Ill let you decide which is best for you.
TODO:
1. Implement timing options for display refresh and measurement
2. Write some more documentation. Like a man page or something.
Version restrictions:
- When interface speed is measured for a long time and too much data flows through some variable in math.c overflows at average calculations.
- Do we need to separate simplex and duplex filters ??
- Duplex filter bpf parsing is buggy and incomplete. Redesign it.
<<less
Download (0.014MB)
Added: 2005-10-04 License: GPL (GNU General Public License) Price:
1480 downloads
jNetPcap 1.0 Beta 4

jNetPcap 1.0 Beta 4


jNetPcap project is a Java wrapper around the Libpcap network packet capture library. more>>
jNetPcap project is a Java wrapper around the Libpcap network packet capture library. The low-level API is exposed in Java, which allows kernel buffer tuning, flags, and other features.

All captured packet buffers are wrapped, not copied, in efficient java.nio.ByteBuffer and delivered to Java by reference. This allows not-in-memory copies of packet data and very efficient and fast delivery of packets. The software is released for various platforms with the appropriate native library bundled.

<<less
Download (0.12MB)
Added: 2007-08-22 License: LGPL (GNU Lesser General Public License) Price:
795 downloads
Net::Pcap 0.12

Net::Pcap 0.12


Net::Pcap is an Interface to pcap(3) LBL packet capture library. more>>
Net::Pcap is an Interface to pcap(3) LBL packet capture library.

SYNOPSIS

use Net::Pcap;

my $err = ;
my $dev = Net::Pcap::lookupdev($err); # find a device

# open the device for live listening
my $pcap = Net::Pcap::open_live($dev, 1024, 1, 0, $err);

# loop over next 10 packets
Net::Pcap::loop($pcap, 10, &process_packet, "just for the demo");

# close the device
Net::Pcap::close($pcap);

sub process_packet {
my($user_data, $header, $packet) = @_;
# do something ...
}

Net::Pcap is a Perl binding to the LBL pcap(3) library. The README for libpcap describes itself as:

"a system-independent interface for user-level packet capture.
libpcap provides a portable framework for low-level network
monitoring. Applications include network statistics collection,
security monitoring, network debugging, etc."

<<less
Download (0.076MB)
Added: 2006-07-27 License: Perl Artistic License Price:
1207 downloads
StoryTestIQ 1.6

StoryTestIQ 1.6


StoryTestIQ is a tool for creating Executable Requirements which have also been known as acceptance tests or functional tests. more>>
StoryTestIQ is a tool for creating "Executable Requirements" which have also been known as acceptance tests or functional tests. STIQ was developed based on two other open source acceptance testing tools, Selenium and FitNesse.

This combination allowed StoryTestIQ to capture the web browser based testing facilities and elegant command language of Selenium along with the wiki based editing and pluggable Fit fixture loading of FitNesse. We believe that this increases the productivity of working with StoryTestIQ and also enhances the capabilities of Selenium to test beyond the user interface.

When developing web applications it is helpful for the cross-functional team to have a definitive and executable view of the requirements for a specified iteration.

StoryTestIQ may be used to record what the teams customer needs and get sign off before developing even a single line of code. Most of the test cases which are recorded will be failing. It is the responsibility of the team to implement the requirements in order to make the test cases pass. These practices are based in the tradition of Test-Driven Development.

Although teams would benefit greatly from the above approach in which your entire cross-functional team including the customer, business analyst, QA, development, and anybody else providing input on the product benefits, StoryTestIQ does not enforce this approach.

StoryTestIQ may also be used in traditional development teams to create acceptance and functional tests. They may be used to supplement the teams unit tests with a Test-Driven Development approach or even to automate existing manual test cases.

Check out the page on how to get started. Once you have StoryTestIQ running successfully, take a look at the users guide for more details on how to create test suites and test cases. As you become familiar with creating test cases you may take advantage of more StoryTestIQ commands in your functioanl tests.
<<less
Download (3.2MB)
Added: 2006-09-17 License: GPL (GNU General Public License) Price:
1135 downloads
RPCAP 0.23

RPCAP 0.23


RPCAP is a Remote Packet Capture system. more>>
RPCAP is a Remote Packet Capture system. It enables you to run a packet capture program (the server) on a target computer, which will sniff the network traffic on that system, and uplink the captured packets to another host (the client), where the captured packets can be processed, analysed and archived . The rpcap system thus consists of two separate processes, the server (or agent) which captures network traffic on a remote system, and a client, which receives and processes these packets. The server code is a standalone executable program which uses the libpcap packet capture library to capture network traffic. The client is actually a library called librpcap, which is linked to a user program and used on the client system in a manner identical to libpcap, to receive and process the packets which are captured.
The librpcap client library exposes a subset of the pcap API as defined in the pcap (3) manpage. The API is used in a manner identical to that of libpcap, so that any programs which do not use the libpcap functions not present in rpcap can directly link to rpcap in place of pcap. The API functions as a set of pcap-compatible wrapper functions over a Sun RPC interface to the remote server, which invoke the corresponding libpcap functionality on it.
At this time, rpcap has been built and tested only on Linux on Intel platforms. However, it should build on any UNIX like system that supports multithreading and has the RPC libraries and utilities available, so that it should be possible to build it on most systems. Please note however that there are a couple of bugs in the code (all my own!) that currently restrict it to little-endian systems. I will fix this ASAP.
Enhancements:
- New code release v.0.23 alpha
- added GNU autotools based build (autconf/ automake/ libtool)
- pcap_geterr rewritten
- pcap_compile fixed to accept null strings for tcpdump compatibility
- pointer issues with pcap_compile and pcap_open_live resolved
- made the code tcpdump compatible so that tcpdump now builds against librpcap
- added a port of tcpdump to rpcap
<<less
Download (0.12MB)
Added: 2006-07-06 License: GPL (GNU General Public License) Price:
1219 downloads
Cammgr 1.5

Cammgr 1.5


Cammgr manages a collection of web cameras. more>>
Cammgr manages a collection of web cameras. It will bring cameras online or offline, and initiate or suspend image capture operations.
Any camera can be controlled provided a driver is available. Cammgr supports multiple images per camera, default images for inactive cameras, per- user/host/camera notifications, and an easy-to- use configuration file.
Cammgr can scan Apache log files to auto-initiate image capture, and tune capture frequency can to the minimum needed to ensure that clients receive a new image on request.
Enhancements:
- Support for Axis network cameras was added.
- A bug where the pipe file descriptor was left open across shell exec was fixed.
- A client capture manager from where all capture processes are dispatched and monitored was created.
- A bug where the capture process did not go away when cammgr exited was fixed.
- Other miscellaneous cleanups were done.
<<less
Download (0.083MB)
Added: 2005-11-23 License: BSD License Price:
1430 downloads
Remote Capture for Canon PowerShot cameras 1.0.3-cvs

Remote Capture for Canon PowerShot cameras 1.0.3-cvs


Remote Capture for Canon PowerShot cameras is a tool for controlling Canon PowerShot cameras. more>>
Remote Capture for Canon PowerShot cameras project is a tool for controlling Canon PowerShot cameras.
The following cameras were reported to work with Capture. Please send a report to extend the list.
Canon PowerShot S50
Canon PowerShot A60
Canon PowerShot A70
Canon PowerShot A75
Canon PowerShot A80
Canon PowerShot A85
Canon PowerShot A95
Canon PowerShot A510
Canon PowerShot A520
Canon PowerShot G6
Canon Digital IXUS 400 (aka PowerShot S400)
Canon PowerShot S410
Canon PowerShot S500
The main advantage of Capture over gPhoto is that the consecutive shots are taken without the camera lenses being closed and opened again. When taking several thousand shots in a row, this indeed lets the camera live longer.
Enhancements:
- This release adds some minor enhancements and fixes.
- The code is stable.
<<less
Download (0.029MB)
Added: 2006-07-10 License: GPL (GNU General Public License) Price:
1245 downloads
Local Data Manager 6.6.5

Local Data Manager 6.6.5


Local Data Manager is a collection of cooperating programs that select, capture, manage, and distribute arbitrary data products. more>>
Local Data Manager (LDM) is a collection of cooperating programs that select, capture, manage, and distribute arbitrary data products.
The system is designed for event-driven data distribution, and is currently used in the Unidata Internet Data Distribution (IDD) project. The LDM system includes network client and server programs and their shared protocols.
An important characteristic of the LDM is its support for flexible, site-specific configuration.
Enhancements:
- Fixes for timestamp bugs.
<<less
Download (0.61MB)
Added: 2007-08-09 License: BSD License Price:
809 downloads
Parcelle 1.2

Parcelle 1.2


Parcelle project is a PyGTK application that captures and saves clipboard history. more>>
Parcelle project is a PyGTK application that captures and saves clipboard history.
Main features:
- Automatically captures clipboard changes.
- Saves clipboard history.
- Sort and search through entries.
- Edit and save changes to entries.
- Edit current clipboard contents.
- Dates entry additions and edits.
- Option to launch on startup to capture quietly.
<<less
Download (0.017MB)
Added: 2007-08-21 License: GPL (GNU General Public License) Price:
797 downloads
gtkShots 0.1

gtkShots 0.1


gtkShots is a python/GTK application to capture screenshots continuosly. more>>
gtkShots is a python/GTK application to capture screenshots continuosly.

gtkShots is a python/GTK application to capture screenshots continuosly. It is a hand tool to automatically save the screenshots in a (un)specified period of time, with the possibility to schedule it and to choose options for each screenshot to be saved, such as the size, the parent folder and the time interval between them.

gtkShots could be used for a lot of different aims, for instance to create presentations, to monitor desktop activity, or for any other scope that needs a screenshots sequence.

gtkShots is actually a GUI frontend to pyshots, my command-line python script to do the same job. Thus, if you need to work on the terminal sessions, you could take advantage of this.

gtkShots / pyshots are completely FOSS, free and open source software, released under the terms of GNU GPL 2 license or (at your option) any later version.

<<less
Download (0.025MB)
Added: 2006-03-23 License: GPL (GNU General Public License) Price:
1313 downloads
Performance Co-Pilot 2.5.0

Performance Co-Pilot 2.5.0


Performance Co-Pilot is a performance monitoring toolkit and API. more>>
Performance Co-Pilot (PCP) is a framework and services to support system-level performance monitoring and performance management.
The services offered by PCP are especially attractive for those tackling harder system-level performance problems. For example this may involve a transient performance degradation, or correlating end-user quality of service with platform activity, or diagnosing some complex interaction between resource demands on a single system, or management of performance on large systems with lots of "moving parts".
The distributed PCP architecture makes it especially useful for those seeking centralized monitoring of distributed processing (e.g. in a cluster or webserver farm environment), especially where a large number hosts are involved.
Main features:
- A single API for accessing the performance data that hides details of where the data comes from and how it was captured and imported into the PCP framework.
- A client-server architecture allows multiple clients to monitor the same host, and a single client to monitor multiple hosts (e.g. in a Beowulf cluster). This enables centralized monitoring of distributed processing.
- Integrated archive logging and replay so a client application can use the same API to process real-time data from a host or historical data from an archive.
- The framework supports APIs and configuration file formats that enable the scope of performance monitoring to be extended at all levels.
- An "plugin" framework (libraries, APIs, agents and daemon) to collect performance data from multiple sources on a single host, e.g. from the hardware, the kernel, the service layers, the application libraries, and the applications themselves.
- Libraries and sample implementations encourage the development of new "plugins" (or agents) to capture and export the performance data that matters in your application environment, along side the other generic performance data.
- An endian-safe transport layer for moving performance metrics between the collector and the monitoring applications over TCP/IP. This means an IRIX desktop with PCP can monitor one or more Linux systems with the Open Source release of PCP installed.
- A Linux agent that exports a broad range of performance data from most kernels circa 2.0.36 (RedHat 5.2) or later. This includes coverage of activity in the areas of: CPU, disk, memory, swapping, network, NFS, RPC, filesystems and all the per-process statistics.
- Other agents export performance data from:
- Web server activity logs
- arbitrary application-level tracing (via a PCP trace library)
- Cisco routers
- sendmail
- the mail queue
- the PCP infrastructure itself
- Assorted simple monitoring tools that use the PCP APIs to retrieve and display either arbitrary performance metrics, or specific groups of metrics (as in pmstat a cluster-aware vmstat lookalike).
- The PCP inference engine supports automated monitoring through a rule-based language and interpreter that performs user-defined actions when rule predicates are found to be true.
<<less
Download (1.3MB)
Added: 2006-10-25 License: LGPL (GNU Lesser General Public License) Price:
1094 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5