music organizer deluxe
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 799
MemCheck Deluxe 1.2.2
MemCheck Deluxe is a memory usage tracker and leak finder. more>>
MemCheckDeluxe is an enhanced leak finder/memory profiler. It tracks all the memory allocated, and can report where it was created at the end of a program (memory that would have been leaked).
It tracks the largest and smallest chunks allocated, the maximum memory used, and the highest number of allocations at any time. Some headway has been made to allow C++s allocation operators new and delete to be tracked.
Usage
To use it, #define _MCD_CHECK, include mcd.h, and add mcd.c to the list of source files to build in your project. then, call showMemStats() at any time to see the currently outstanding allocations and usage stats.
If you dont define _MCD_CHECK, it compiles away, improving performance. It is probably not a good idea to have some parts of a library use mcd, and not others. Pointers created in non-mcd parts wont be tracked and may confuse mcd, and stuff made in mcd, and freed elsewhere wont be properly cleaned up internally, leading to false leaks.
When included, a warning is normally issued, informing the user that performance will be affected. If this gets annoying, define MCD_QUIET to make it go away.
When including mcd.h, be sure to make it the last file included, as it redefines some macros. including things after it, especially system headers (stdlib.h, etc) can cause some nasty error messages and it will fail to compile anything.
One can define MCD_VERBOSE to have each and every malloc, calloc, realloc, strdup, strndup, and free be written to the RealTime log, including the size, calling function, and line number. The RealTime log defaults to stderr, but can be set to any file you want with
_MCD_RealTimeLog(FILE*fp). Just make sure the file is opened for writing/appending, and all verbosity will go there instead.
Please note that if you want RealTime log output, you MUST define MCD_VERBOSE.
With default settings, free(NULL) will simply return, providing you with an error message in the RealTime log if verbose was enabled. If you are working with a C library that acts differently when free(null) happens, define MCD_FREE_NULL, and it will generate the log message, and then perform the native free.
Using this is probably seldom needed, and will probably lead to a crash when/if it happens, providing you with a nice coredump to analyze. Again, this only applies if your C librarys free(null) does something other than simply return.
There is a new flag, _MCD_GONE, that will remove all MCD code from the end product. It must be defined when compiling both mcd.c, and any other file that includes mcd.h. Note that defining _MCD_CHECK has no effect when _MCD_GONE is defined. The savings from this are about 15-20k (4-5k stripped).
<<lessIt tracks the largest and smallest chunks allocated, the maximum memory used, and the highest number of allocations at any time. Some headway has been made to allow C++s allocation operators new and delete to be tracked.
Usage
To use it, #define _MCD_CHECK, include mcd.h, and add mcd.c to the list of source files to build in your project. then, call showMemStats() at any time to see the currently outstanding allocations and usage stats.
If you dont define _MCD_CHECK, it compiles away, improving performance. It is probably not a good idea to have some parts of a library use mcd, and not others. Pointers created in non-mcd parts wont be tracked and may confuse mcd, and stuff made in mcd, and freed elsewhere wont be properly cleaned up internally, leading to false leaks.
When included, a warning is normally issued, informing the user that performance will be affected. If this gets annoying, define MCD_QUIET to make it go away.
When including mcd.h, be sure to make it the last file included, as it redefines some macros. including things after it, especially system headers (stdlib.h, etc) can cause some nasty error messages and it will fail to compile anything.
One can define MCD_VERBOSE to have each and every malloc, calloc, realloc, strdup, strndup, and free be written to the RealTime log, including the size, calling function, and line number. The RealTime log defaults to stderr, but can be set to any file you want with
_MCD_RealTimeLog(FILE*fp). Just make sure the file is opened for writing/appending, and all verbosity will go there instead.
Please note that if you want RealTime log output, you MUST define MCD_VERBOSE.
With default settings, free(NULL) will simply return, providing you with an error message in the RealTime log if verbose was enabled. If you are working with a C library that acts differently when free(null) happens, define MCD_FREE_NULL, and it will generate the log message, and then perform the native free.
Using this is probably seldom needed, and will probably lead to a crash when/if it happens, providing you with a nice coredump to analyze. Again, this only applies if your C librarys free(null) does something other than simply return.
There is a new flag, _MCD_GONE, that will remove all MCD code from the end product. It must be defined when compiling both mcd.c, and any other file that includes mcd.h. Note that defining _MCD_CHECK has no effect when _MCD_GONE is defined. The savings from this are about 15-20k (4-5k stripped).
Download (0.016MB)
Added: 2005-04-13 License: BSD License Price:
1656 downloads
MyOrgBook 2.8
MyOrgBook is an online PHP/MySQL organizer. more>>
In a nutshell Myorgbook is an online agenda. It can keep track of your tasks, contacts and random notes.
Its made in PHP and needs a database, this can be MySQL but thanks to ADODB it can be almost any (R)DBMS.
<<lessIts made in PHP and needs a database, this can be MySQL but thanks to ADODB it can be almost any (R)DBMS.
Download (0.47MB)
Added: 2005-05-05 License: GPL (GNU General Public License) Price:
1636 downloads
Python Music Daemon 0.3
Python Music Daemon is yet another jukebox written in Python. more>>
PyMusicD is yet another jukebox daemon written in python. It was born out of my frustration with the current mp3 jukeboxes, mostly the lack of features that I want. Ive also been playing with python quite a lot lately, and this is my first attempt at a large project in python.
The player is being written to satisfy my own requirements for a car mp3 player, although theres no reason you couldnt use this for a home mp3 player, or work mp3 player.
It assumes that your network users are (mostly) benign, and doesnt take a lot of precautions against malicious users who want to screw with your mp3s. Take appropriate measures to only allow trusted users to play with it, at least until I secure it a bit better.
Its primary purpose is to run in the background, and play mp3s whenever they are in the playlist.
Usage
Unpack this to its own directory. Edit the pymusicd.conf file to your liking. Run python PyMusicD, then run python pymusic to play around with it. The client operates very similarly to most shells, and includes tab completion for commands (but not arguments... yet.)
If you wish to install this to the system, you may do so by running python setup.py install. This will install the server binary in the default place for your platform (according to distutils.) You may then edit the config file (/etc/pymusicd.conf by default) and run the server by running PyMusicD. The cli client will be named pymusic.
This software is currently in development. It is not ready for end users yet. You should have familiarity with scripting in python before you set about to use this software. That being said, if you find bugs that arent listed in TODO, and/or have problems with the software that arent listed in TODO, email me (zwhite@darkstar.frop.org) and Ill see what I can do to help you. Code patches/suggestions are always welcome.
This is known to work on my Slackware 9.0 machine using the Python 2.2.2 package that came with it. I have also tested it on my Mac OSX 10.2.8 machine with Python 2.2. I have no reason to believe that it wont work on any machine with a Python 2.x interpreter and
either mpg123 or mpg321. Your mileage may vary. If it doesnt work on your platform, please let me know. My goal is to have this work on any platform that python runs on.
Enhancements:
- Fixed a bug when adding an entire directory with %2A instead of *
- Added a debug command to get server state, currently only playstatus is reported, will add more as needed.
- Changed the way the stop command works to eliminate a bug.
- Check to make sure a file exists before we add it to the playlist.
- We no longer start playing music as soon as the playlist has entries.
- Instead, we wait for a play command to be issued.
- Added config file support. Defaults to /etc/pymusicd.conf or ./pymusicd.conf
- Added a setup.py and setup.cfg file. Now users can install PyMusicD using the standard "python setup.py install" method that other scripts and modules use.
<<lessThe player is being written to satisfy my own requirements for a car mp3 player, although theres no reason you couldnt use this for a home mp3 player, or work mp3 player.
It assumes that your network users are (mostly) benign, and doesnt take a lot of precautions against malicious users who want to screw with your mp3s. Take appropriate measures to only allow trusted users to play with it, at least until I secure it a bit better.
Its primary purpose is to run in the background, and play mp3s whenever they are in the playlist.
Usage
Unpack this to its own directory. Edit the pymusicd.conf file to your liking. Run python PyMusicD, then run python pymusic to play around with it. The client operates very similarly to most shells, and includes tab completion for commands (but not arguments... yet.)
If you wish to install this to the system, you may do so by running python setup.py install. This will install the server binary in the default place for your platform (according to distutils.) You may then edit the config file (/etc/pymusicd.conf by default) and run the server by running PyMusicD. The cli client will be named pymusic.
This software is currently in development. It is not ready for end users yet. You should have familiarity with scripting in python before you set about to use this software. That being said, if you find bugs that arent listed in TODO, and/or have problems with the software that arent listed in TODO, email me (zwhite@darkstar.frop.org) and Ill see what I can do to help you. Code patches/suggestions are always welcome.
This is known to work on my Slackware 9.0 machine using the Python 2.2.2 package that came with it. I have also tested it on my Mac OSX 10.2.8 machine with Python 2.2. I have no reason to believe that it wont work on any machine with a Python 2.x interpreter and
either mpg123 or mpg321. Your mileage may vary. If it doesnt work on your platform, please let me know. My goal is to have this work on any platform that python runs on.
Enhancements:
- Fixed a bug when adding an entire directory with %2A instead of *
- Added a debug command to get server state, currently only playstatus is reported, will add more as needed.
- Changed the way the stop command works to eliminate a bug.
- Check to make sure a file exists before we add it to the playlist.
- We no longer start playing music as soon as the playlist has entries.
- Instead, we wait for a play command to be issued.
- Added config file support. Defaults to /etc/pymusicd.conf or ./pymusicd.conf
- Added a setup.py and setup.cfg file. Now users can install PyMusicD using the standard "python setup.py install" method that other scripts and modules use.
Download (0.013MB)
Added: 2005-05-10 License: Freely Distributable Price:
1629 downloads
Musicman 0.14
Musicman is mp3, ogg organizer. more>>
Do you have many MP3 files? Do you spend more time organizing them then listening to them? Do you store them on CDs? Do you have a car stereo MP3 player?
If so, MusicMan will help you organize your MP3, Ogg, from the most obvious place: Konqueror file manager.
Main features:
- Standarize the filenames of your music files.
- Guess info and set ID3 tags from the files name. Can be done to several files in one shot.
- Rename many selected files based on their ID3 tags.
- Set ID3 tags in mass for the selected files, with options from copying ID3s from other files, and leaving some ID3 fields untouched.
- Rename _ to space and vice-versa.
- Create HTML and Text indexes of your collections, including total playing time etc. 100% cofigurable thru templates.
- Create nice CD cover with nice full listing of your music files. 100% configurable thru templates.
- Organize your music collection to create a CD.
- See the change log for details.
<<lessIf so, MusicMan will help you organize your MP3, Ogg, from the most obvious place: Konqueror file manager.
Main features:
- Standarize the filenames of your music files.
- Guess info and set ID3 tags from the files name. Can be done to several files in one shot.
- Rename many selected files based on their ID3 tags.
- Set ID3 tags in mass for the selected files, with options from copying ID3s from other files, and leaving some ID3 fields untouched.
- Rename _ to space and vice-versa.
- Create HTML and Text indexes of your collections, including total playing time etc. 100% cofigurable thru templates.
- Create nice CD cover with nice full listing of your music files. 100% configurable thru templates.
- Organize your music collection to create a CD.
- See the change log for details.
Download (0.26MB)
Added: 2005-05-25 License: GPL (GNU General Public License) Price:
1614 downloads
GTag 0.9.2
GTag is a music tag editor for gtk+ 2.4. more>>
GTag is a music tag editor for gtk+ 2.4.
GTag is a music tag editor for gtk+ 2.4. It supports ogg, mp3 and flac audio files. It uses the taglib library and also requires libglade.
<<lessGTag is a music tag editor for gtk+ 2.4. It supports ogg, mp3 and flac audio files. It uses the taglib library and also requires libglade.
Download (0.020MB)
Added: 2005-07-21 License: GPL (GNU General Public License) Price:
1555 downloads
Siren 0.03
Siren is a music player for GNOME with an extremely minimalist interface. more>>
Siren is a music player for GNOME with an extremely minimalist interface. It is written in Perl and uses the GTK2-Perl libraries, and GStreamer.
<<less Download (0.015MB)
Added: 2005-08-08 License: GPL (GNU General Public License) Price:
1547 downloads
Bluefunk 0.3
Bluefunk is a music player for the Gnome desktop. more>>
Bluefunk is a music player for the Gnome desktop.
It is written in C# using the Mono platform. We use the GStreamer framework to play music, allowing Bluefunk to support a wide range of formats; including mp3, ogg, flac, AAC and others.
<<lessIt is written in C# using the Mono platform. We use the GStreamer framework to play music, allowing Bluefunk to support a wide range of formats; including mp3, ogg, flac, AAC and others.
Download (0.19MB)
Added: 2005-09-07 License: GPL (GNU General Public License) Price:
1507 downloads
Random Music 1.1
Random Music plays random MP3 tracks from your music collection. more>>
Random Music plays random MP3 tracks from your music collection. It maintains a flat database of tracks, detailed genres, and weights, and generates a weighted random playlist from the user-selected genres.
The ID3 and ID3v2 fields (title/artist/album), detailed genre, and weight (0-9) for the currently-playing track can be edited, and tracks can be removed from the playlist.
For example, a user can select only tracks with a minimum weight of 5 from the subgenres "Pop - 1970s" and "R&B - 1970s", and the playlist will adjust accordingly.
Enhancements:
- This release adds features to the playlist editor.
- Playlist entries now include the album name, and selected tracks can be moved up or down.
<<lessThe ID3 and ID3v2 fields (title/artist/album), detailed genre, and weight (0-9) for the currently-playing track can be edited, and tracks can be removed from the playlist.
For example, a user can select only tracks with a minimum weight of 5 from the subgenres "Pop - 1970s" and "R&B - 1970s", and the playlist will adjust accordingly.
Enhancements:
- This release adds features to the playlist editor.
- Playlist entries now include the album name, and selected tracks can be moved up or down.
Download (0.47MB)
Added: 2005-10-22 License: GPL (GNU General Public License) Price:
1464 downloads
aeon music player 0.2.3
aeon is a music player that is meant to look nice and have an interface that is as easy to use as possible. more>>
aeon is a music player that is meant to look nice and have an interface that is as easy to use as possible.
In contrast to BMPx it is entirely library based, which means you cant add individual files to it, but you have rather to add them to the library beforehand.
You can only play files from the library (akin to RhythmBox/iTunes).
<<lessIn contrast to BMPx it is entirely library based, which means you cant add individual files to it, but you have rather to add them to the library beforehand.
You can only play files from the library (akin to RhythmBox/iTunes).
Download (0.63MB)
Added: 2005-11-24 License: GPL (GNU General Public License) Price:
1432 downloads
BoomBasster 0.1
BoomBasster is a music player that runs under DirectFB. more>>
BoomBasster is a music player that runs under DirectFB.
BoomBasster plays any type of music file that is supported by FusionSound.
The user interface uses alpha blending and works well with touchscreens.
BoomBasster is supposed to be used with the mouse.
<<lessBoomBasster plays any type of music file that is supported by FusionSound.
The user interface uses alpha blending and works well with touchscreens.
BoomBasster is supposed to be used with the mouse.
Download (0.25MB)
Added: 2005-12-13 License: GPL (GNU General Public License) Price:
1410 downloads
mCube Music Manager 20051221
mCube is a digital music manager. more>>
mCube Music Manager project is a digital music manager. The target is to let user manage and choose music to listen with the comfort and feeling of browsing physical compact disc and with the power of computer aided search, sort and categorization.
Main features:
- Folders synchronization: add a folder to mCube Library and you never need to worry about it anymore.
- Tagging System allows to build a categorization that evolves with the library and with user needs. Tag Cosmos allow you to navigate through your tags easily
- Many different Views for displaying Artists, Albums, Tracks or your Compilations. You can build your own page with the view you like in the way you like.
- Quick search box to filter all library a la iTunes/Firefox/Thunderbird
- Edit Album Information and automatically update file tag
- Easy filter for different album types (Live, Sountrack...) and support for multiple CDs albums
- Export selected songs or albums to an external folder: youll never need to use File Managers anymore!
- Play songs or albums with default system player.
- mCube is open source and, of course, free!
<<lessMain features:
- Folders synchronization: add a folder to mCube Library and you never need to worry about it anymore.
- Tagging System allows to build a categorization that evolves with the library and with user needs. Tag Cosmos allow you to navigate through your tags easily
- Many different Views for displaying Artists, Albums, Tracks or your Compilations. You can build your own page with the view you like in the way you like.
- Quick search box to filter all library a la iTunes/Firefox/Thunderbird
- Edit Album Information and automatically update file tag
- Easy filter for different album types (Live, Sountrack...) and support for multiple CDs albums
- Export selected songs or albums to an external folder: youll never need to use File Managers anymore!
- Play songs or albums with default system player.
- mCube is open source and, of course, free!
Download (9.4MB)
Added: 2005-12-22 License: GPL (GNU General Public License) Price:
1405 downloads
Free Music Instrument Tuner 0.96.4
Free Music Instrument Tuner is a musical instrument tunning application. more>>
Free Music Instrument Tuner is a musical instrument tunning application.
Main features:
- Error history
- Volume history
- Wave-length shape
- Harmonics ratio (Formants)
- Microtonal tuning (with Scala file support)
- ALSA support
- JACK support
- Translations for: francais
<<lessMain features:
- Error history
- Volume history
- Wave-length shape
- Harmonics ratio (Formants)
- Microtonal tuning (with Scala file support)
- ALSA support
- JACK support
- Translations for: francais
Download (0.22MB)
Added: 2006-02-03 License: GPL (GNU General Public License) Price:
1391 downloads
BibShelf 1.4.0
BibShelf is a book organizer integrating well with the GNOME desktop environment. more>>
BibShelf is a book organizer integrating well with the GNOME desktop environment.
BibShelf project helps you to keep track of your book collection. You can fill in such things as the book summary, review, rating and the ISBN.
Never forget when it was that you read a book, BibShelf lets you save the date so you do no longer need to waste your brain capacity for storing this information.
<<lessBibShelf project helps you to keep track of your book collection. You can fill in such things as the book summary, review, rating and the ISBN.
Never forget when it was that you read a book, BibShelf lets you save the date so you do no longer need to waste your brain capacity for storing this information.
Download (0.45MB)
Added: 2006-02-17 License: GPL (GNU General Public License) Price:
1344 downloads
JIndex 0.2
JIndex is a beagle clone. more>>
JIndex is a beagle clone. It tries to mimic the functionality of Beagle. JIndex is written in Java.
Format support:
- Music (Mp3)
- Documents (PDF, Doc, Openoffice formats)
- Images
- IM conversations
<<lessFormat support:
- Music (Mp3)
- Documents (PDF, Doc, Openoffice formats)
- Images
- IM conversations
Download (17.8MB)
Added: 2006-02-23 License: LGPL (GNU Lesser General Public License) Price:
1338 downloads
Kobo Deluxe 0.4pre10
Kobo Deluxe is a port of XKobo to SDL, with considerable enhancements. more>>
Kobo Deluxe is a port of XKobo to SDL, with considerable enhancements.
Kobo Deluxe is a port of XKobo to SDL. XKobo itself is a descendant of Namcos old Bosconian, which can be seen as part of the Galaxian/Galaga family of space shooters.
In both XKobo and Kobo Deluxe, you fly a ship around in 2D space, destroying other ships, dodging bullets, and destroying massive space platforms by shooting their cores.
There are literally hundreds of levels, and each level is different every time you play--the platforms are randomly generated. Kobo Deluxe adds sound, better graphics, and much more to the original game.
Main features:
- Fast paced retro arcade style game play
- Smooth, high speed 8-way scrolling
- Very simple controls - the game is about speed and strategy
- 17 different enemies; fighters, kamikaze attackers, proxy bombs and more
- 50 maps, each with its own feel and strategies to figure out
- Maps are built as you enter them - each game is unique!
- Beat the 50 maps - and get a new wave of even more aggressive enemies
- Music and sound effects with real time reverberation
- Structured audio technology - hi-fi sound in a tiny download
- OpenGL support for extremely fast and smooth animation
- High resolution support up to 2048x1536 - five types of scaling
- Supports any display color depth - dithering for 15 and 16 bpp
- Supports control by keyboard, mouse or joystick
- Runs on pretty much any hardware and operating system
- All code and data is Free! Source code available. (GPL or LGPL)
<<lessKobo Deluxe is a port of XKobo to SDL. XKobo itself is a descendant of Namcos old Bosconian, which can be seen as part of the Galaxian/Galaga family of space shooters.
In both XKobo and Kobo Deluxe, you fly a ship around in 2D space, destroying other ships, dodging bullets, and destroying massive space platforms by shooting their cores.
There are literally hundreds of levels, and each level is different every time you play--the platforms are randomly generated. Kobo Deluxe adds sound, better graphics, and much more to the original game.
Main features:
- Fast paced retro arcade style game play
- Smooth, high speed 8-way scrolling
- Very simple controls - the game is about speed and strategy
- 17 different enemies; fighters, kamikaze attackers, proxy bombs and more
- 50 maps, each with its own feel and strategies to figure out
- Maps are built as you enter them - each game is unique!
- Beat the 50 maps - and get a new wave of even more aggressive enemies
- Music and sound effects with real time reverberation
- Structured audio technology - hi-fi sound in a tiny download
- OpenGL support for extremely fast and smooth animation
- High resolution support up to 2048x1536 - five types of scaling
- Supports any display color depth - dithering for 15 and 16 bpp
- Supports control by keyboard, mouse or joystick
- Runs on pretty much any hardware and operating system
- All code and data is Free! Source code available. (GPL or LGPL)
Download (0.78MB)
Added: 2006-02-27 License: GPL (GNU General Public License) Price:
1334 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 music organizer deluxe 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