songs played
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1987
last played 0.3
last played is a small script that shows the last 5 files a mounted iPod shuffle played in shuffle mode. more>>
last played is a small script that shows the last 5 files a mounted iPod shuffle played in shuffle mode.
Since you look at this page, you probably own an iPod shuffle. If you are like me, you like to upload new music on it, set it to shuffle mode and enjoy. Yeah!
Until there comes a song you really love or hate, but your trusty shuffle lacks a display, so there is no way to know (other than to memorize some lyrics and google for them) which song it was.
Luckily, there is an easier way: last played is a small python script that will put the last 5 (or whatever you tell it on command line) files you listened to on screen. Now you can simply delete songs you hate and give 5 stars to songs you love.
I recommend putting the last.py on the root directory of your shuffle. You can then start it from there using
python last.py
on the command line.
last played is released under the terms of the GNU GPL.
Version restrictions:
- Since the iPod shuffle recreates its shuffle sequence whenever the end of the current shuffle sequence is reached, the script might return wrong results now and then. I have not yet tested it thoroughly enough to confirm it, sorry. However, this should not happen too often.
Enhancements:
- This version now (probably) finds a shuffle under MS Windows, and detects if the sequential mode was set, showing the right files in this case.
<<lessSince you look at this page, you probably own an iPod shuffle. If you are like me, you like to upload new music on it, set it to shuffle mode and enjoy. Yeah!
Until there comes a song you really love or hate, but your trusty shuffle lacks a display, so there is no way to know (other than to memorize some lyrics and google for them) which song it was.
Luckily, there is an easier way: last played is a small python script that will put the last 5 (or whatever you tell it on command line) files you listened to on screen. Now you can simply delete songs you hate and give 5 stars to songs you love.
I recommend putting the last.py on the root directory of your shuffle. You can then start it from there using
python last.py
on the command line.
last played is released under the terms of the GNU GPL.
Version restrictions:
- Since the iPod shuffle recreates its shuffle sequence whenever the end of the current shuffle sequence is reached, the script might return wrong results now and then. I have not yet tested it thoroughly enough to confirm it, sorry. However, this should not happen too often.
Enhancements:
- This version now (probably) finds a shuffle under MS Windows, and detects if the sequential mode was set, showing the right files in this case.
Download (0.010MB)
Added: 2005-09-03 License: GPL (GNU General Public License) Price:
1511 downloads
Songs 0.3
Songs is a graphical tool to record and mix audio files. more>>
Songs is a graphical tool to record and mix audio files. It supports an infinite number of tracks, huge audio files, and various effects.
One important motivation for Songs was the need of a recording tool under Linux. There are some already existing (see the links below), but these are too complex, too huge, eat too much memory and resources. Small machines can be used to record and mix audio files, even with a graphical interface. Songs is trying to prove it.
The recording is done directly to disk, so that with small machines, whithout much memory you can still record.
There is a full duplex mode, but full duplex is not very well handled with OSS. You dont really know if your two streams of samples are synchronized or not, and the interface provided by OSS does not help much with that. So, currently, take the full duplex mode as is. You probably will need to move by hand audio tracks to let them be synchronized.
Main features:
- Unlimited number of tracks.
- Supports WAV files (mono, stereo). Only 44.1 KHz, 16 bits files are supported, because Songs was born mainly to help me create music I could store on audio digital compact disks.
- Supports raw float files (mono, stereo). Very useful when you are mixing and that you eat too much resources. Simply put in a new file your current mix, and use this new file instead of several ones. Using float numbers gives more precision of the intermediary mixing.
- Several effects (currently not that much, but it is planned).
- Not too much memory used. All the audio files are mapped directly into the memory, so that the Linux kernel can swap them very easily. It means that if your files can exist on your disk, any size they are, they can be used with Songs (with a soft limitation of virtual memory space, which depends on your setup, and a hard limitation of 2 GB, because of the use of signed integers, which currently are 32 bits numbers).
- Use of gtk 2.0, for the good and the bad. The good is that the interface was done quickly. The bad is that the gtk documentation is far from perfect, that gtk is not bug free, that I may use it the wrong way sometimes and that it may change in the future, forcing Songs to be changed (and what if the Songs authors dont feel the need to do so, for example by lack of time?).
Enhancements:
- sc1.c sc1_gui.c:
- New files, ripping a compressor from sc1_1425 coming from swh-plugins-0.4.11.tar.gz (see http://plugin.org.uk/).The compressor was buggy, sometimes in rms_env_process
- r->sum was negative, leading to NaN for the sqrt stuff.
- pan/vol/pos.c: Checking return value of malloc (no, it was not done, shame !).
- various files: Fixing a realloc misusing (doing realloc(size+=32) then size+=32, which finally means size+=64 but only allocing size+32 stuff, weirdy to find).
- help_gui.c: The "About" stuff only appeared once, fixing it.
- various files: Fixing bugs those last days, forgot to feed this Changelog.
<<lessOne important motivation for Songs was the need of a recording tool under Linux. There are some already existing (see the links below), but these are too complex, too huge, eat too much memory and resources. Small machines can be used to record and mix audio files, even with a graphical interface. Songs is trying to prove it.
The recording is done directly to disk, so that with small machines, whithout much memory you can still record.
There is a full duplex mode, but full duplex is not very well handled with OSS. You dont really know if your two streams of samples are synchronized or not, and the interface provided by OSS does not help much with that. So, currently, take the full duplex mode as is. You probably will need to move by hand audio tracks to let them be synchronized.
Main features:
- Unlimited number of tracks.
- Supports WAV files (mono, stereo). Only 44.1 KHz, 16 bits files are supported, because Songs was born mainly to help me create music I could store on audio digital compact disks.
- Supports raw float files (mono, stereo). Very useful when you are mixing and that you eat too much resources. Simply put in a new file your current mix, and use this new file instead of several ones. Using float numbers gives more precision of the intermediary mixing.
- Several effects (currently not that much, but it is planned).
- Not too much memory used. All the audio files are mapped directly into the memory, so that the Linux kernel can swap them very easily. It means that if your files can exist on your disk, any size they are, they can be used with Songs (with a soft limitation of virtual memory space, which depends on your setup, and a hard limitation of 2 GB, because of the use of signed integers, which currently are 32 bits numbers).
- Use of gtk 2.0, for the good and the bad. The good is that the interface was done quickly. The bad is that the gtk documentation is far from perfect, that gtk is not bug free, that I may use it the wrong way sometimes and that it may change in the future, forcing Songs to be changed (and what if the Songs authors dont feel the need to do so, for example by lack of time?).
Enhancements:
- sc1.c sc1_gui.c:
- New files, ripping a compressor from sc1_1425 coming from swh-plugins-0.4.11.tar.gz (see http://plugin.org.uk/).The compressor was buggy, sometimes in rms_env_process
- r->sum was negative, leading to NaN for the sqrt stuff.
- pan/vol/pos.c: Checking return value of malloc (no, it was not done, shame !).
- various files: Fixing a realloc misusing (doing realloc(size+=32) then size+=32, which finally means size+=64 but only allocing size+32 stuff, weirdy to find).
- help_gui.c: The "About" stuff only appeared once, fixing it.
- various files: Fixing bugs those last days, forgot to feed this Changelog.
Download (0.060MB)
Added: 2006-07-19 License: GPL (GNU General Public License) Price:
1223 downloads
jOggPlayer 1.1.4
jOggPlayer is an open source platform independant Graphical Ogg Vorbis Player. more>>
jOggPlayer is an open source platform independant Graphical Ogg Vorbis Player. Developed using Java, so if your system has a Java2 VM you can use this app. You can now listen to your Oggs using an app that is NOT bloated. In fact this app/let should be able to run on a web page after you set your java security permissions.
I programmed this because I wanted a Java Graphical Vorbis Ogg player. I did it for myself and thought I would share it with you. My first priority was to get something that worked and looked reasonable. There are still some outstanding issues that I want to fix or work on. Dont expect a WinAMP style playlist, Playlists are harder to be made than the actual player.
Main features:
- plays files from your hard drive or
- plays songs from a URL
- plays streams from jRoar ogg streams (version 1.1 only)
- individual file play or multiple file looping play
- sequential or random play
- in applet volume control that goes to 11!
- visual song progress indicator
- playlist songs have a favourite selection box (version 1.1 only)
- displays ogg file information comments in a mouse-over popup window (song name, artist etc.)
- unlimitted size playlist that can transparently include files and/or URLs
- user selectable directory recursion on file load... just choose a dir from the load file dialog
- can load a file, URL or a whole directory of files on startup
- can save and load your playlist to a file
- can read your m3u playlist for ogg files
- user selectable fonts, colours, and background textures
- needs Java 1.2 or higher
- works behind a proxy/firewall (see the starting documentation)
- PLUS it sounds great!
<<lessI programmed this because I wanted a Java Graphical Vorbis Ogg player. I did it for myself and thought I would share it with you. My first priority was to get something that worked and looked reasonable. There are still some outstanding issues that I want to fix or work on. Dont expect a WinAMP style playlist, Playlists are harder to be made than the actual player.
Main features:
- plays files from your hard drive or
- plays songs from a URL
- plays streams from jRoar ogg streams (version 1.1 only)
- individual file play or multiple file looping play
- sequential or random play
- in applet volume control that goes to 11!
- visual song progress indicator
- playlist songs have a favourite selection box (version 1.1 only)
- displays ogg file information comments in a mouse-over popup window (song name, artist etc.)
- unlimitted size playlist that can transparently include files and/or URLs
- user selectable directory recursion on file load... just choose a dir from the load file dialog
- can load a file, URL or a whole directory of files on startup
- can save and load your playlist to a file
- can read your m3u playlist for ogg files
- user selectable fonts, colours, and background textures
- needs Java 1.2 or higher
- works behind a proxy/firewall (see the starting documentation)
- PLUS it sounds great!
Download (2.7MB)
Added: 2006-08-03 License: GPL (GNU General Public License) Price:
1187 downloads
ZoltanPlayer 1.0.0
ZoltanPlayer is a music playing daemon. more>>
ZoltanPlayer is a music playing daemon. It accepts remote commands via its own mini HTTP server and can use seamlessly Audio or Data CDs. Audio CDs are played internally (optionally querying CDDB info servers) and digital songs in audio CDs are played via external players. Its not limited to CDs, as a hard disk directory can also be used.
The optimal equipment for ZoltanPlayer is a CDROM-equipped computer directly connected to an amplifier or stereo. Its not a streaming server, nor a ripper, nor a simple HTTP+HTML interface jukebox (this could be done with a CGI). ZoltanPlayer integrates the controlling of CD insertion / eject with the capability of directly playing CD Audio and spawning external player for MP3 / Ogg Vorbis / whatever song files.
Current version is 1.0.0. This software only runs on Linux and its licensed under the GPL.
Here is a list of commands for ZoltanPlayer:
mount: Mounts the CD in the drive (closing it if necessary). If its a CD Audio, it will take info about it and search the local CDDB cache; if no info for this CD is found, it will query a remote CDDB server. If its a CD-ROM, it will traverse it recursively looking for playable files and the subdirectories containing songs will be treated as groups. Anyway, the list of songs will be stored in its internal database ready for playing.
umount: Unmounts the CD, and ejects it.
xmount: A combination of the previous two. If CD is mounted, umount it, and vice-versa.
hd: Reads a directory from the hard disk (this directory must be defined in the config file to be used). It will be treated the same as a CD-ROM. This command can also be used to re-read the hard disk directory contents if it has been updated since ZoltanPlayer read it.
play: Starts playing the first song.
stop: Stops playing.
pause: Pauses / unpauses the currently playing song.
next-song: Moves to the next song and plays it.
prev-song: Move to the previous song and plays it.
goto-N: Moves to song number N and plays it.
next-group: Moves to the first song of the next group and plays it If no group is defined (as in Audio CDs), it restarts playing from the first song.
prev-group: Moves to the first song of the previous group and plays it.If no group is defined (as in Audio CDs), it restarts playing from the first song.
song-info: Returns information about the song being played in one line. This command can be used from a shell script to display the info on an LCD, a ticker or something like that.
vol-up: Pumps up the volume by 5%. Only operative if the sound card mixer is being used (see sample config file).
vol-down: Lowers the volume by 5%. Only operative if the sound card mixer is being used.
cd-info: Shows the current list of songs, and information about the current group and song being played, if any.
skip-N: disable the song number N (do not play it).
rest-N: enable the previously disabled song number N.
toggle: toggle the skip selection.
toggle-playlist: toggle the skip selection for those songs inside playlists.
shuffle: shuffle the playing order of songs.
unshuffle: get back to original sorting of songs (CD order for Audio CDs, or alphabetical ordering if song files from CDROMs or hard di
Enhancements:
- Support for CD cover images.
- First stable release.
<<lessThe optimal equipment for ZoltanPlayer is a CDROM-equipped computer directly connected to an amplifier or stereo. Its not a streaming server, nor a ripper, nor a simple HTTP+HTML interface jukebox (this could be done with a CGI). ZoltanPlayer integrates the controlling of CD insertion / eject with the capability of directly playing CD Audio and spawning external player for MP3 / Ogg Vorbis / whatever song files.
Current version is 1.0.0. This software only runs on Linux and its licensed under the GPL.
Here is a list of commands for ZoltanPlayer:
mount: Mounts the CD in the drive (closing it if necessary). If its a CD Audio, it will take info about it and search the local CDDB cache; if no info for this CD is found, it will query a remote CDDB server. If its a CD-ROM, it will traverse it recursively looking for playable files and the subdirectories containing songs will be treated as groups. Anyway, the list of songs will be stored in its internal database ready for playing.
umount: Unmounts the CD, and ejects it.
xmount: A combination of the previous two. If CD is mounted, umount it, and vice-versa.
hd: Reads a directory from the hard disk (this directory must be defined in the config file to be used). It will be treated the same as a CD-ROM. This command can also be used to re-read the hard disk directory contents if it has been updated since ZoltanPlayer read it.
play: Starts playing the first song.
stop: Stops playing.
pause: Pauses / unpauses the currently playing song.
next-song: Moves to the next song and plays it.
prev-song: Move to the previous song and plays it.
goto-N: Moves to song number N and plays it.
next-group: Moves to the first song of the next group and plays it If no group is defined (as in Audio CDs), it restarts playing from the first song.
prev-group: Moves to the first song of the previous group and plays it.If no group is defined (as in Audio CDs), it restarts playing from the first song.
song-info: Returns information about the song being played in one line. This command can be used from a shell script to display the info on an LCD, a ticker or something like that.
vol-up: Pumps up the volume by 5%. Only operative if the sound card mixer is being used (see sample config file).
vol-down: Lowers the volume by 5%. Only operative if the sound card mixer is being used.
cd-info: Shows the current list of songs, and information about the current group and song being played, if any.
skip-N: disable the song number N (do not play it).
rest-N: enable the previously disabled song number N.
toggle: toggle the skip selection.
toggle-playlist: toggle the skip selection for those songs inside playlists.
shuffle: shuffle the playing order of songs.
unshuffle: get back to original sorting of songs (CD order for Audio CDs, or alphabetical ordering if song files from CDROMs or hard di
Enhancements:
- Support for CD cover images.
- First stable release.
Download (0.036MB)
Added: 2006-07-20 License: GPL (GNU General Public License) Price:
1191 downloads
Score Rated 0.3
Score Rated is a rated scoring script that uses the rating as a factor in the scoring process. more>>
Score Rated is a rated scoring script which uses the rating as a factor in the scoring process. Higher ratings leds to higher score. The rating is factored in each play.
I make no promises but the script hasnt messed up my system yet.
Usage:
You must use ratings for this script to have any point. Run the script, and it will be used to calculate scores for your tracks from then on. The script can be tweek by editing the file.
Known flaws:
Script reads rating when the song starts playing. Changes made after that is not considered. To make sure a new rating is used you could stop and restart the script or pause and play the song.
I will be looking in this for a future version. Suggestions are welcome.
<<lessI make no promises but the script hasnt messed up my system yet.
Usage:
You must use ratings for this script to have any point. Run the script, and it will be used to calculate scores for your tracks from then on. The script can be tweek by editing the file.
Known flaws:
Script reads rating when the song starts playing. Changes made after that is not considered. To make sure a new rating is used you could stop and restart the script or pause and play the song.
I will be looking in this for a future version. Suggestions are welcome.
Download (0.030MB)
Added: 2007-03-05 License: GPL (GNU General Public License) Price:
966 downloads
Per-Song Volume 0.2.0
Per-Song Volume is a Perl script maintains a per-song volume information. more>>
Per-Song Volume is a Perl script maintains a per-song volume information.
What it means is that a volume is associated with each song, which is recorded whenever the volume changes, and is restored to its last value when the song is played again.
This is useful if you have several songs which sound louder or softer than the rest.
To run this script you need perl 5 and DBD::SQLite (http://search.cpan.org/dist/DBD-SQLite/).
The file "$HOME/.kde/share/apps/amarok/scripts-data/per-song-volume.default-volume.txt" can optionally hold the default volume for playing the files (an integer from 0 to 100). The default setting for it is 40.
I hope you find this script useful!
<<lessWhat it means is that a volume is associated with each song, which is recorded whenever the volume changes, and is restored to its last value when the song is played again.
This is useful if you have several songs which sound louder or softer than the rest.
To run this script you need perl 5 and DBD::SQLite (http://search.cpan.org/dist/DBD-SQLite/).
The file "$HOME/.kde/share/apps/amarok/scripts-data/per-song-volume.default-volume.txt" can optionally hold the default volume for playing the files (an integer from 0 to 100). The default setting for it is 40.
I hope you find this script useful!
Download (0.003MB)
Added: 2006-11-27 License: GPL (GNU General Public License) Price:
1071 downloads
AmaroK now playing 0.1
AmaroK now playing is a script that displays the song you are currently playing with amaroK. more>>
AmaroK now playing is a script that displays the song you are currently playing with amaroK.
Add it to, /usr/share/apps/konversation/scripts
Then add it to command aliases
Konversation > settings > command aliases
For example: alias: np ;replacement: /exec np
<<lessAdd it to, /usr/share/apps/konversation/scripts
Then add it to command aliases
Konversation > settings > command aliases
For example: alias: np ;replacement: /exec np
Download (MB)
Added: 2007-06-15 License: GPL (GNU General Public License) Price:
872 downloads
Randomplay 0.49
Randomplay is a command-line based shuffle music player that remembers songs between sessions. more>>
Randomplay is a command-line based shuffle music player that remembers songs between sessions.
Randomplay plays your music collection (or execute any arbitrary commands on any arbitrary filetypes) in random order, remembering songs played across sessions.
Randomplay also has many features to make command-line music playing more convenient, including recursive regexp searching for tracks and the ability to specify a certain number of tracks, bytes, or minutes to play.
Randomplay will also generate a list of music files to be loaded onto a portable music player device. It includes a random weighting feature, so your favorite songs are more likely to come up in the random shuffle.
Randomplay is a convenient tool for the user who does everything in an xterm window or console and is constantly devising complex find/grep/sed command lines to play just the right set of songs.
Following are some example invocations of randomplay to give a general sense of its flexibility; see the manpage for more complete information:
Play all ogg files in dir1 and dir2 under your home directory, and dir3 under the base directory specified in ~/.randomplayrc, which have not been played for 15 days in random order with 5 seconds between songs:
randomplay --days=15 --pause=5 --player ogg=ogg123 ~/dir1 ~/dir2 =dir3
Play all ogg, wav, and mp3 files under the current directory (or base directory, if specified in .randomplayrc file) which have not been played for 10 days in alphabetical order, switch the skip to next song keystroke to G or g and quit to q or c:
randomplay --norandom --key next=Gg --key quit=qc
Play all files under the current directory with the strings "frisell" and "bill" in the filename, in any order, (saves having to hunt down a file in a hierarchy), ignore whether the file has been played recently, but stop playing after 15 minutes:
randomplay --regexp frisell bill -0 --maxtime=15m
Display 100M worth of music files, randomly sorted, without recording the history of tracks, using the default music directory (or the current directory if not specified):
randomplay --maxsize=100M --noremember --names-only
Play the last 10 songs played over again:
randomplay --last=10
Play songs test.ogg, test2.ogg, test3.ogg, and all files in musicdir in random order without weighting preferred songs:
randomplay --noweight test.ogg test2.ogg test3.ogg musicdir
Copy 128M of songs into a Neuros Audio Player, using positron:
positron add randomplay --names-only --maxsize=128M
Pick a random jpeg or png file that has not been displayed in the last week from the images directory and display it with ImageMagick display command:
randomplay --player jpg=display --player gif=display --days 7 ~/images
Enhancements:
- New keystrokes for pausing and displaying all available keystrokes while playing were added.
- UTF-8 output for MP3 tags can now be disabled.
- A bug that prevented randomplay from working with sox was fixed.
- The documentation was improved.
<<lessRandomplay plays your music collection (or execute any arbitrary commands on any arbitrary filetypes) in random order, remembering songs played across sessions.
Randomplay also has many features to make command-line music playing more convenient, including recursive regexp searching for tracks and the ability to specify a certain number of tracks, bytes, or minutes to play.
Randomplay will also generate a list of music files to be loaded onto a portable music player device. It includes a random weighting feature, so your favorite songs are more likely to come up in the random shuffle.
Randomplay is a convenient tool for the user who does everything in an xterm window or console and is constantly devising complex find/grep/sed command lines to play just the right set of songs.
Following are some example invocations of randomplay to give a general sense of its flexibility; see the manpage for more complete information:
Play all ogg files in dir1 and dir2 under your home directory, and dir3 under the base directory specified in ~/.randomplayrc, which have not been played for 15 days in random order with 5 seconds between songs:
randomplay --days=15 --pause=5 --player ogg=ogg123 ~/dir1 ~/dir2 =dir3
Play all ogg, wav, and mp3 files under the current directory (or base directory, if specified in .randomplayrc file) which have not been played for 10 days in alphabetical order, switch the skip to next song keystroke to G or g and quit to q or c:
randomplay --norandom --key next=Gg --key quit=qc
Play all files under the current directory with the strings "frisell" and "bill" in the filename, in any order, (saves having to hunt down a file in a hierarchy), ignore whether the file has been played recently, but stop playing after 15 minutes:
randomplay --regexp frisell bill -0 --maxtime=15m
Display 100M worth of music files, randomly sorted, without recording the history of tracks, using the default music directory (or the current directory if not specified):
randomplay --maxsize=100M --noremember --names-only
Play the last 10 songs played over again:
randomplay --last=10
Play songs test.ogg, test2.ogg, test3.ogg, and all files in musicdir in random order without weighting preferred songs:
randomplay --noweight test.ogg test2.ogg test3.ogg musicdir
Copy 128M of songs into a Neuros Audio Player, using positron:
positron add randomplay --names-only --maxsize=128M
Pick a random jpeg or png file that has not been displayed in the last week from the images directory and display it with ImageMagick display command:
randomplay --player jpg=display --player gif=display --days 7 ~/images
Enhancements:
- New keystrokes for pausing and displaying all available keystrokes while playing were added.
- UTF-8 output for MP3 tags can now be disabled.
- A bug that prevented randomplay from working with sox was fixed.
- The documentation was improved.
Download (0.021MB)
Added: 2005-11-25 License: GPL (GNU General Public License) Price:
1440 downloads
Jinamp Is Not An Mp3 Player 1.0.5
Jinamp is primarily a music shuffler for command line junkies. more>>
Jinamp is primarily a music shuffler for command line junkies. Jinamp runs in the background and does not require X or even a terminal.
A control program allows limited control over the playing (pause, next song, etc., but no seeking).
The actual playing is done by other programs, so it can be adapted for other purposes, such as shuffling video clips for advertising.
Enhancements:
- The control tools have been improved, in particular making once-off song requests possible.
<<lessA control program allows limited control over the playing (pause, next song, etc., but no seeking).
The actual playing is done by other programs, so it can be adapted for other purposes, such as shuffling video clips for advertising.
Enhancements:
- The control tools have been improved, in particular making once-off song requests possible.
Download (0.10MB)
Added: 2005-11-14 License: GPL (GNU General Public License) Price:
1439 downloads
Simple_XOSD 0.1.1
Simple_XOSD displays a small OSD on your screen that shows you information about the song that is played currently. more>>
Simple_XOSD is an amaroK script that displays a small OSD on your screen that shows you information about the song that is played currently.
By default, it is located in the upper right corner of the screen (leaving enough room for title bar buttons, of course). It shows the artist, the name and the remaining time of the current song.
Customization:
Simple_XOSD is easy to customize. You can set the location, the text (size, color, the font itself) and the update interval (One second by default).
But you dont have to - Simple_XOSD *should* work out of the "box".
<<lessBy default, it is located in the upper right corner of the screen (leaving enough room for title bar buttons, of course). It shows the artist, the name and the remaining time of the current song.
Customization:
Simple_XOSD is easy to customize. You can set the location, the text (size, color, the font itself) and the update interval (One second by default).
But you dont have to - Simple_XOSD *should* work out of the "box".
Download (0.027MB)
Added: 2006-06-01 License: GPL (GNU General Public License) Price:
1240 downloads
XMMS Now Playing plugin 0.1.4
XMMS Now Playing plugin outputs information of the song currently being played in XMMS to specified text files. more>>
XMMS Now Playing plugin outputs information of the song currently being played in XMMS to specified text files. It supports ID3 tags (using libid3tag from MAD project) and has some other bells and whistles.
This is a now playing plugin for XMMS, replacement for song_change.so
This is a really quick hack, but it works for me.
song_change.so (song change plugin) is included in XMMS package and provides
somewhat relative functionality, but with some limitations.
Improvements:
1. support for id3/id3v2 tags via libid3tag from MAD
2. support for additional conditions (if paused, if playing, etc..) not just playing/end of playlist reached.
<<lessThis is a now playing plugin for XMMS, replacement for song_change.so
This is a really quick hack, but it works for me.
song_change.so (song change plugin) is included in XMMS package and provides
somewhat relative functionality, but with some limitations.
Improvements:
1. support for id3/id3v2 tags via libid3tag from MAD
2. support for additional conditions (if paused, if playing, etc..) not just playing/end of playlist reached.
Download (0.16MB)
Added: 2006-04-12 License: GPL (GNU General Public License) Price:
1294 downloads
CDcover XMMS Plugin 0.2
CDcover XMMS Plugin displays a graphic dependent on the currently played song. more>>
CDcover XMMS Plugin displays a graphic dependent on the currently played song.
Normal usage would be to display the CD covers for the different songs. The graphics are retrieved from your computer. Therefore searchpaths can be defined, where a corresponding cover is searched for.
Main features:
- Define as many different search paths as you need, including wildcards
- Buildin skin, full support for custom skins
- Many different graphic formats (supported formats depend on your gtk installation)
- Automatically resizes the images, and preserves aspect-ratio upon request
<<lessNormal usage would be to display the CD covers for the different songs. The graphics are retrieved from your computer. Therefore searchpaths can be defined, where a corresponding cover is searched for.
Main features:
- Define as many different search paths as you need, including wildcards
- Buildin skin, full support for custom skins
- Many different graphic formats (supported formats depend on your gtk installation)
- Automatically resizes the images, and preserves aspect-ratio upon request
Download (0.23MB)
Added: 2006-04-11 License: GPL (GNU General Public License) Price:
1291 downloads
Gronk 1.9
Gronk is a Web-based MP3 jukebox. more>>
Gronk is a Web-based MP3 jukebox. Gronk project generates heavily-hyperlinked Web pages listing all of your ripped CDs, by extracting information from CDDB data.
These Web pages allow easy selection of songs or albums to play, and when nothing has been explicitly selected, it selects songs randomly. Playback is done via either XMMS or mpg123.
Main features:
- Web-based user interface;
- Hierarchical display of bands, albums, and tracks, including album cover artwork (if present);
- Easy to select a particular track or an entire album for playback;
- When you havent explicitly selected songs for playback, they are chosen randomly from amongst your entire collection;
- Easy to tell it ``never play this song again;
- Can use any command-line program for playback;
- Can also use XMMS for playback;
- If you use XMMS, then you get Icecast broadcasts for free, via the Oddcast DSP plugin;
- Navigation hyperlinks on everything;
- Automatically cross-references bands with compilation albums on which they appear;
- Gets album and song names from FreeDB/CDDB instead of from the MP3 files themselves, bypassing the 30-character limit;
- Doesnt use SQL.
<<lessThese Web pages allow easy selection of songs or albums to play, and when nothing has been explicitly selected, it selects songs randomly. Playback is done via either XMMS or mpg123.
Main features:
- Web-based user interface;
- Hierarchical display of bands, albums, and tracks, including album cover artwork (if present);
- Easy to select a particular track or an entire album for playback;
- When you havent explicitly selected songs for playback, they are chosen randomly from amongst your entire collection;
- Easy to tell it ``never play this song again;
- Can use any command-line program for playback;
- Can also use XMMS for playback;
- If you use XMMS, then you get Icecast broadcasts for free, via the Oddcast DSP plugin;
- Navigation hyperlinks on everything;
- Automatically cross-references bands with compilation albums on which they appear;
- Gets album and song names from FreeDB/CDDB instead of from the MP3 files themselves, bypassing the 30-character limit;
- Doesnt use SQL.
Download (0.10MB)
Added: 2006-04-21 License: BSD License Price:
1281 downloads
XMMS InfoPipe 1.3
XMMS InfoPipe is a plugin that reports XMMS status via named pipe. more>>
XMMS InfoPipe is a plugin that reports XMMS status via named pipe. XMMS InfoPipe is handy if you want to add interesting real-time information for a personal web page, or a web cam page.
While theres a possibility of setting up programs to be executed by XMMS when changing songs, XMMS InfoPipe provides better introspection: You can get information on song position, song length, playlist position, status (stopped/playing/paused), song title as displayed by XMMS, and file name. The information is reported in easily parseable textual format.
The possibilities for information use are limitless. So far, here are some of the things people have been using InfoPipe for:
Showing information of XMMS on home page, webcam page, or something related (script included)
Showing player information on IRC (spotted one script for Irssi)
Using any speech synthetizer to say the song information, reducing the need for external displays, and helping listening to unfamiliar music in bed when all you have is a remote control =) (script included).
Yeah, LIRC plugin seems to support this already, but it only supports ViaVoice - this allows you to use any speech synth... or any other types of output. Just an example of flexibility - I created the script to do that at 4 oclock in the morning, and even got 99% of Perl recommendations of good coding right, even when I wasnt fully awake.
<<lessWhile theres a possibility of setting up programs to be executed by XMMS when changing songs, XMMS InfoPipe provides better introspection: You can get information on song position, song length, playlist position, status (stopped/playing/paused), song title as displayed by XMMS, and file name. The information is reported in easily parseable textual format.
The possibilities for information use are limitless. So far, here are some of the things people have been using InfoPipe for:
Showing information of XMMS on home page, webcam page, or something related (script included)
Showing player information on IRC (spotted one script for Irssi)
Using any speech synthetizer to say the song information, reducing the need for external displays, and helping listening to unfamiliar music in bed when all you have is a remote control =) (script included).
Yeah, LIRC plugin seems to support this already, but it only supports ViaVoice - this allows you to use any speech synth... or any other types of output. Just an example of flexibility - I created the script to do that at 4 oclock in the morning, and even got 99% of Perl recommendations of good coding right, even when I wasnt fully awake.
Download (0.17MB)
Added: 2006-04-07 License: GPL (GNU General Public License) Price:
1307 downloads
Beep Media Player RSS feed provider 0.1.0
Beep Media Player RSS feed provider is a tool for generating RSS feeds of songs played by BMP. more>>
Beep Media Player RSS feed provider is a tool for generating RSS feeds of songs played by BMP.
bmp-rss-feeder is a plugin for the Beep Media Player that makes it possible to publish an RSS feed containing the names of recently played songs.
The feed can be published both locally and on the Internet.
<<lessbmp-rss-feeder is a plugin for the Beep Media Player that makes it possible to publish an RSS feed containing the names of recently played songs.
The feed can be published both locally and on the Internet.
Download (0.24MB)
Added: 2005-07-21 License: GPL (GNU General Public License) Price:
1559 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 songs played 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