Main > Free Download Search >

Free high quality dog food software for linux

high quality dog food

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2007
High Visibility Calculator 0.0.9

High Visibility Calculator 0.0.9


High Visibility Calculator is a high visibility calculator for people with disabilities. more>>
High Visibility Calculator is a high visibility calculator for people with disabilities.

Large buttons with bold text are easy to push for people with motor control or vision problems.
<<less
Download (0.014MB)
Added: 2006-11-06 License: GPL (GNU General Public License) Price:
1083 downloads
Audiality 0.1.1

Audiality 0.1.1


Audiality is a scalable and portable audio engine for music and sound effects. more>>
Audiality is a scalable and portable audio engine for music and sound effects. It is intended to play equally well in studios and inside games, in order to serve as a flexible tool for content creation, and for use in the final product.

Audiality uses MIDI files in combination with scripting and modular synthesis, to minimize file sizes and maximise flexibility. It is very portable, and supports both integer and floating point processing modes.

Scalability has been a major priority from the start. The current version will run on very low end Pentium systems, but can also produce high quality audio on more powerful hardware.
The main goal for the future is to extend the scalability of Audiality well into the range of serious home and professional studio use. The idea is to provide total control, a wide range of features, tools for fast and effective creation of original sounds, and excellent audio quality.

<<less
Download (0.80MB)
Added: 2006-08-03 License: LGPL (GNU Lesser General Public License) Price:
1178 downloads
GNU/Linux Desktop Testing Project 0.8.0

GNU/Linux Desktop Testing Project 0.8.0


GNU/Linux Desktop Testing Project is aimed at producing high quality test automation framework. more>>
GNU/Linux Desktop Testing Project (GNU/LDTP) is aimed at producing high quality test automation framework and cutting-edge tools that can be used to test GNU/Linux Desktop and improve it.
GNU/Linux Desktop Testing Project uses the "Accessibility" libraries to poke through the applications user interface. The framework has tools to generate "AppMap" by reading through the user interface components of an application. The framework also has tools to record test-cases based on user-selection on the application.
GNU/LDTP core framework uses "AppMap" and the recorded "test-cases" to test an application and gives the status of each test-case as output.
As of now, GNU/LDTP can test any GNOME application which are accessibility enabled, Mozilla, OpenOffice.org, any Java application (should have a UI based on swing) and KDE 4.0 applications based on QT 4.0 (based on the press releases by KDE).
We encourage you to join the project and help us to create robust, reliable and stable test tool/framework for Linux Desktops.
Main features:
- LDTP concepts are derived from Software Automation Framework Support
- LDTP supports verification of actions performed (GuiExist, VerifyState, etc) - API Reference
- Writing test scripts are very easy, the script writer need not know about the object hierarchy
- CPU / Memory performance monitoring of application-under-test can be measured - Class pstats
- From the XML log, we can gather HTML report using XSLT
- Group based execution, which provides precise control on the flow of test-script execution - Gldap XML
- Scripts can be written as a reusable component and for that the datas can be stored / retrieved in XML - Data XML
- User-friendly Text Editor with syntax highlighting for generating and grouping test data Howto use LDTP Editor
- Objects are identified both statically and dynamically
Enhancements:
- Now automation scripts can be written without using time.sleep.
- A particular object and its child can be remapped in a window.
- Memory leaks were fixed.
<<less
Download (0.36MB)
Added: 2007-02-22 License: LGPL (GNU Lesser General Public License) Price:
978 downloads
QuteMol 0.4

QuteMol 0.4


QuteMol is an open source, interactive, high quality molecular visualization system. more>>
QuteMol is an open source, interactive, high quality molecular visualization system. QuteMol exploits the current GPU capabilities through OpenGL shaders to offers an array of innovative visual effects.
QuteMol visualization techniques are aimed at improving clarity and an easier understanding of the 3D shape and structure of large molecules or complex proteins.
Main features:
- Real Time Ambient Occlusion
- Depth Aware Silhouette Enhancement
- Ball and Sticks, Space-Fill and Liquorice visualization modes
- High resolution antialiased snapshots for creating publication quality renderings
- Interactive rendering of large molecules and protein (100k atoms)
- Standard PDB input
QuteMol was developed by Marco Tarini and Paolo Cignoni of the Visual Computing Lab at ISTI - CNR.
Enhancements:
- Major stable release.
New Features:
- Color per chain selectable. (rather then per atom). Random color schemas can be cycled.
- Export of GIF animation Is is now possible to export GIF animations featuring the current model under inspections (useful for websites)
Minor Features:
- Progress bar shown during any long processing task (which can be cancelled)!
- Various minor speed improvements
- Save snapshot dialog to change the resolution of the fly
Bugfixes:
- Link to Qutemol webpage fixed (now using wxWidgets v. 8.0)
- Fixed a bug that prevented some 2-letter atoms to be correctly understood
- Fixed the clipping plane bug (large molecules where shown as if cut in half)
- Various minor fixes
<<less
Download (0.22MB)
Added: 2006-12-21 License: GPL (GNU General Public License) Price:
1037 downloads
KWiideo 0.1

KWiideo 0.1


KWiideo is a video encoder for the mjpeg codec, which is supported by the Nintendo Wii. more>>
KWiideo is a video encoder for the mjpeg codec, which is supported by the Nintendo Wii.

You can use mencoder or ffmpeg as encoder. If you want to add subtitles you have to use mencoder, because ffmpeg cant add srt files to videos (maybe ffmpeg can do it, but didnt found a function for it).

You can set the quality of the output video using the quality slider. Available values 1 (best quality, largest files) to 30 (poor quality, small files). An other way to change the quality is setting the bitrate. High bitrates create better quality, but the filesize increase. It is not possible to use the quality slider and the bitrate setting function at the same time. Changing the bitrate seems not to work with mencoder and mjpeg as codec, you better take the quality slider when you use mencoder as encoder.

For splitting the video, you need avisplit. Comments are welcome.

<<less
Download (0.056MB)
Added: 2007-05-21 License: GPL (GNU General Public License) Price:
889 downloads
SimCList 1.2

SimCList 1.2


SimCList project is a high quality C library for handling lists. more>>
SimCList project is a high quality C library for handling lists.
SimCList is available for free, under restrictions imposed by the BSD license.
SimCList API is good because:
- it is simple, yet powerful
- it makes elegant and consistent use of information hiding
- it abstracts the actual data type to store
- it is fairly total
The library itself is very performant and makes a good compromise between performance in terms of time and space:
- insertion is O(n) [typically n/8]
- extraction and deletion are O(n) [typically n/8]
- iteration is O(1)
- sorting is always O(n logn), without worst case
Thread safety
The SimCList library is thread safe, meaning that many threads can run SimCList operators on different lists concurrently without hurt, or also read operations on the same list.
However, of course, no safety guarantee is made for performing concurrently write+write or read+write operations on the same list (eg: insertion, deletion, sorting, ...). For performance and portability reasons, protecting such operations from concurrency is left to the library adopter.
Performance
SimCList has been designed with ease to use and performance in mind. There is some example factors that have been taken into account, and against which the code has been optimized when implementing SimCList:
- overhead of function calls
- cache locality
- number of branches, possible CPU stalls or pipeline flushes
- dynamic memory allocation weight on the OS
- other mathematic/probabilistic optimizations for avoiding worst-case or improving average case behaviours in algorithms
Many parts of SimCLists code have been deeply improved with profiling analysis.
Enhancements:
- Transparent inclusion in C++ applications is natively supported.
- Sentinels are used to improve performance on list traversals.
- A problem was fixed with list_insert_at, which could output inconsistent lists when inserting into even-sized lists in position 0.
<<less
Download (0.022MB)
Added: 2007-06-18 License: BSD License Price:
858 downloads
GTDInbox 1.33

GTDInbox 1.33


GTDInbox is a thunderbird which discreetly integrates into Gmail making it even more suitable as a GTD tool. more>>
GTDInbox is a thunderbird which discreetly integrates into Gmail making it even more suitable as a GTD tool.
GTDInbox (formerly GTDGmail) discreetly integrates into Gmail making it even more suitable as a GTD tool.
GTD - Getting Things Done - is a simple and effective productivity concept: designed so that even the laziest and most scattered of people can be organised and stress free.
Main features:
- Easily Organise GTD Labels
- Quickly Review Outstanding Tasks
- Save Specialised Searches
- Send Myself Tasks and References
- Print Tasks to Cards
- Keyboard Shortcuts
Built by the authors of Bumble Search - a well-reviewed high quality extension that has featured in the national IT press - GTDInbox shares the same high production values.
<<less
Download (0.18MB)
Added: 2007-05-01 License: MPL (Mozilla Public License) Price:
907 downloads
Cirkuit 0.1.2

Cirkuit 0.1.2


Cirkuit 0.1.2 provides you with a friendly KDE4 graphical user interface for the Circuit macros GUI which helps you draw high-quality line diagrams to include in TeX, LaTeX, or similar documents more>>

Cirkuit 0.1.2 provides you with a friendly KDE4 graphical user interface for the Circuit macros GUI which helps you draw high-quality line diagrams to include in TeX, LaTeX, or similar documents.

Cirkuit builds a live preview of the source code and can export the resulting images in EPS, PDF, PNG or PSTricks format.

On Debian-based systems (e.g. Ubuntu/Kubuntu) type the following command to install the required apps:

  • sudo apt-get install texlive-latex-base texlive-base-bin texlive-extra-utils m4 ghostscript ps2eps

To build Cirkuit you need the KDE4 and Qt4 dev packages. To install them on Debian-based systems, type

  • sudo apt-get install kdelibs5-dev libqt4-dev

To build the application, follow the usual KDE4/CMake procedure:

  • tar xzvf cirkuit-0.1.tar.gz
  • cd cirkuit-0.1
  • mkdir build
  • cd build
  • cmake .. -DCMAKE_INSTALL_PREFIX=/usr
  • make
  • sudo make install

Enhancements:

  • Faster preview generation
  • Export to SVG
  • Line number visualization
  • Fixed cutting of figures when exporting to EPS/PDF
  • Fixed CMakeLists.txt
  • Various bug fixes

Requirements:

  • latex
  • m4
  • gs
  • dvips
  • epstopdf
  • ps2eps
  • Qt
<<less
Added: 2009-07-08 License: GPL Price: FREE
12 downloads
3Delight for 64-bit Linux 7.0

3Delight for 64-bit Linux 7.0


3Delight is a renderer to produce photo-realistic images on 64-bit linux. more>> 3Delight is a fast, high quality, RenderMan-compliant renderer designed to produce photo-realistic images in demanding production environments. The renderer was introduced to the public in the year 2000 after being used for more than a year as the sole renderer in a sister production company. It is now widely used and earning a reputation as a benchmark in rendering technology.
Some of its features include ray tracing, global illumination (including photon mapping, final gathering and high dynamic range lighting and rendering), realistic motion blur, depth of field, complete geometry support (including efficient rendering of hair and fur), programmable shaders, quality antialiasing and antialiased shadow maps. Advanced features include Ri filtering, network caching and highly customizable workflow.
Follows a summary of 3Delights features.
-RenderMan Compliant
-RenderMan Shading Language Support
-Rendering Features
-Geometry Support
-Fast and Efficient Rendering
-Extensible Display Drivers
-Multi-platform Support with Specific Code Optimization
<<less
Download (10.1MB)
Added: 2009-04-12 License: Freeware Price: Free
194 downloads
3Delight for 32-bit Linux 7.0

3Delight for 32-bit Linux 7.0


3Delight is a renderer to produce photo-realistic images on 32-bit linux. more>> 3Delight is a fast, high quality, RenderMan-compliant renderer designed to produce photo-realistic images in demanding production environments. The renderer was introduced to the public in the year 2000 after being used for more than a year as the sole renderer in a sister production company. It is now widely used and earning a reputation as a benchmark in rendering technology.
Some of its features include ray tracing, global illumination (including photon mapping, final gathering and high dynamic range lighting and rendering), realistic motion blur, depth of field, complete geometry support (including efficient rendering of hair and fur), programmable shaders, quality antialiasing and antialiased shadow maps. Advanced features include Ri filtering, network caching and highly customizable workflow.
Follows a summary of 3Delights features.
-RenderMan Compliant
-RenderMan Shading Language Support
-Rendering Features
-Geometry Support
-Fast and Efficient Rendering
-Extensible Display Drivers
-Multi-platform Support with Specific Code Optimization
<<less
Download (11.4MB)
Added: 2009-04-11 License: Freeware Price: Free
195 downloads
Yellow Dog Linux 5.0.2

Yellow Dog Linux 5.0.2


Yellow Dog Linux is the Premier Linux Operating System for PowerPC. more>>
Yellow Dog Linux is the Premier Linux Operating System for PowerPC.
Proven world-wide as the preferred Linux OS for the Power architecture, v4.1 brings Terra Soft into its 8th year of Power Linux development and support. Yellow Dog Linux v4.1 marks a returning point in Terra Softs effort to again provide a leading desktop Linux OS.
Yellow Dog Linux combines the preferred desktops KDE and Gnome with the latest sound and graphic card support, leading (but not bleeding) edge kernels and stable, functional compilers for code development. And of course, the foundation applications and servers expected of all modern Linux operatings systems for web, database, email, and network services.
What will you do with your PowerMac after Apple switches to Intel?
We have an answer--Faster, more stable, and far more efficient as a desktop OS, Yellow Dog Linux is a solid replacement (not just an alternative) to OSX. Breath new life into your PowerPC G3 and G4, giving it a second wind as a personal workstation, or a new function as a web, email, or data server. Want to see how your G5 runs Linux? You may dual-boot both OSX and Yellow Dog Linux or take the leap and run Yellow Dog Linux alone, taking advantage of the multitude of included, freely available, and commercial applications.
Main features:
New or Improved Device Support
- Backlit keys.
- PCMCIA cell phone and modem support.
- Support for Atheros wi-fi cards.
- Dual head config via the GUI.
- Install direct to and boot from FireWire drives.
- USB device auto-mount under both KDE & GNOME.
- Greatly improved sound support.
- Graphical Up2Date package install and update tool.
- Support for the latest Apple Power Books.
- Beta support for Apple G5 PowerMacs with dual core CPUs.
- Beta Extreme driver will be available shortly after release, via YDL.net Enhanced accounts.
Enhancements:
- We are pleased to announce the release of Yellow Dog Linux 5.0.2, a single Install DVD with support for the Apple G4 and G5 computers, Sony PS3, and IBM System p servers, including the JS20/21, OpenPower, and current POWER5 systems. Yellow Dog Linux 5.0.2 offers: kernel 2.6.22-rc4; SDK v2.0 for Cell BE; more than 70 bug fixes and updates; continued support for both 32-bit and 64-bit systems; beta IBM System p support. The IBM Software Development Toolkit (SDK) for Cell Broadband Engine (Cell BE) is a complete package of tools which allows developers to program optimized applications for platforms built upon the Cell BE. The SDK is composed of development tool chains, software libraries, and sample source.
<<less
Download (MB)
Added: 2007-06-15 License: GPL (GNU General Public License) Price:
571 downloads
gnormalize 0.52

gnormalize 0.52


gnormalize is an audio converter, a front end to normalize, an encoder/decoder, a ripper, a tag editor and a cd player. more>>
gnormalize is an audio converter, a front end to normalize, an encoder/decoder, a ripper, a metadata (tag) editor and a cd player. gnormalize uses gtk2-perl under GNU/Linux.
gnormalize decodes the MP3/MP4/MPC/OGG/APE/FLAC file to WAV, then normalizes the WAV to a targeted volume level and re-encodes it. Moreover, gnormalize can extract Audio CD track and output as various popular audio formats (MP3, MP4, MPC, OGG, APE, FLAC, WAV) with fast speed and high quality. gnormalize can also convert audio format between MP3, MP4, MPC, OGG, APE and FLAC with high fidelity, which meets your need to play and collect audio files. It can change the encoding and Metadata (tag) properties of final normalized files.
gnormalize can be used to adjust the volume of audio files to a standard volume level, where different recording levels on different albums can cause the volume to vary greatly from song to song.
gnormalize is an alternative for replaygain, because "there is no consistent standard by which to define the appropriate replay gain which mp3 encoders and players agree on, and no automatic way to set the volume adjustment for each track".
Main features:
- Convert from/to MP3, MP4, MPC, OGG, APE, FLAC and WAV;
- Support for LAME, FAAC, OGGENC, MPPENC, FLAC and MAC encoders;
- Support for LAME, FAAD, OGGDEC, MPPDEC, FLAC and MAC decoders;
- Rip audio CDs utilizing cdparanoia or cdda2wav;
- Play audio CDs utilizing cdcd or Audio::CD or cdplay;
- Support normalization with adjustable sensibility;
- Can normalize/convert files recursively into the directory;
- Edit and get MetaData like artist, title, album, ... ;
- Get MetaInfo like bitrate, time, frequency, ... ;
- Includes mppenc, mppdec;
- Read the CDDB entry for an audio CD with CDDB_get;
- Translation to English and Portuguese (Brasil).
<<less
Download (0.53MB)
Added: 2006-12-03 License: GPL (GNU General Public License) Price:
1064 downloads
Slideshow Creator 0.7.1

Slideshow Creator 0.7.1


Slideshow Creator is a GUI for creating, modifying, and previewing JPEG image slideshows. more>>
Slideshow Creator is a GUI for creating, modifying, and previewing JPEG image slideshows.

With Slideshow Creator you can edit jpeg slideshows in a visual and fast way so you can reach a much higher productivity with dvd-slideshow.

The final result is a high quality dvd slideshow out of your jpegs!

This software is based on gambas so it shoud work on every Linux or U*ix like system where gambas is available.

You need to install gambas runtime or gambas gambas development ide.
I think it shoould work on higher gambas versions.

I was tired to make poor quality slideshows in VCD/SVCD format and finally met dvd-slideshow: it is a very nice program that produces high quality DVD slideshows from jpeg images. It has crop, kenburn andpan effects.

I made some slideshows but reliazed that I wasted too much time to prepare the slideshow "source": I needed a visual program to speed up the process of kenburns, crop and pan effects creation.

I googled the net but didnt find any souch program so I decided to create one myself: slcreator was born!

How I did it? I built it using gambas: a visual ide with a object oriented basic interpreter which permits to create great programs in a "fast" way. I tried some other languages but I was not skilled enough to use them for this kind of project! gambas permitted me to realize the job in a very nice way!

<<less
Download (0.026MB)
Added: 2006-06-15 License: GPL (GNU General Public License) Price:
1253 downloads
rPath Linux 2.0 Alpha 2

rPath Linux 2.0 Alpha 2


rPath Linux is a Linux distribution built with the new Conary distributed software management system. more>>
rPath Linux is a Linux distribution built with the new Conary distributed software management system.

rPath Linux provides the foundation for creating software appliances that is:

Easily tailored to any application requirements
Built using Conary packaging technology, rPath Linux provides a more fine-grained breakdown of system components than in typical Linux environments. This allows application developers using rBuilder to pick just the pieces they need to support their application.

Engineered to the highest levels of quality
The rPath engineering team has a long history of delivering high quality Linux technology to demanding enterprise customers and software vendors. They have taken the lessons learned from these customers and partners and built rPath Linux to meet the demands of today’s corporate IT environments.

Compatible with many popular commercial Linux distributions
If you already offer your application on Linux, it will likely run unchanged on rPath Linux, so there is minimal effort required to offer your application as a software appliance.
<<less
Download (479MB)
Added: 2007-02-08 License: GPL (GNU General Public License) Price:
990 downloads
KmPg2 MPEG2 Encoder 1.96

KmPg2 MPEG2 Encoder 1.96


KmPg2 is a user friendly MPEG2 encoding wizard that allows the user to create high quality DVD compatible MPEG2 streams. more>>
KmPg2 is a very simple to use MPEG2 encoding wizard that allows the user to create high quality DVD compatible MPEG2 streams, without requiring any technical knowledge.
Creating high quality MPEG2 streams involves a lot more than simply feeding the input video to mpeg2enc/transcode/mencoder/etc.
The input video needs to be carefully prepared by pulling it through a chain of stream processing tools like low-pass filters, color correction filters, static and dynamic chroma and luma noise filters, scalers, and so on.
This processing chain needs to be tuned in such a way that all irrelevant data (like noise) is removed before the video enters the encoder. KmPg2 uses the video processing / encoding tools from the MJPEGTools project to achieve this.
KmPg2 features a profiler that enables the user to interactively create custom pre-processing pipelines that are optimised for a specific type of video material. These preprocessing pipelines (profiles) can be stored and used with the actual encoding wizard.
For example, you could create a profile that is designed especially for restoring a single aging VHS tape, or you could create a profile tuned for your digital camcorder and re-use it for every new recording that needs to be encoded.
At this moment KmPg2 accepts only one format of input video: Raw Sony DV video streams. This is the video format that most people use nowadays for high quality video processing and editing. Support for using AVI files for input is expected in future versions.
Main features:
- Produces DVD compliant MPEG2 streams
- Seperate chroma/luma noise filtering
- Low-Pass filtering support
- Contrast/Brightness/Saturation correction
- White balance correction
- Special black-and-white mode
- Crop image to Widescreen (16:9) or Panavision (2.35:1)
- Output conforms to Rec.601 specifications
- Both constant bitrate and variable bitrate encoding
- Unsharp masking
- Supports progressive and interlaced source material
- Support for removing overscan area
- Provides feedback to user about average/peak bitrates
- Show output on screen while encoding
- Generate encoding shell scripts
- Generate quick preview-encodings of parts of source video
<<less
Download (0.068MB)
Added: 2006-06-11 License: GPL (GNU General Public License) Price:
1250 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5