car discount stereo
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 240
Car PC Development Kit 0.2.1
Car PC Development Kit is a kit for making a Linux distribution for a car PC. more>>
Car PC Development Kit is a kit for making a Linux distribution for a car PC.
Unlike most distributions which come prepackaged and ready to load, this distribution requires downloading, compiling, and post-setup before you can load it into a system.
The end result will be a modular platform for quickly putting together a small Linux system to copy onto boot media and start using.
The target platform is a mini-computer to be installed in an automobile and used either headless or with a monitor and some input device like a keyboard or remote control.
Enhancements:
- Fixes LIRC support for both CAUI and MPlayer.
- Updates the CAUI version, and updates the LIRC package to configure more buttons by default.
<<lessUnlike most distributions which come prepackaged and ready to load, this distribution requires downloading, compiling, and post-setup before you can load it into a system.
The end result will be a modular platform for quickly putting together a small Linux system to copy onto boot media and start using.
The target platform is a mini-computer to be installed in an automobile and used either headless or with a monitor and some input device like a keyboard or remote control.
Enhancements:
- Fixes LIRC support for both CAUI and MPlayer.
- Updates the CAUI version, and updates the LIRC package to configure more buttons by default.
Download (0.065MB)
Added: 2005-12-02 License: GPL (GNU General Public License) Price:
1428 downloads
Kasound 0.5
Kasound is a simple tool for the configuration of ALSA settings. more>>
KASound aims to be a complete frontend for setting up .asoundrc. Currently it supports software playback mixing (dmix), capture multiplexing (dsnoop), resampling and format conversion (plug) and surroung channel mapping (route).
We hope that this tool will make configuring a soundcard under Linux very easy.
Dmix and Dsnoop, combined with Asym, allow several programs to open the sound card device simultaneously. For example, enabling Dmix will allow your mail client to play its notification sounds while you are playing music. Dsnoop allows several programs to access the data stream coming from a sound card.
Route allows configuration of which channels are sent to which speakers. This, for example, enables the user to duplicate a stereo source to all the other speakers in their 7.1 setup. Other simple operations, such as swapping stereo channels, are also supported by route.
While this interface is extremely powerful, it is also difficult to configure. This has lead to several myths about Linuxs sound capabilities - for example that ALSA cant play many sounds simultaneously.
Enhancements:
- Configuration of OSS Emulation device numbers was added along with preliminary support for internationalization.
- GUI consistence was fixed along with many small and large bugs.
<<lessWe hope that this tool will make configuring a soundcard under Linux very easy.
Dmix and Dsnoop, combined with Asym, allow several programs to open the sound card device simultaneously. For example, enabling Dmix will allow your mail client to play its notification sounds while you are playing music. Dsnoop allows several programs to access the data stream coming from a sound card.
Route allows configuration of which channels are sent to which speakers. This, for example, enables the user to duplicate a stereo source to all the other speakers in their 7.1 setup. Other simple operations, such as swapping stereo channels, are also supported by route.
While this interface is extremely powerful, it is also difficult to configure. This has lead to several myths about Linuxs sound capabilities - for example that ALSA cant play many sounds simultaneously.
Enhancements:
- Configuration of OSS Emulation device numbers was added along with preliminary support for internationalization.
- GUI consistence was fixed along with many small and large bugs.
Download (0.39MB)
Added: 2005-10-25 License: GPL (GNU General Public License) Price:
817 downloads
Car Dealer Website 1.18
Car Dealer Website allows you to get your car dealership inventory on the Web. more>>
Car Dealer Website allows you to get your car dealership inventory on the Web. Car Dealer Website projects easy-to-use system features full searching capability by make/model, price range, and year range.
Each listing has a contact form where buyers can easily make contact from your site on a particular vehicle.
You can upload as many images as needed per listing and setup as many makes and models as needed for your dealership. It is fully template driven, and is easy to customize.
Installation:
-copy all files to your web host
-use phpmyadmin or your mysql interface to run site.sql against your database.
-chmod 777 upload/ and upload/tmp/
-open site.xml and edit the database section with your database details.
-go to admin/ and login with username of admin with a password of test.
-be sure to change the passwords for the admin and regular user.
Setup the site.xml file with your database settings as follows.
< database type="mysql" >
< server >database server address< /server >
< login >database login< /login >
< password >database password< /password >
< default >mysql database name< /default >
< /database >
Add this to your htaccess file to prevent viewing of the xml config file.
< Files ~ ".xml" >
Order allow,deny
Deny from all
Satisfy All
< /Files >
Enhancements:
- Some of the lines of code within the library files were fixed up to improve the speed of the system.
<<lessEach listing has a contact form where buyers can easily make contact from your site on a particular vehicle.
You can upload as many images as needed per listing and setup as many makes and models as needed for your dealership. It is fully template driven, and is easy to customize.
Installation:
-copy all files to your web host
-use phpmyadmin or your mysql interface to run site.sql against your database.
-chmod 777 upload/ and upload/tmp/
-open site.xml and edit the database section with your database details.
-go to admin/ and login with username of admin with a password of test.
-be sure to change the passwords for the admin and regular user.
Setup the site.xml file with your database settings as follows.
< database type="mysql" >
< server >database server address< /server >
< login >database login< /login >
< password >database password< /password >
< default >mysql database name< /default >
< /database >
Add this to your htaccess file to prevent viewing of the xml config file.
< Files ~ ".xml" >
Order allow,deny
Deny from all
Satisfy All
< /Files >
Enhancements:
- Some of the lines of code within the library files were fixed up to improve the speed of the system.
Download (0.12MB)
Added: 2006-07-03 License: Other/Proprietary License with Source Price:
1213 downloads
LibSound77 40
LibSound77 is a library for producing sound data in FORTRAN77 programs compiled with g77. more>>
LibSound77 is a library for producing sound data in FORTRAN77 programs compiled with g77.
It provides a small and dirty, but usable, interface for outputting sound to speakers or .wav files. It has only been tested on computers of the i386 architecture.
Playing sound:
Stereo output are currently not supported, but work on it is in progress... See the file beep77.f for example code.
call ao77ini()
Initialise library, must be called before ploping.
call ao77set(samplerate, nbrchannels)
set up parameters: samplerate is an integer like 44100, nbrchannels is an integer and must be 1.
call ao77out(sample)
Put a sound sample, who is an integer*2, on the way to the speakers. Do it as quickly as possible...
call ao77end()
Stop the sound-system, release ressources. Must be called after use
Writing and reading .WAV
Stereophonics files are now supported, still experimental. See the file sinus.f for writing example code. See the file play77.f for reading example code.
fn = sndfopen(plop.wav, MODE, rate, channels)
Open a file for reading, if mode is I or writing if mode is O. You can have up to 42 files simultaneously open. When you are a writer, you must set channels to 1 or 2.
call sndfput(fn, sample)
Add a sample to the file. Samples are integer*2 values.
call sndfput2(fn, left, right)
Add two samples to the stereo file. Samples are integer*2 values.
err = sndfget(fn, sample)
Get a sample from a file opened for read. When success, return value is 1, when at end of file, return value is 0. Negatives are errors.
call sndfclose(fn)
Flush all datas and close the file.
Whats New in This Release:
Stereo input/output functions were added.
<<lessIt provides a small and dirty, but usable, interface for outputting sound to speakers or .wav files. It has only been tested on computers of the i386 architecture.
Playing sound:
Stereo output are currently not supported, but work on it is in progress... See the file beep77.f for example code.
call ao77ini()
Initialise library, must be called before ploping.
call ao77set(samplerate, nbrchannels)
set up parameters: samplerate is an integer like 44100, nbrchannels is an integer and must be 1.
call ao77out(sample)
Put a sound sample, who is an integer*2, on the way to the speakers. Do it as quickly as possible...
call ao77end()
Stop the sound-system, release ressources. Must be called after use
Writing and reading .WAV
Stereophonics files are now supported, still experimental. See the file sinus.f for writing example code. See the file play77.f for reading example code.
fn = sndfopen(plop.wav, MODE, rate, channels)
Open a file for reading, if mode is I or writing if mode is O. You can have up to 42 files simultaneously open. When you are a writer, you must set channels to 1 or 2.
call sndfput(fn, sample)
Add a sample to the file. Samples are integer*2 values.
call sndfput2(fn, left, right)
Add two samples to the stereo file. Samples are integer*2 values.
err = sndfget(fn, sample)
Get a sample from a file opened for read. When success, return value is 1, when at end of file, return value is 0. Negatives are errors.
call sndfclose(fn)
Flush all datas and close the file.
Whats New in This Release:
Stereo input/output functions were added.
Download (0.007MB)
Added: 2007-07-17 License: Freely Distributable Price:
830 downloads
Alsa-Nyser 0.9
Alsa-Nyser is an Real Time Audio Analyser that displays several informations about sound. more>>
Alsa-Nyser is an Real Time Audio Analyser that displays several informations about sound. These informations are:
Signals of the chanels
Phase of sound in 1D and 2D representation
Spectrum in full band
Spectrum in 1/3 octavia displaying frequency in Stereo or Mono reducted sound
Frequency of the peak signal (2 peaks frequency in stereo mode)
Stereo Meters
For the moment, each of the specifications described can be displayed by the program in real time. But I have to work (and compare) on the reality of what is displayed (calculated) by the soft considering the theory of sound analysis. There is still work on the frequency analyser and real meters level displaying (peak and mean levels).
<<lessSignals of the chanels
Phase of sound in 1D and 2D representation
Spectrum in full band
Spectrum in 1/3 octavia displaying frequency in Stereo or Mono reducted sound
Frequency of the peak signal (2 peaks frequency in stereo mode)
Stereo Meters
For the moment, each of the specifications described can be displayed by the program in real time. But I have to work (and compare) on the reality of what is displayed (calculated) by the soft considering the theory of sound analysis. There is still work on the frequency analyser and real meters level displaying (peak and mean levels).
Download (0.057MB)
Added: 2006-08-03 License: GPL (GNU General Public License) Price:
1180 downloads
Cajun 4.2
Cajun turns your computer into a car audio device. more>>
Cajun turns your computer into a car audio device.It can supports mp3s, CD audio, Icecast/Shoutcast, LCD/LFD display, keypad or infra-red input. Supports multiple audio streams, multiple input devices, and multiple displays (each their own size).
Main features:
- Multi-device support, including: multiple input devices and multiple output devices (displays). Both the front seats and passengers in your minivan can see whats playing on their own display. All displays are updated at the same time.
- Supports displays of varying sizes, all at the same time.
- Display content is completely customizable. Different-sized displays can display different data.
- Input and output devices may be connected and disconnected at any time. CAJUN continues to run.
- Supports keypads, infra-red remote controls, LCD/VFD displays, FM cards, CD players, MPEG audio files, Ogg/Vorbis, Shoutcast/Icecast streams, GPS devices, etc.
- Easy-to-use, documented Perl API for writing new drivers.
<<lessMain features:
- Multi-device support, including: multiple input devices and multiple output devices (displays). Both the front seats and passengers in your minivan can see whats playing on their own display. All displays are updated at the same time.
- Supports displays of varying sizes, all at the same time.
- Display content is completely customizable. Different-sized displays can display different data.
- Input and output devices may be connected and disconnected at any time. CAJUN continues to run.
- Supports keypads, infra-red remote controls, LCD/VFD displays, FM cards, CD players, MPEG audio files, Ogg/Vorbis, Shoutcast/Icecast streams, GPS devices, etc.
- Easy-to-use, documented Perl API for writing new drivers.
Download (1.1MB)
Added: 2006-07-18 License: GPL (GNU General Public License) Price:
1195 downloads
Car World 0.243
CarWorld is a small driving simulator/demo I use to test various things of interest. more>>
CarWorld is a small driving simulator/demo I use to test various things of interest. It was mostly developed when I was a student. Car World is released with the full source code under the GNU General Public License.
The rendering
The two top pictures represent an slightly older version (v0.072) but graphically similar of CarWorld as it was presented for my project. v0.072 includes an OpenGL based renderer allowing
file input and displaying of texture mapped models with interpolated surface normals, real time projected shadows (as seen in the dino lights example).
background object
on screen command line to modify visual and simulation parameters
The mechanics
based on classical mechanics
uses standard metrics (Newtons, meters, seconds...)
there are no constraints on the environment surface
variable length time increments and variable increment number means "CarWorld time" is not dependent on frame rate.
adjustable simulation specs include: metrics, mass, moment of inertia around rotation axis, suspension pre load, compression damping, rebound damping, engine torque output, air friction, surface friction.
<<lessThe rendering
The two top pictures represent an slightly older version (v0.072) but graphically similar of CarWorld as it was presented for my project. v0.072 includes an OpenGL based renderer allowing
file input and displaying of texture mapped models with interpolated surface normals, real time projected shadows (as seen in the dino lights example).
background object
on screen command line to modify visual and simulation parameters
The mechanics
based on classical mechanics
uses standard metrics (Newtons, meters, seconds...)
there are no constraints on the environment surface
variable length time increments and variable increment number means "CarWorld time" is not dependent on frame rate.
adjustable simulation specs include: metrics, mass, moment of inertia around rotation axis, suspension pre load, compression damping, rebound damping, engine torque output, air friction, surface friction.
Download (0.64MB)
Added: 2006-07-20 License: GPL (GNU General Public License) Price:
1203 downloads
Rally Point 1.0
Rally Point is a community collaboration site designed for homeowners associations. more>>
Rally Point is a community collaboration site designed for homeowners associations (HOAs), apartment complexes, condominiums or any other group of people who need to share files, notes, FAQS, log information, financials or car registration information. The project is really simple, allowing you to get everyone up-to-speed without training or confusion.
Main features:
- Reduce costs by communicating by the web instead of mail
- Increase collaborative activities by getting everyone involved
- Solve parking problems
- Post financial information for each unit
- Post files
- Provide a convenient place to post frequently asked questions
- Update everyone automatically with RSS
- Extract the information in Rally Point for other uses with CSV and XML
<<lessMain features:
- Reduce costs by communicating by the web instead of mail
- Increase collaborative activities by getting everyone involved
- Solve parking problems
- Post financial information for each unit
- Post files
- Provide a convenient place to post frequently asked questions
- Update everyone automatically with RSS
- Extract the information in Rally Point for other uses with CSV and XML
Download (0.20MB)
Added: 2007-04-11 License: GPL (GNU General Public License) Price:
958 downloads
THC-WarDrive 2.3
THC-WarDrive is a tool for mapping your city for wavelan networks. more>>
THC-WarDrive is a tool for mapping your city for wavelan networks with a GPS device while you are driving a car or walking through the streets.
THC-WarDrive is effective and flexible, a "must-download" for all wavelan nerds.
Enhancements:
- fixed a bug with the -W option, forgot to reset a variable. result: showed always the information of the first wvlan found.
- rewrote the GPS data gathering function. old way fucked up the exact location too often and generated a too-long backlog. nearly all GPS gathering tools have this bug btw. things learned: cutn paste from tools isnt always the best new function rules. bah.
- some minor fixes and changes
<<lessTHC-WarDrive is effective and flexible, a "must-download" for all wavelan nerds.
Enhancements:
- fixed a bug with the -W option, forgot to reset a variable. result: showed always the information of the first wvlan found.
- rewrote the GPS data gathering function. old way fucked up the exact location too often and generated a too-long backlog. nearly all GPS gathering tools have this bug btw. things learned: cutn paste from tools isnt always the best new function rules. bah.
- some minor fixes and changes
Download (0.027MB)
Added: 2006-03-08 License: GPL (GNU General Public License) Price:
1331 downloads
Class::Delegation 1.7.1
Class::Delegation is a Perl object-oriented delegation. more>>
Class::Delegation is a Perl object-oriented delegation.
SYNOPSIS
package Car;
use Class::Delegation
send => steer,
to => ["left_front_wheel", "right_front_wheel"],
send => drive,
to => ["right_rear_wheel", "left_rear_wheel"],
as => ["rotate_clockwise", "rotate_anticlockwise"]
send => power,
to => flywheel,
as => brake,
send => brake,
to => qr/.*_wheel$/,
send => halt
to => -SELF,
as => brake,
send => qr/^MP_(.+)/,
to => mp3,
as => sub { $1 },
send => -OTHER,
to => mp3,
send => debug,
to => -ALL,
as => dump,
send => -ALL,
to => logger,
;
<<lessSYNOPSIS
package Car;
use Class::Delegation
send => steer,
to => ["left_front_wheel", "right_front_wheel"],
send => drive,
to => ["right_rear_wheel", "left_rear_wheel"],
as => ["rotate_clockwise", "rotate_anticlockwise"]
send => power,
to => flywheel,
as => brake,
send => brake,
to => qr/.*_wheel$/,
send => halt
to => -SELF,
as => brake,
send => qr/^MP_(.+)/,
to => mp3,
as => sub { $1 },
send => -OTHER,
to => mp3,
send => debug,
to => -ALL,
as => dump,
send => -ALL,
to => logger,
;
Download (0.014MB)
Added: 2006-11-11 License: Perl Artistic License Price:
1077 downloads
Davids Perl Games 0.1.1
Davids Perl Games project is a collection of ASCII graphics arcade style games written in Perl. more>>
Davids Perl Games project is a collection of ASCII graphics arcade style games written in Perl.
These games are recreations of simple ASCII graphics games originally written in BASIC.
They are ideal for use as Perl programming tutorials. Some of the first few games are PerlBlaster (defend your planet from invading aliens), PerlRacer (steer your car through the twisting passages), and PerlArena (eliminate the mutant hordes).
<<lessThese games are recreations of simple ASCII graphics games originally written in BASIC.
They are ideal for use as Perl programming tutorials. Some of the first few games are PerlBlaster (defend your planet from invading aliens), PerlRacer (steer your car through the twisting passages), and PerlArena (eliminate the mutant hordes).
Download (0.063MB)
Added: 2006-11-16 License: GPL (GNU General Public License) Price:
1076 downloads
Stereo 0.0.2 Alpha
Stereo is a Gnome/Mono application to copy mp3 files to mp3 player. more>>
Gnome/Mono application to copy mp3 files to mp3 player
Stereo is a GTK/mono application for copying MP3 files (either from a 3mu type playlist or database search onto an MP3 player than can be seen by Linux as a USB hard drive.
This is the initial alpha release - 0.0.1.
<<lessStereo is a GTK/mono application for copying MP3 files (either from a 3mu type playlist or database search onto an MP3 player than can be seen by Linux as a USB hard drive.
This is the initial alpha release - 0.0.1.
Download (0.12MB)
Added: 2005-07-21 License: GPL (GNU General Public License) Price:
1563 downloads
Vamos Automotive Simulator 0.5.7
Vamos is an automotive simulation framework with an emphasis on thorough physical modeling and good C++ design. more>>
Vamos Automotive Simulator project, as the name suggest is an automotive simulation framework with an emphasis on thorough physical modeling and good C++ design. Vamos includes a real-time, first-person, 3D driving application.
Vamos is young and its goals are only partially met. I invite anyone whos interested to contribute.
Thorough physical modeling
Vamos models most major systems of a car. The drivetrain includes a simulation of the engine, clutch, transmission and a limited-slip differential. Tires and suspension are also modeled. If I missed something, let me know.
Good C++ Design
The geometry, track, car and world modules are in their own namespaces. Care has been taken to avoid cyclic dependencies. Standard Library components like strings, vectors and maps are favored over arrays. Some of the modules and classes have aged more gracefully than others. If you see a design area that needs improvement, feel free to pitch in.
<<lessVamos is young and its goals are only partially met. I invite anyone whos interested to contribute.
Thorough physical modeling
Vamos models most major systems of a car. The drivetrain includes a simulation of the engine, clutch, transmission and a limited-slip differential. Tires and suspension are also modeled. If I missed something, let me know.
Good C++ Design
The geometry, track, car and world modules are in their own namespaces. Care has been taken to avoid cyclic dependencies. Standard Library components like strings, vectors and maps are favored over arrays. Some of the modules and classes have aged more gracefully than others. If you see a design area that needs improvement, feel free to pitch in.
Download (1.4MB)
Added: 2007-06-11 License: GPL (GNU General Public License) Price:
872 downloads
Crashtest 1.0
Crashtest simulates car crashes. more>>
Crashtest simulates car crashes. Crashtest is an educational tool that can be used to acquire much insight into this complex process.
The user can learn about the relation between speed and stopping distance. Also, many physical properties can be studied.
Crashtest is developed by Bram Stolk, SARA, and was commissioned by NWO for the Weten Week 2006 in the Netherlands.
<<lessThe user can learn about the relation between speed and stopping distance. Also, many physical properties can be studied.
Crashtest is developed by Bram Stolk, SARA, and was commissioned by NWO for the Weten Week 2006 in the Netherlands.
Download (0.55MB)
Added: 2006-10-27 License: GPL (GNU General Public License) Price:
1107 downloads
NEStopia pre2
NEStopia project is a NES/Famicom emulator. more>>
NEStopia project is a NES/Famicom emulator.
Main features:
- NEStopia 1.36 core
- Full GUI configuration of all options
- .nes and .unf/.unif ROM support
- .fds Disk System support
- .nsf music player support
- .nst save state support
- .nsv movie play and recording
- .sav battery saving
- All the video filters from the Windows version (NTSC, Scale2x/3x, ScaleHQ 2x/3x/4x)
- Limited configuration of the NTSC filter (via presets)
- Sound volume, output rate, stereo/mono, and OSS/ALSA selection
- Rewind capability, so you can put time into reverse and fix that bad jump or ill-timed use of your last missile
- Keyboard and joypad support, fully remappable via a simple config file
<<lessMain features:
- NEStopia 1.36 core
- Full GUI configuration of all options
- .nes and .unf/.unif ROM support
- .fds Disk System support
- .nsf music player support
- .nst save state support
- .nsv movie play and recording
- .sav battery saving
- All the video filters from the Windows version (NTSC, Scale2x/3x, ScaleHQ 2x/3x/4x)
- Limited configuration of the NTSC filter (via presets)
- Sound volume, output rate, stereo/mono, and OSS/ALSA selection
- Rewind capability, so you can put time into reverse and fix that bad jump or ill-timed use of your last missile
- Keyboard and joypad support, fully remappable via a simple config file
Download (0.033MB)
Added: 2007-03-26 License: GPL (GNU General Public License) Price:
944 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 car discount stereo 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