Main > Free Download Search >

Free empty clip software for linux

empty clip

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 523
Empty Clip 1.0.2

Empty Clip 1.0.2


Empty Clip is a top-down, 2D Action RPG. more>>
Empty Clip is a top-down, 2D Action RPG. Empty Clip draws heavily from games such as Crimsonland, Diablo, Alien Swarm, Grand Theft Auto II, and more. There is a campaign, adventure, survival, and primitive deathmatch mode.
Main features:
- 3D hardware accelerated graphics
- Sound and music
- Over 200 different monsters
- Over 400 different items including weapons, armor, and upgrades
- 30+ hours of gameplay
- Travel through mansions, dungeons, forests, caves, cities, skyscrapers, deserts, hell, and alien worlds
- Deathmatch over TCP/IP
<<less
Download (4.4MB)
Added: 2006-06-08 License: GPL (GNU General Public License) Price:
1234 downloads
CLIP 1.2.0

CLIP 1.2.0


CLIP is a Clipper/XBase compatible compiler. more>>
CLIP is a Clipper/XBase compatible compiler with initial support other xBase dialects. CLIP project features support for international languages and character sets.
It also features OOP, a multiplatform GUI based on GTK/GTKextra, all SIX/Comix features (including hypertext indexing), SQL and ODBC drivers, a C-API for third-party developers, a few wrappers for popular libraries (such as BZIP, GZIP, GD, Crypto, and Fcgi), a multitasking client and application server based on TCP/IP sockets, object data base utilities, and a functions library.
Main features:
- Preprocessor
- Fully compatible CA-Clipper with with some new possibilities.
- Compiler
- slight incompability with CA-Clipper, which may be resolved easily, using the "search and replace" method. In addition it can compile to C program, byte-code, dynamic library and mixed C+byte-code.
- Very fast and efficient OO-model
- Difference from CA-Clipper reveals itself in part of descriptions and making an object, but in part of using the ready objects syntax and logic of functioning is completely the same.
- It is possible to write programs on CLIP, without using other syntax excepting OOP.
- Initial support syntax from FS,CAVO,FoxPro.
- C-API
- has much more possibilities than CA-Clipper.
- Full international support
- Including adjustment on any code page of any language on any keyboard (with stelnet emulator only or on consoles), substitution of string constants during execution and changing a logic of functioning with strings, given for functions alpha, digit, lower, upper, subscripted weight factors etc.
- Support two-bytes charsets BIG5,GB , may be Korean,Japan too.
- GUI, based on GTK
- Provides using of all widgets and processing the events
- Using of dynamic libraries,
- loading and execution of the byte-code from external files ( in run-time, too ).
- Compatibility
- up to Clipper 5.3 (support of objects menu, button, check and other get-objects), as well as standard classes tbrowse,get,error.
- Are implemented a lot of CA_Tools functions, including all functions for processing the lines, dates, files, mathematicians.
- support all SIX functions and features
- MEM,DBF,DBT,FPT,NTX,CTX,CDX,NSX...
- VFP data types: datetime,currency
- RDD allows to use your own drivers, as well as use a driver, combined from several different drivers.
- RDD also allows to use only OO-style, without using of aliases
- Multitask support
- CODB - CLIP Object Data Base
- SQL
- libraries and classes for direct access to SQL-servers (PG,MySql,Oracle,Interbase)
- ODBC and ODBC bridge to Windows drivers.
- SQL-interpreter and commands, compatible with FoxPro
- Other possibilities
- Overloading operators for objects.
- Support of regular expressions.
- function for TCP/IP sockets connections
- COM_() functions
- Rushmore like technology, but more fast and efficient.
- Support of very-large-scale numbers with unlimited accuracy.
- Support of graphic files PNG,GD,JPEG and primitives like lines, rectangles, firing ranges, circumferences etc.
- Several common classes for word processorses, html/cgi programms.
- Several utilities for interpreting the patterns of the documents, www_sql,clip_bl, clip_blank, clip_sql, clip_hindex, clip_hseek etc.
- multiwindows interactive debugger.
- Supported OSes
- linux, freebsd, openBsd, SPARC & x86 solaris, IBM mainframe with TurboLinux, Win32 ( with CYGWIN development tools)
- TODO list
- Windows support
- FiveWin compatiblies.
- FoxPro compatiblies.
Enhancements:
- This release added fixes to support UTF environments, GCC 4.x, and newer Linux distributions.
- Some new utilities, functions, and documentation were added.
<<less
Download (4.4MB)
Added: 2006-10-31 License: GPL (GNU General Public License) Price:
1105 downloads
pgmfindclip 1.13

pgmfindclip 1.13


pgmfindclip project can automatically find a clipping border for a sequence of pgm images (a fine companion for transcode). more>>
pgmfindclip project can automatically find a clipping border for a sequence of pgm images (a fine companion for transcode on Linux).
This tool tries to find a suitable clipping border for a series of gray images. It is very useful to automatically extract clipping values for transcoding a movie if the source frame is encoded with black bars.
A border around an image is defined by a rectangular and homogenous valued area extending from each edge of the image (e.g. the black bars around a movie frame). For each image the largest clip border is determined and the smallest common region of the image series is returned. Empty images or images with no valid clipping region are ignored.
To cope with noisy regions in the black border areas, the region finding algorithm does not simply cut away all regions with purely zero values, but it uses a threshold in the absolut gradient sum along rows and columns as a hint for the begin of real image contents.
You need a frame processing tool like transcode to actually perform the clipping operation.
The program assumes that all images have the same size!
Installation:
Compile the source code with the given Makefile and place the resulting binary in your PATH.
Usage:
You first have to generate a gray image sequence from your movie. The combination of the -K and -y ppm switches in transcode is very useful in this situation:
transcode .... -K -y ppm -o sample
It is very important to extract frames from different regions of the movie. It is usually a bad idea to extract the first couple of frames of a movie since they often contain a black screen or logos that would lead to wrong clipping borders. A better and still efficient solution is to pick all the files of the movies title set (the VTSxxx.VOB files) and use the VOB mode of transcode to extract a single frame from each file (bash syntax!):
for a in *.vob; do transcode -i $a -x vob -z -K -y ppm -o sample -c 32-33 ; done
Note that I skip a couple of frames (here 32) because decoding of movie frames at the beginning of a vob file is not always possible correctly. (The set of VOB files is a locigal unit but the files itself are only splitted due to file/filesystem size constraints (=1GB)). Also note the -z option to flip the frames.
Then you can run pgmfindclip with:
pgmfindclip sample*.pgm
The clipping border is returned as a list of 4 comma separated values:
< top >,< left >,< bottom >,< right >
This is the correct syntax for the clipping option (-J) of transcode:
CLIP=`pgmfindclip sample*pgm`
transcode .... -j $CLIP ....
Constrain the result
pgmfindclip has various options to constrain the calculated clipping result. You can force that the resulting image is a multiple of a given factor. Also the border can be rounded to another factor. This is useful if you want to process the clipped image with a video coder that imposes such restrictions on the input format:
Give the modulo for the target image size with the -f option. The modulo for the border is given with -b. pgmfindclip will issue an error message if the combined aligning of frame and border is not possible. The frame size will be reduced to meet the restrictions and thus the border will be enlarged. You can swap this behaviour with the -e (expand) option. Then the frame might be larger than the determined clip region.
pgmfindclip -f 16 sample*.pgm
This example enforces a modulo of 16 in both directions.
More Features
- If the black bars are not zero valued but have a value above zero then the gradient is very large at the border of the image. You can skip this test by specifying the -o (offset) option. Then the search will start n rows/columns later.
- You can add a safety border to the calculated clipping region with the -s option. This is useful to skip bleeding artifacts at the border of scanned analog material.
- You can visualize the found clip border with the -w option. This option will write new PGM images (*-m.pgm) with the clip border drawn as an inverted rectangle in it.
Enhancements:
- added patch by Svante Signell (fixes a div by zero bug)
<<less
Download (0.005MB)
Added: 2006-05-26 License: GPL (GNU General Public License) Price:
1246 downloads
Open Clip Art Library 0.18

Open Clip Art Library 0.18


The Open Clip Art Library is a collection of royalty free clip art in SVG format. more>>
The Open Clip Art Library is a collection of royalty free (public domain) clip art in SVG format, enhanced with creative commons metadata.
It can be redistributed with free software or closed software and with various software distributions.
Enhancements:
- The collection now contains a total of 6900 images.
- New top level categories include "science" and "electronics".
- New subsections include "religion", "astronomy", "network", and more.
- The flags collection has been fleshed out and improved.
- A bunch of new signs and symbols were added.
- There are lots of new vehicles, office, sports, music, and toys clipart.
<<less
Download (120.8MB)
Added: 2005-10-17 License: Public Domain Price:
833 downloads
2clipboard 0.5

2clipboard 0.5


2clipboard is a service menu that copy the URL or the name of a file or directory to the clipboard. more>>
2clipboard is a service menu that copy the URL or the name of a file or directory to the clipboard.

Installation:

1. extract 2clipboard.tar.gz

2. copy clip.py to bin somewhere in Your path (i.e. to ~/bin)

3. copy 2clipboard.desktop to ~/.kde/share/apps/konqueror/servicemenus or use the famous Add Action Service Menu

Its only in english or german - for other languages complete 2clipboard.desktop or post me

Thanks to Armin Straub for clip.py.

<<less
Download (0.002MB)
Added: 2006-06-15 License: GPL (GNU General Public License) Price:
700 downloads
Xfce 4 Clipman Plugin 0.8.0

Xfce 4 Clipman Plugin 0.8.0


Xfce 4 Clipman Plugin allows you to keep several clipboard selections in memory which you can then use to toggle. more>>
Xfce 4 Clipman Plugin allows you to keep several clipboard selections in memory which you can then use to toggle. It can pull the clips from both the selection and the copy buffer, restore your clipboard on login and prevent an empty clipboard.
Usage:
- Compile or install the clipman package
- Right-click the Xfce panel > Add New Item > Clipman
<<less
Download (0.19MB)
Added: 2007-03-06 License: GPL (GNU General Public License) Price:
963 downloads
Clipmarks 2.0.2

Clipmarks 2.0.2


Clipmarks is a Firefox Extension and its about breaking down the web into pieces instead of pages. more>>
Clipmarks is a Firefox Extension and its about breaking down the web into pieces instead of pages.

When you find something in a web page that interests you, clip it.

By adding tags to clipmarks, youre able to create your own searchable collection of things youve clipped from the web.

Clipmarks is also about seeing and discussing things that other people are clipping.

<<less
Download (0.095MB)
Added: 2007-04-10 License: MPL (Mozilla Public License) Price:
929 downloads
jset 0.20

jset 0.20


jset project is an implementation of the Set board game. more>>
jset project is an implementation of the Set board game.

The game can be played alone or on the network. The Set board game is a card game whose goal is to find matching sets of cards.

The game is played using 81 (3^4) unique cards. On each card is drawn a set of identical shapes.

These sets of shapes have 4 properties, each shape property taken from a set of 3 possibilities: color (e.g. red, blue, and green), type (e.g. rectangle, circle, and triangle), fill (e.g. empty, full, and shaded), and number (e.g. one, two, and three).

The cards are disposed on the table in front of the players. The players must try to identify matching sets of cards.

<<less
Download (0.070MB)
Added: 2006-11-24 License: GPL (GNU General Public License) Price:
1064 downloads
qmeterslib 0.5.0

qmeterslib 0.5.0


qmeterslib library provides a highly customizable Qt widget for creating complex analog dial widgets. more>>
qmeterslib library provides a highly customizable Qt widget for creating complex analog dial widgets. It supports multiple scales, multiple needles, and customizable needles and backgrounds.
qmeterslib library works as a "container" QAnalogMeter widget that is initially empty. The developer must create one or more instances of a scale (clock or sector) and one or more instances of index/needle (clock, donut, pie). A demo application is included.
Enhancements:
- All KDE dependence was removed from the demo and the project itself.
- The project is now based on Qmake instead of KDevelop.
- Index behavior was corrected so that values out of range are not considered for widget update.
<<less
Download (0.15MB)
Added: 2007-01-15 License: GPL (GNU General Public License) Price:
1014 downloads
AdvanceCOMP 1.15

AdvanceCOMP 1.15


AdvanceCOMP is a collection of recompression utilities for your .ZIP archives, .PNG snapshots, .MNG video clips and .GZ files. more>>
AdvanceCOMP is a collection of recompression utilities for your .ZIP archives, .PNG snapshots, .MNG video clips and .GZ files.
Its mainly intended for recompressing your rom, snapshot and clip collection of emulated games.
Main features:
- Recompress ZIP, GZ, PNG and MNG files using the Deflate 7-Zip implementation.
- Recompress MNG files using Delta and Move optimization.
Enhancements:
- This release fixed a lot of bugs for 64-bit platforms.
<<less
Download (0.25MB)
Added: 2005-11-01 License: GPL (GNU General Public License) Price:
1455 downloads
mp3dup 0.3

mp3dup 0.3


mp3dup looks for duplicate files in recursively searched directories. more>>
mp3dup looks for duplicate files in recursively searched directories. It is written to check for duplicate MP3 files, but can be used to find duplicate files of any type.
Parsed files are inserted in a hash table keyed with the size of the file. Files with the same size are md5summed, and those md5sums are inserted in a new hash table. Files with the same size and md5sum are brute-force-diffed. Non regular files are just skipped. Empty files are printed as such.
mp3dup can also find files that are equal with the first, or last N bytes. This is accomplished by hashing on the head and tail parts of the files, and byte-comparing the collisions.
Enhancements:
- Identical files are no longer reported as Match:ID3 too.
<<less
Download (0.033MB)
Added: 2006-07-26 License: GPL (GNU General Public License) Price:
1185 downloads
Kdenlive 0.5

Kdenlive 0.5


Kdenlive is a non-linear video editor for KDE. more>>
Kdenlive is a non-linear video editor for KDE. Kdenlive project provides all project management and editing tools while relying on a separate rendering program (currently PIAVE) to perform the editing operations.
Support is planned for transitions, effects, multiple file formats, and full project and asset management support. The current beta release is capable of editing raw DV or AVI DV files, with tools such as move, razor, and resize, selecting parts of clips using in/outpoints, and exporting the result to another raw DV file.
You may playback/preview the contents of the timeline at any point during the edit. Full project save/load is supported.
Enhancements:
- New image formats
- Added support for gimp xcf and exr.
- Other supported formats are: png, jpeg, gif (non animated), xcf, exr, tiff, svg, mp3, vorbis, wav, flash, mpeg, avi, dv, wmv,... You can even insert another Kdenlive project in the timeline!
- Effects and Transitions
- Many fixes, and effects and transitions can now be copied from a clip to another.
- Export formats
- Theora export is now available if FFMPEG was compiled with theora support.
- Timeline
- Improved markers, allow insertion of of several clips in one operation, added "remove empty space" feature, multi clip selection tool
- Metadata
- Kdenlive can now read and write metadata in video and audio files
- Video preview
- Overlay project timecode on the video preview. Click in monitor to play / pause, mouse wheel to seek, multi track view (monitor is split in 4 zones, each one showing a different track),
- Project management
- User can define a frame that will be used as thumbnail for each video clip in the project
- General
- Many fixes to the undo / redo system, lots of ui fixes and enhancements
<<less
Download (2.4MB)
Added: 2007-08-12 License: GPL (GNU General Public License) Price:
852 downloads
libgpod 0.5.2

libgpod 0.5.2


libgpod is a shared library to access the contents of an iPod. more>>
libgpod is a shared library to access the contents of an iPod. libgpod library is based on code used in the gtkpod project. Starting with V0.96.CVS gtkpod depends on this library.
This code was originally part of gtkpod itself. When the parsing code was made self-contained with gtkpod V0.93, we chose to put this code in a separate library so that other projects can benefit from it without duplicating code.
libgpod supports playlists, smart playlists, playcounts, skipcounts, ratings, podcasts and cover art. Audio as well as video is supported. Photo support has been implemented with version 0.4.2.
libgpod is licensed under the LGPL.
Enhancements:
- This release fixes a problem with empty sort strings which caused multiple listings of albums on the iPod.
<<less
Download (0.79MB)
Added: 2007-06-24 License: LGPL (GNU Lesser General Public License) Price:
855 downloads
Tag Soup 1.0.5

Tag Soup 1.0.5


TagSoup is a SAX2 parser written in Java. more>>
TagSoup is a SAX2 parser written in Java that, instead of parsing well-formed or valid XML. Tag Soup parses HTML as it is found in the wild: nasty and brutish, though quite often far from short.

By providing a SAX interface, it allows standard XML tools to be applied to even the worst HTML. It is a parser, not a whole application; it isnt intended to permanently clean up bad HTML, as HTML Tidy does, only to parse it on the fly.

The following options are understood:

--files
Output into individual files, with html extensions changed to xhtml. Otherwise, all output is sent to the standard output.
--html
Output is in clean HTML: the XML declaration is suppressed, as are end-tags for the known empty elements.
--omit-xml-declaration
The XML declaration is suppressed.
--method=html
End-tags for the known empty HTML elements are suppressed.
--pyx
Output is in PYX format.
--pyxin
Input is in PYXoid format (need not be well-formed).
--nons
Namespaces are suppressed. Normally, all elements are in the XHTML 1.x namespace, and all attributes are in no namespace.
--nobogons
Bogons (unknown elements) are suppressed. Normally, they are treated as empty.
--nodefaults
suppress default attribute values
--nocolons
change explicit colons in element and attribute names to underscores
--norestart
dont restart any normally restartable elements
--any
Bogons are given a content model of ANY rather than EMPTY.
--lexical
Pass through HTML comments. Has no effect when output is in PYX format.
--reuse
Reuse a single instance of TagSoup parser throughout. Normally, a new one is instantiated for each input file.
--nocdata
Change the content models of the script and style elements to treat them as ordinary #PCDATA (text-only) elements, as in XHTML, rather than with the special CDATA content model.
--encoding=encoding
Specify the input encoding. The default is the Java platform default.
--help
Print help.
--version
Print the version number.

<<less
Download (0.050MB)
Added: 2007-03-21 License: GPL (GNU General Public License) Price:
948 downloads
KPhoTools 0.2.1

KPhoTools 0.2.1


PhoTools is an Image Album generation tool. more>>
KPhoTools is a program for KDE which helps you creating fast online photo galleries in HTML.
KPhoTools is an Image Album generation tool. It creates an HTML Album containing your Images in HTML which can be published as webpage. It can rotate/resize images, blend logos, create thumbnails, and create albums in several styles.
Main features:
- Rotating images
- Rezising images
- Create thumbnails
- Image filters (*)
- Several styles
- Logo Blending
Features of the albums are:
- Simple and clean indexing
- Nice overview of your pics
- Slideshows
- No PHP needed! (only HTML & Javascript)
- Preloading (no empty boxes on screen)
- Not present pics wont be loaded (box will be shown)
- Screenshot function
- Screenshots from desktop
- Screenshots from selected areas on your desktop
- Screenshots of single windows
<<less
Download (0.69MB)
Added: 2005-09-14 License: GPL (GNU General Public License) Price:
1501 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5