<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://oldwiki.arcadecontrols.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Barcrest</id>
	<title>BYOAC OLD Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://oldwiki.arcadecontrols.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Barcrest"/>
	<link rel="alternate" type="text/html" href="http://oldwiki.arcadecontrols.com/index.php/Special:Contributions/Barcrest"/>
	<updated>2026-05-21T03:37:04Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.32.0</generator>
	<entry>
		<id>http://oldwiki.arcadecontrols.com/index.php?title=Jukebox_Plug-Ins&amp;diff=9665</id>
		<title>Jukebox Plug-Ins</title>
		<link rel="alternate" type="text/html" href="http://oldwiki.arcadecontrols.com/index.php?title=Jukebox_Plug-Ins&amp;diff=9665"/>
		<updated>2008-01-11T01:08:48Z</updated>

		<summary type="html">&lt;p&gt;Barcrest: /* How To Write your own Plug-In */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Jukebox Plugins''' are bit of 'add on' software that is controlled by your Juke-box software.&lt;br /&gt;
&lt;br /&gt;
==BackGround==&lt;br /&gt;
&lt;br /&gt;
In early 2008 a 'standard' set of commands was agreed upon by a few Jukebox software Authors. With some input from other interested parties a Global standard was created. The goal was a plug-in could be created and with a view most if not al functionality would be compatible with any Jukebox software applying this standard.&lt;br /&gt;
&lt;br /&gt;
The standard is known as 'The Jukebox Plug-in System' or '''JPS'''&lt;br /&gt;
&lt;br /&gt;
==How To Use a Plug-In==&lt;br /&gt;
&lt;br /&gt;
Download the plug-in and place it in the 'plugins' subfolder of your Jukebox software. You then need to configure it by.......&lt;br /&gt;
&lt;br /&gt;
==How To Write your own Plug-In==&lt;br /&gt;
&lt;br /&gt;
To write a Plug-in you need to obtain a copy of the 'Juke-Box Plug-In SDK'&lt;br /&gt;
&lt;br /&gt;
The following is a list of supported Functions:&lt;br /&gt;
&lt;br /&gt;
'''PCHAR Juke_GetPluginInfo();'''&lt;br /&gt;
Return a string contaion this info with this format:&lt;br /&gt;
PLUGIN_NAME + '|' + PLUGIN_AUTHOR + '|' + PLUGIN_VERSION + '|' + PLUGIN_DESCRIPTION&lt;br /&gt;
&lt;br /&gt;
'''Juke_Command(Name:PChar; Value:PChar):PChar;'''&lt;br /&gt;
Sending a string (UTF8 or ASCII formatted) with a name and a value, and some commands might return a string pointer to a jukebox softare (also UTF8 or ASCII formatted).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''CONFIGURATION COMMANDS:'''&lt;br /&gt;
&lt;br /&gt;
'''Juke_Command(&amp;quot;JUKE_KEY_EVENT_CREATE&amp;quot;,&amp;quot;KEY_EVENT_NAME&amp;quot;)'''&lt;br /&gt;
This command is required before JUKE_PLUGIN_CONFIGURE is invoked. This make sure a plugin can &amp;quot;listen&amp;quot; to a KEY_EVENT command from the Jukebox Software and example effect a sound effect to a KEY_EVENT.&lt;br /&gt;
&lt;br /&gt;
A Jukebox Software can create any KEY_EVENT commands that can been controlled by the user (also like a keybinding).&lt;br /&gt;
&lt;br /&gt;
Only KEY_EVENT commands (keybindning) is needed for the plugin to known, so they can used for various things like LedWiz, Sound, Remote controlling and other things.&lt;br /&gt;
&lt;br /&gt;
'''Juke_Command(&amp;quot;JUKE_PLUGIN_CONFIGURE&amp;quot;,&amp;quot;WINDOW_HWND&amp;quot;)'''&lt;br /&gt;
Invoke plugin configuration screen with the Plugin Mangager WINDOW ID. The Plugin can use as its parent windows, so the configuration window can have the current focus.&lt;br /&gt;
&lt;br /&gt;
If a Jukebox Application dosent know what it is, this can been set to 0.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''APPLICATION COMMANDS:'''&lt;br /&gt;
&lt;br /&gt;
'''Juke_Command(&amp;quot;JUKE_APP_OPENED&amp;quot;,&amp;quot;&amp;quot;)'''&lt;br /&gt;
The Jukebox software have just started.&lt;br /&gt;
&lt;br /&gt;
'''Juke_Command(&amp;quot;JUKE_APP_CLOSED&amp;quot;,&amp;quot;&amp;quot;)'''&lt;br /&gt;
The Jukebox software have just closed.&lt;br /&gt;
&lt;br /&gt;
'''Juke_Command(&amp;quot;JUKE_APP_UNICODE&amp;quot;,&amp;quot;TRUE or FALSE&amp;quot;)'''&lt;br /&gt;
Does the Jukebox support Unicode or not? Then the UTF8 formatted strings can been used.&lt;br /&gt;
&lt;br /&gt;
'''Juke_Command(&amp;quot;JUKE_APP_HOST&amp;quot;,&amp;quot;SOFTWARE NAME&amp;quot;)'''&lt;br /&gt;
The Jukebox software name.&lt;br /&gt;
&lt;br /&gt;
If a jukebox application support UNICODE, the arguments would been JUKE_APP_HOST_UNICODE his string would been used, otherwice empty. If the Jukebox Software is not used any unicode string, that would been no need to convert UTF8 strings by both plugin and jukebox software.&lt;br /&gt;
&lt;br /&gt;
!! Plugin Writers: Please dont reject other jukebox software, if you have a favorit !!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''SONGLIST COMMANDS:'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For Jukebox Authors: If the song contain a | char (I never seen that), remove that before send the string.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Juke_Command(&amp;quot;JUKE_SONGLIST_ADD_SONG&amp;quot;,'''&lt;br /&gt;
&amp;quot;system|postition|title|artist|album|genre|totalDuration|TrackNr|AlbumNr|more&amp;quot;)&lt;br /&gt;
Add a song into that position in the queue.&lt;br /&gt;
&lt;br /&gt;
Some Jukebox Software might add a song directly as a first song, so it play directly. Here set a value to 0.&lt;br /&gt;
If a positionis to big, it would just added next to the queue.&lt;br /&gt;
&lt;br /&gt;
Info about arguments:&lt;br /&gt;
&lt;br /&gt;
* Auto means if it was added by the &amp;quot;USER&amp;quot; or by &amp;quot;SYSTEM&amp;quot;.&lt;br /&gt;
* TrackNr and AlbumNr is the same values gave by DIGIT COMMANDS.&lt;br /&gt;
* Some songinfo &amp;quot;tags&amp;quot; might been empty if not used.&lt;br /&gt;
* Some songs might not even contain TotalDuration if it is unknown.&lt;br /&gt;
* If more songs is going to submit at once, the more vaule is set to 1. The last submitted song would have a value set to 0.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Juke_Command(&amp;quot;JUKE_SONGLIST_REMOVE_SONG&amp;quot;, &amp;quot;System|position&amp;quot;)'''&lt;br /&gt;
Song removed from the queue by user or system or a song is played finished (using queuePosNum=1 as value).&lt;br /&gt;
&lt;br /&gt;
'''Juke_Command(&amp;quot;JUKE_SONGLIST_MOVE_SONG&amp;quot;, &amp;quot;System|oldPosition|newPosition&amp;quot;)'''&lt;br /&gt;
Song has been moved in the queue by user or system.&lt;br /&gt;
&lt;br /&gt;
'''Juke_Command(&amp;quot;JUKE_SONGLIST_CLEAR&amp;quot;, &amp;quot;System&amp;quot;)'''&lt;br /&gt;
The song queue has been cleared by user or system.&lt;br /&gt;
&lt;br /&gt;
'''Juke_Command(&amp;quot;JUKE_SONGLIST_CURRENTPOSITION&amp;quot;, &amp;quot;System&amp;quot;)'''&lt;br /&gt;
Some software do NOT delete queue after played song, like a PLAYLIST system in Winamp. These software would tell which song that is curretly playing. Queue based Jukebox Software might not use this command.&lt;br /&gt;
&lt;br /&gt;
FILE=Juke_Command(&amp;quot;JUKE_SONGLIST_SUGGESTION&amp;quot;, &amp;quot;&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
Get a playlist file from a plugin. This command can been used when the queue is empty or last song is played finish from the PlayList. neat for applications like MUSIC_IP.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''SONG PLAYING COMMANDS:'''&lt;br /&gt;
&lt;br /&gt;
'''Juke_Command(&amp;quot;JUKE_SONG_START&amp;quot;,&amp;quot;&amp;quot;)'''&lt;br /&gt;
New song is just started.&lt;br /&gt;
&lt;br /&gt;
'''Juke_Command(&amp;quot;JUKE_SONG_FINISH&amp;quot;,&amp;quot;&amp;quot;)'''&lt;br /&gt;
Current song has finished.&lt;br /&gt;
&lt;br /&gt;
Juke_Command(&amp;quot;JUKE_SONG_RESTART&amp;quot;,&amp;quot;&amp;quot;)&lt;br /&gt;
Current song has been restarted&lt;br /&gt;
&lt;br /&gt;
Juke_Command(&amp;quot;JUKE_SONG_SKIP&amp;quot;,&amp;quot;&amp;quot;)&lt;br /&gt;
Current song has been skipped.&lt;br /&gt;
&lt;br /&gt;
Juke_Command(&amp;quot;JUKE_SONG_PAUSE&amp;quot;,&amp;quot;&amp;quot;)&lt;br /&gt;
Current song has been paused.&lt;br /&gt;
&lt;br /&gt;
Juke_Command(&amp;quot;JUKE_SONG_RESUME&amp;quot;,&amp;quot;&amp;quot;)&lt;br /&gt;
Current song has been resumed from pause state&lt;br /&gt;
&lt;br /&gt;
Juke_Command(&amp;quot;JUKE_SONG_FASTFWD_START&amp;quot;,&amp;quot;&amp;quot;)&lt;br /&gt;
Current song has started being fast forwarded.&lt;br /&gt;
&lt;br /&gt;
Juke_Command(&amp;quot;JUKE_SONG_FASTFWD_FINISH&amp;quot;,&amp;quot;&amp;quot;)&lt;br /&gt;
Current song has finished being fast forwarded&lt;br /&gt;
&lt;br /&gt;
Juke_Command(&amp;quot;JUKE_SONG_FASTREV_START&amp;quot;,&amp;quot;&amp;quot;)&lt;br /&gt;
Current song has started being fast reversed&lt;br /&gt;
&lt;br /&gt;
Juke_Command(&amp;quot;JUKE_SONG_FASTREV_FINISH&amp;quot;,&amp;quot;&amp;quot;)&lt;br /&gt;
Current song has finished being fast reversed&lt;br /&gt;
&lt;br /&gt;
Juke_Command(&amp;quot;JUKE_SONG_PLAY_POSITION&amp;quot;,curPosSecs)&lt;br /&gt;
The number of seconds into the current song. This command is also still invoked under FASTREV or FASTFWD commands.&lt;br /&gt;
&lt;br /&gt;
The Jukebox Software Do allways send this info when the secs is changed due to above reason. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
VOLUME COMMANDS:&lt;br /&gt;
&lt;br /&gt;
Juke_Command(&amp;quot;JUKE_VOLUME_SET&amp;quot;, &amp;quot;system|curVolumeLevel|minVolumeLevel|maxVolumeLevel&amp;quot;)&lt;br /&gt;
A new value volume have been set.&lt;br /&gt;
&lt;br /&gt;
If system is set the volume, the last argument would set to one.&lt;br /&gt;
&lt;br /&gt;
Juke_Command(&amp;quot;JUKE_VOLUME_MUTE&amp;quot;, &amp;quot;TRUE or FALSE&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
Set Mute Status to TRUE or FALSE.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
DIGIT COMMANDS:&lt;br /&gt;
&lt;br /&gt;
Juke_Command(&amp;quot;JUKE_ENTER_ALBUM_VALUE&amp;quot;, &amp;quot;VALUE&amp;quot;)&lt;br /&gt;
Send the value string on the marked album, when the have entered a album number or letter.&lt;br /&gt;
&lt;br /&gt;
Juke_Command(&amp;quot;JUKE_ENTER_TRACK_VALUE&amp;quot;, &amp;quot;VALUE&amp;quot;)&lt;br /&gt;
Send the value string on the marked track or singles, when the have entered a album number or letter.&lt;br /&gt;
&lt;br /&gt;
A Track number and or letter have been selected. Send the whole value, user seen on screen and not one digit at one time.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
KEY_EVENT COMMANDS&lt;br /&gt;
&lt;br /&gt;
Juke_Command(&amp;quot;JUKE_KEY_EVENT_SEND&amp;quot;, &amp;quot;KEYEVENT|ENABLE or DISABLE&amp;quot;)&lt;br /&gt;
Is event is disabled or enabled? If the EVENT dosent need that, it might just send a &amp;quot;&amp;quot; string. Hence it allways enabled.&lt;br /&gt;
&lt;br /&gt;
EVENT=Juke_Command(&amp;quot;JUKE_KEY_EVENT_GET&amp;quot;,&amp;quot;&amp;quot;)&lt;br /&gt;
A KEY_EVENT have sendt from plugin to the jukebox software, and the command EVENT would been accour.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
FEATURE COMMANDS:'''&lt;br /&gt;
&lt;br /&gt;
'''Juke_Command(&amp;quot;JUKE_FEATURE_ATTRACT_MODE&amp;quot;, onActive or onNotActive or Off)'''&lt;br /&gt;
&lt;br /&gt;
onActive (attract mode has been activated by the user and is currently running)&lt;br /&gt;
onNotActive (attract mode has been activated by the user and is NOT currently running)&lt;br /&gt;
off (attract mode has NOT been activated by the user)&lt;br /&gt;
&lt;br /&gt;
'''Juke_Command(&amp;quot;JUKE_FEATURE_GENRE_LOCK&amp;quot;, TRUE or FALSE)'''&lt;br /&gt;
Genre Lock feature is enabled (TRUE) or disabled (FALSE)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Juke_Command(&amp;quot;JUKE_FEATURE_PARTY_LOCK&amp;quot;, TRUE or FALSE)'''&lt;br /&gt;
Party Lock feature is enabled (TRUE) or disabled (FALSE)&lt;br /&gt;
&lt;br /&gt;
'''Juke_Command(&amp;quot;JUKE_FEATURE_RANDOM_MODE&amp;quot;, TRUE or FALSE)'''&lt;br /&gt;
Radio or Random mode is enabled(TRUE) or disabled(FALSE)&lt;br /&gt;
&lt;br /&gt;
'''Juke_Command(&amp;quot;JUKE_FEATURE_SCREENSAVER_MODE&amp;quot;, TRUE or FALSE)'''&lt;br /&gt;
&lt;br /&gt;
TRUE: screensaver is started&lt;br /&gt;
FALSE: screensaver is ended&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* [[Software]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Index]]&lt;br /&gt;
[[Category:Software]]&lt;/div&gt;</summary>
		<author><name>Barcrest</name></author>
		
	</entry>
	<entry>
		<id>http://oldwiki.arcadecontrols.com/index.php?title=Jukebox_Software&amp;diff=8278</id>
		<title>Jukebox Software</title>
		<link rel="alternate" type="text/html" href="http://oldwiki.arcadecontrols.com/index.php?title=Jukebox_Software&amp;diff=8278"/>
		<updated>2007-03-21T12:00:40Z</updated>

		<summary type="html">&lt;p&gt;Barcrest: /* List of jukebox software */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Jukebox software''' is designed to allow your PC to act and appear as a jukebox. Much like [[emulators|game emulators]], there is a GUI to enhance this effect. Jukeboxes often require you to [[CD Ripping|rip your music]] from CD's to your PC. &lt;br /&gt;
&lt;br /&gt;
Software is available for several different operating systems and may or may not be freeware.  Often, if the software is freeware, a donation link is present on the homepage of the software to allow you to show your appreciation for the developer's efforts in creating software that frequently rivals and/or bests commercial software!&lt;br /&gt;
&lt;br /&gt;
Jukebox software may also be &amp;quot;skinnable&amp;quot;, meaning the appearance of the software may be changed by the end-user based on their preferences.  This may take the form of preset skins within the software, or the ability to develop and share skins with other end-users.&lt;br /&gt;
&lt;br /&gt;
Lastly, touchscreens may be utilized if the software supports it, and can be used to eliminate the need for buttons or a keyboard/mouse combination altogether.&lt;br /&gt;
&lt;br /&gt;
==List of jukebox software==&lt;br /&gt;
Below is the jukebox software comparison table for '''Windows''' only. SilverJuke now exists to Mac, and Doscab is for DOS.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;'''''Please be aware that this may be incomplete! The individual pages will have the software's homepage for you to verify any information or questions you may have!'''''&lt;br /&gt;
&lt;br /&gt;
{| Width=&amp;quot;100%&amp;quot; valign=&amp;quot;top&amp;quot; border=&amp;quot;1&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background:white; color:black; border:1px solid silver;&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background:navy; color:white&amp;quot;&lt;br /&gt;
|'''Software'''&lt;br /&gt;
|'''Format&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''BYOAC&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''OS'''&lt;br /&gt;
|'''License&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''Skin&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''Monitor'''&lt;br /&gt;
|'''Media&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''Resolutions&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''Controls&amp;lt;sup&amp;gt;7&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[AlbumPlayer]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]] &lt;br /&gt;
| Shareware&lt;br /&gt;
| Standard&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor vertical icon.gif]]&lt;br /&gt;
| BASS&amp;lt;sup&amp;gt;b&amp;lt;/sup&amp;gt;&lt;br /&gt;
| 800x480+&lt;br /&gt;
| Touchscreen Mouse &lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Arcade Jukebox]]&lt;br /&gt;
| Singles&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]] &lt;br /&gt;
| Freeware&lt;br /&gt;
| Basic&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3&lt;br /&gt;
| 400x300 640x480 800x600&lt;br /&gt;
| Keyboard Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Arcade Music Box]]&lt;br /&gt;
| List&lt;br /&gt;
| Space Fractal&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Full&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor vertical icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| BASS&amp;lt;sup&amp;gt;b&amp;lt;/sup&amp;gt; cda cdg url radio video &lt;br /&gt;
| 320x240 400x300 640x480 ''ANY''&lt;br /&gt;
| Keyboard Joystick Spinner&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[BoxEasy]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Shareware&lt;br /&gt;
| Basic&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3 ogg wma m4a&lt;br /&gt;
| 1024x768 1280x1024&lt;br /&gt;
| Keyboard Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[DAM Jukebox]]&lt;br /&gt;
| Singles&lt;br /&gt;
| DamSoft&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Basic&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3&lt;br /&gt;
| 1024x768&lt;br /&gt;
| Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Freebox]]&lt;br /&gt;
| Album&lt;br /&gt;
| Barcrest&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Full&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| mp3 M4a wma cdg video&lt;br /&gt;
| 800x600 1024x768 ''Any'' &lt;br /&gt;
| Touchscreen Mouse Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Jukebox Simulator]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Shareware&lt;br /&gt;
| Basic&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3&lt;br /&gt;
| 1024x768&lt;br /&gt;
| Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Nordbeat's Jukebox]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Shareware&lt;br /&gt;
| Standard&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor vertical icon.gif]]&lt;br /&gt;
| WMP AMP&lt;br /&gt;
| 800x600 1024x768&lt;br /&gt;
| Touchscreen Keyboard Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[PartyTime Jukebox]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Basic&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| AMP&lt;br /&gt;
| 800x600 1024x768&lt;br /&gt;
| Touchscreen Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Silverjuke]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]][[Image:OS MAC icon.gif]]&lt;br /&gt;
| Commercial&lt;br /&gt;
| Advanced&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| AMP&lt;br /&gt;
| 640x480+&lt;br /&gt;
| Touchscreen Mouse Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[SK Jukebox]]&lt;br /&gt;
| Album&lt;br /&gt;
| SalmonKing&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Basic&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3 ogg wav wma aiff flac aac mp4 (sound only) ac3 alac video&lt;br /&gt;
| 800x600+&lt;br /&gt;
| Touchscreen Mouse Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[The JukeBox'er]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Shareware&lt;br /&gt;
| Advanced&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| BASS&amp;lt;sup&amp;gt;b&amp;lt;/sup&amp;gt; cdg radio video&lt;br /&gt;
| 800x600+&lt;br /&gt;
| Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[The PC Jukebox]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Commercial&lt;br /&gt;
| Standard&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3 wma wav video&lt;br /&gt;
| 1024x768&lt;br /&gt;
| Touchscreen Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Touchtone]]&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Shareware&lt;br /&gt;
| Basic&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| AMP video&lt;br /&gt;
| 1024x768&lt;br /&gt;
| Touchscreen Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[UncleT's Jukebox]]&lt;br /&gt;
| Album&lt;br /&gt;
| UncleT&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Basic&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| WMP video&lt;br /&gt;
| 1024x768+&lt;br /&gt;
| Mouse Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Virtual Music Jukebox]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Commercial&lt;br /&gt;
| Standard&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| mp3 wma wmv&lt;br /&gt;
| 800x600 1024x768&lt;br /&gt;
| Touchscreen Mouse Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Wincab/Doscab]]&lt;br /&gt;
| Both&lt;br /&gt;
| Chris&lt;br /&gt;
| [[Image:OS windows icon.gif]][[Image:OS DOS icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Full&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor vertical icon.gif]]&lt;br /&gt;
| mp3 ogg mid&lt;br /&gt;
| Any&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;&lt;br /&gt;
| Touchscreen Mouse Keyboard Joystick&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Title Track]] [http://www.titletrack.com/ (Homepage)]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS MAC icon.gif]]&lt;br /&gt;
| Commercial&lt;br /&gt;
| None&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| MP3, WAV, AIFF and SD2.&lt;br /&gt;
| UNKNOWN&lt;br /&gt;
| Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[MP3 Susi]] [http://www.macmusic.org/software/version.php/lang/en/id/3238/ (Homepage)]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS MAC icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| None&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| MP3, AAC.&lt;br /&gt;
| UNKNOWN&lt;br /&gt;
| Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[YoDJ]] [http://www.yodjnet.com/yodj.shtml (Homepage)]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS linux icon.gif]] [[Image:OS MAC icon.gif]] [[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| CCS Files&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| MP3, AAC.&lt;br /&gt;
| UNKNOWN&lt;br /&gt;
| Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[GlobeCOM Jukebox]] [http://gjukebox.sourceforge.net/ (Homepage)]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS linux icon.gif]] [[Image:OS MAC icon.gif]] [[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| ADVANCED&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| MP3, AAC.&lt;br /&gt;
| UNKNOWN&lt;br /&gt;
| Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Python Jukebox]] [http://sourceforge.net/projects/pytsjb (Homepage)]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS linux icon.gif]] [[Image:OS MAC icon.gif]] [[Image:OS windows icon.gif]]&lt;br /&gt;
| Open Source&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| MP3, AAC.&lt;br /&gt;
| UNKNOWN&lt;br /&gt;
| Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Tunez]] [http://tunez.sourceforge.net/ (Homepage)]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS linux icon.gif]] [[Image:OS MAC icon.gif]] [[Image:OS windows icon.gif]]&lt;br /&gt;
| Open Source&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| MP3, OGG.&lt;br /&gt;
| UNKNOWN&lt;br /&gt;
| Mouse&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''1) Format Orientation:'''&lt;br /&gt;
&lt;br /&gt;
With type of format do the software use. This tell it Singles or album based (or both). There are some exceptions:&lt;br /&gt;
&lt;br /&gt;
* Arcade Music Box use a list based screme like Mamewah, but it support both Singles and Albums formats.&lt;br /&gt;
* Wincab/Doscab acts best as a singles-based jukebox (it is very popular), but it also supports album as well.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''2) Byoac Member?'''&lt;br /&gt;
&lt;br /&gt;
If this software is registered and supported by a BYOAC member, the name is showed here.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''3) License:'''&lt;br /&gt;
* ''Freeware:'' is fully functional without payment.  A nag screen or ads are not considered a loss of functionality. &lt;br /&gt;
* ''Shareware:'' has limited functionality until payment is made. &lt;br /&gt;
* ''Commercial:'' software is fully functional for a limited time, after which payment must be made.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''4) About skinning:''' &lt;br /&gt;
&lt;br /&gt;
How can the software being skinned and changed?&lt;br /&gt;
&lt;br /&gt;
{| Width=&amp;quot;550&amp;quot; valign=&amp;quot;top&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background:white; color:black; border:1px solid silver;&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background:#333333; color:white&amp;quot;&lt;br /&gt;
|'''Grade'''&lt;br /&gt;
|'''Fonts'''&lt;br /&gt;
|'''Background'''&lt;br /&gt;
|'''Elements'''&lt;br /&gt;
|'''Resizeable'''&lt;br /&gt;
|'''Moveable'''&lt;br /&gt;
|'''Resolutions'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|'''Font Only'''&lt;br /&gt;
|Yes&lt;br /&gt;
|Fixed&lt;br /&gt;
|Fixed&lt;br /&gt;
|Fixed&lt;br /&gt;
|Fixed&lt;br /&gt;
|Fixed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|'''Basic'''&lt;br /&gt;
|Maybe&lt;br /&gt;
|Yes&lt;br /&gt;
|Fixed&lt;br /&gt;
|Fixed&lt;br /&gt;
|Fixed&lt;br /&gt;
|Fixed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|'''Standard'''&lt;br /&gt;
|Yes&lt;br /&gt;
|Yes&lt;br /&gt;
|Some&lt;br /&gt;
|Some&lt;br /&gt;
|Fixed&lt;br /&gt;
|Fixed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|'''Advanced'''&lt;br /&gt;
|Yes&lt;br /&gt;
|Yes&lt;br /&gt;
|All&lt;br /&gt;
|Some&lt;br /&gt;
|Some&lt;br /&gt;
|Fixed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|'''Full'''&lt;br /&gt;
|Yes&lt;br /&gt;
|Yes&lt;br /&gt;
|All&lt;br /&gt;
|All&lt;br /&gt;
|Most&lt;br /&gt;
|Any&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
'''Note:'''&lt;br /&gt;
* '''Basic:''' Only the background may been changed or colored in some software, but not the font.&lt;br /&gt;
* '''Standard:''' A software may only support one &amp;quot;Some&amp;quot;, not the both.&lt;br /&gt;
* '''Advanced:''' A software may only support one &amp;quot;Some&amp;quot;, not the both.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''5) Media:'''&lt;br /&gt;
* If WMP ([http://www.microsoft.com/windows/windowsmedia/default.mspx Windows Media Player]) or AMP ([http://www.winamp.com Winamp]) are listed, that jukebox software is simply a frontend for those programs and handle all formats and codecs WMP/AMP support.  WMP/AMP are '''REQUIRED''' for the jukebox software to operate.&lt;br /&gt;
* If video and/or image is listed, the individual page will list all video or image file types supported.&lt;br /&gt;
* Some software may support MP3+G (a karaoke system), wich is stated as cdg (but they may need to being ripped from the cd).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''B) Bass:''' &lt;br /&gt;
*An external engine, [http://www.un4seen.com Bass] supports a variety of extensions and is included with the software. Check  the Bass website for a full listing of supported media types.&lt;br /&gt;
*&amp;quot;The JukeBox'er&amp;quot; uses Bass engine, but it is currently locked to wma, mp3, ogg, wav and cda extensions.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''6) Resoulutions:''' &lt;br /&gt;
* If a software have a + after the resoulutions, this main it use a autoscaling screme. You can show it on a higher monitor, but the skin may just rescaled.&lt;br /&gt;
* If a software stated with any, this mean any resolution is supported by a added skin.&lt;br /&gt;
* Wincab/Doscab autoscales all skins to all resolutions and orientations; skins designed specifically for very low resolutions (320x240) are included.&lt;br /&gt;
* Other software may look best at the stated resolution(s), even if it supports any resolution with a new skin.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''7) Controls:''' &lt;br /&gt;
* Wincab/Doscab only supports touchscreens in DOS and Windows XP.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* [[Software]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Index]]&lt;br /&gt;
[[Category:Software]]&lt;/div&gt;</summary>
		<author><name>Barcrest</name></author>
		
	</entry>
	<entry>
		<id>http://oldwiki.arcadecontrols.com/index.php?title=Jukebox_Software&amp;diff=8277</id>
		<title>Jukebox Software</title>
		<link rel="alternate" type="text/html" href="http://oldwiki.arcadecontrols.com/index.php?title=Jukebox_Software&amp;diff=8277"/>
		<updated>2007-03-21T11:59:29Z</updated>

		<summary type="html">&lt;p&gt;Barcrest: /* List of jukebox software */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Jukebox software''' is designed to allow your PC to act and appear as a jukebox. Much like [[emulators|game emulators]], there is a GUI to enhance this effect. Jukeboxes often require you to [[CD Ripping|rip your music]] from CD's to your PC. &lt;br /&gt;
&lt;br /&gt;
Software is available for several different operating systems and may or may not be freeware.  Often, if the software is freeware, a donation link is present on the homepage of the software to allow you to show your appreciation for the developer's efforts in creating software that frequently rivals and/or bests commercial software!&lt;br /&gt;
&lt;br /&gt;
Jukebox software may also be &amp;quot;skinnable&amp;quot;, meaning the appearance of the software may be changed by the end-user based on their preferences.  This may take the form of preset skins within the software, or the ability to develop and share skins with other end-users.&lt;br /&gt;
&lt;br /&gt;
Lastly, touchscreens may be utilized if the software supports it, and can be used to eliminate the need for buttons or a keyboard/mouse combination altogether.&lt;br /&gt;
&lt;br /&gt;
==List of jukebox software==&lt;br /&gt;
Below is the jukebox software comparison table for '''Windows''' only. SilverJuke now exists to Mac, and Doscab is for DOS.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;'''''Please be aware that this may be incomplete! The individual pages will have the software's homepage for you to verify any information or questions you may have!'''''&lt;br /&gt;
&lt;br /&gt;
{| Width=&amp;quot;100%&amp;quot; valign=&amp;quot;top&amp;quot; border=&amp;quot;1&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background:white; color:black; border:1px solid silver;&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background:navy; color:white&amp;quot;&lt;br /&gt;
|'''Software'''&lt;br /&gt;
|'''Format&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''BYOAC&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''OS'''&lt;br /&gt;
|'''License&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''Skin&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''Monitor'''&lt;br /&gt;
|'''Media&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''Resolutions&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''Controls&amp;lt;sup&amp;gt;7&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[AlbumPlayer]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]] &lt;br /&gt;
| Shareware&lt;br /&gt;
| Standard&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor vertical icon.gif]]&lt;br /&gt;
| BASS&amp;lt;sup&amp;gt;b&amp;lt;/sup&amp;gt;&lt;br /&gt;
| 800x480+&lt;br /&gt;
| Touchscreen Mouse &lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Arcade Jukebox]]&lt;br /&gt;
| Singles&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]] &lt;br /&gt;
| Freeware&lt;br /&gt;
| Basic&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3&lt;br /&gt;
| 400x300 640x480 800x600&lt;br /&gt;
| Keyboard Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Arcade Music Box]]&lt;br /&gt;
| List&lt;br /&gt;
| Space Fractal&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Full&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor vertical icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| BASS&amp;lt;sup&amp;gt;b&amp;lt;/sup&amp;gt; cda cdg url radio video &lt;br /&gt;
| 320x240 400x300 640x480 ''ANY''&lt;br /&gt;
| Keyboard Joystick Spinner&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[BoxEasy]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Shareware&lt;br /&gt;
| Basic&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3 ogg wma m4a&lt;br /&gt;
| 1024x768 1280x1024&lt;br /&gt;
| Keyboard Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[DAM Jukebox]]&lt;br /&gt;
| Singles&lt;br /&gt;
| DamSoft&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Basic&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3&lt;br /&gt;
| 1024x768&lt;br /&gt;
| Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Freebox]]&lt;br /&gt;
| Album&lt;br /&gt;
| Barcrest&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Full&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| mp3 M4a wma cdg video&lt;br /&gt;
| 800x600 1024x768 ''Any'' &lt;br /&gt;
| Touchscreen Mouse Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Jukebox Simulator]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Shareware&lt;br /&gt;
| Basic&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3&lt;br /&gt;
| 1024x768&lt;br /&gt;
| Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Nordbeat's Jukebox]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Shareware&lt;br /&gt;
| Standard&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor vertical icon.gif]]&lt;br /&gt;
| WMP AMP&lt;br /&gt;
| 800x600 1024x768&lt;br /&gt;
| Touchscreen Keyboard Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[PartyTime Jukebox]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Basic&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| AMP&lt;br /&gt;
| 800x600 1024x768&lt;br /&gt;
| Touchscreen Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Silverjuke]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]][[Image:OS MAC icon.gif]]&lt;br /&gt;
| Commercial&lt;br /&gt;
| Advanced&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| AMP&lt;br /&gt;
| 640x480+&lt;br /&gt;
| Touchscreen Mouse Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[SK Jukebox]]&lt;br /&gt;
| Album&lt;br /&gt;
| SalmonKing&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Basic&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3 ogg wav wma aiff flac aac mp4 (sound only) ac3 alac video&lt;br /&gt;
| 800x600+&lt;br /&gt;
| Touchscreen Mouse Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[The JukeBox'er]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Shareware&lt;br /&gt;
| Advanced&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| BASS&amp;lt;sup&amp;gt;b&amp;lt;/sup&amp;gt; cdg radio video&lt;br /&gt;
| 800x600+&lt;br /&gt;
| Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[The PC Jukebox]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Commercial&lt;br /&gt;
| Standard&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3 wma wav video&lt;br /&gt;
| 1024x768&lt;br /&gt;
| Touchscreen Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Touchtone]]&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Shareware&lt;br /&gt;
| Basic&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| AMP video&lt;br /&gt;
| 1024x768&lt;br /&gt;
| Touchscreen Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[UncleT's Jukebox]]&lt;br /&gt;
| Album&lt;br /&gt;
| UncleT&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Basic&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| WMP video&lt;br /&gt;
| 1024x768+&lt;br /&gt;
| Mouse Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Virtual Music Jukebox]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Commercial&lt;br /&gt;
| Standard&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| mp3 wma wmv&lt;br /&gt;
| 800x600 1024x768&lt;br /&gt;
| Touchscreen Mouse Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Wincab/Doscab]]&lt;br /&gt;
| Both&lt;br /&gt;
| Chris&lt;br /&gt;
| [[Image:OS windows icon.gif]][[Image:OS DOS icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Full&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor vertical icon.gif]]&lt;br /&gt;
| mp3 ogg mid&lt;br /&gt;
| Any&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;&lt;br /&gt;
| Touchscreen Mouse Keyboard Joystick&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Title Track]] [http://www.titletrack.com/ (Homepage)]&lt;br /&gt;
| Album&lt;br /&gt;
| &lt;br /&gt;
| [[Image:OS MAC icon.gif]]&lt;br /&gt;
| Commercial&lt;br /&gt;
| None&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| MP3, WAV, AIFF and SD2.&lt;br /&gt;
| UNKNOWN&lt;br /&gt;
| Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[MP3 Susi]] [http://www.macmusic.org/software/version.php/lang/en/id/3238/ (Homepage)]&lt;br /&gt;
| Album&lt;br /&gt;
| &lt;br /&gt;
| [[Image:OS MAC icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| None&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| MP3, AAC.&lt;br /&gt;
| UNKNOWN&lt;br /&gt;
| Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[YoDJ]] [http://www.yodjnet.com/yodj.shtml (Homepage)]&lt;br /&gt;
| Album&lt;br /&gt;
| &lt;br /&gt;
| [[Image:OS linux icon.gif]] [[Image:OS MAC icon.gif]] [[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| CCS Files&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| MP3, AAC.&lt;br /&gt;
| UNKNOWN&lt;br /&gt;
| Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[GlobeCOM Jukebox]] [http://gjukebox.sourceforge.net/ (Homepage)]&lt;br /&gt;
| Album&lt;br /&gt;
| &lt;br /&gt;
| [[Image:OS linux icon.gif]] [[Image:OS MAC icon.gif]] [[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| ADVANCED&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| MP3, AAC.&lt;br /&gt;
| UNKNOWN&lt;br /&gt;
| Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Python Jukebox]] [http://sourceforge.net/projects/pytsjb (Homepage)]&lt;br /&gt;
| Album&lt;br /&gt;
| &lt;br /&gt;
| [[Image:OS linux icon.gif]] [[Image:OS MAC icon.gif]] [[Image:OS windows icon.gif]]&lt;br /&gt;
| Open Source&lt;br /&gt;
| &lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| MP3, AAC.&lt;br /&gt;
| UNKNOWN&lt;br /&gt;
| Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Tunez]] [http://tunez.sourceforge.net/ (Homepage)]&lt;br /&gt;
| Album&lt;br /&gt;
| &lt;br /&gt;
| [[Image:OS linux icon.gif]] [[Image:OS MAC icon.gif]] [[Image:OS windows icon.gif]]&lt;br /&gt;
| Open Source&lt;br /&gt;
| &lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| MP3, OGG.&lt;br /&gt;
| UNKNOWN&lt;br /&gt;
| Mouse&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''1) Format Orientation:'''&lt;br /&gt;
&lt;br /&gt;
With type of format do the software use. This tell it Singles or album based (or both). There are some exceptions:&lt;br /&gt;
&lt;br /&gt;
* Arcade Music Box use a list based screme like Mamewah, but it support both Singles and Albums formats.&lt;br /&gt;
* Wincab/Doscab acts best as a singles-based jukebox (it is very popular), but it also supports album as well.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''2) Byoac Member?'''&lt;br /&gt;
&lt;br /&gt;
If this software is registered and supported by a BYOAC member, the name is showed here.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''3) License:'''&lt;br /&gt;
* ''Freeware:'' is fully functional without payment.  A nag screen or ads are not considered a loss of functionality. &lt;br /&gt;
* ''Shareware:'' has limited functionality until payment is made. &lt;br /&gt;
* ''Commercial:'' software is fully functional for a limited time, after which payment must be made.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''4) About skinning:''' &lt;br /&gt;
&lt;br /&gt;
How can the software being skinned and changed?&lt;br /&gt;
&lt;br /&gt;
{| Width=&amp;quot;550&amp;quot; valign=&amp;quot;top&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background:white; color:black; border:1px solid silver;&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background:#333333; color:white&amp;quot;&lt;br /&gt;
|'''Grade'''&lt;br /&gt;
|'''Fonts'''&lt;br /&gt;
|'''Background'''&lt;br /&gt;
|'''Elements'''&lt;br /&gt;
|'''Resizeable'''&lt;br /&gt;
|'''Moveable'''&lt;br /&gt;
|'''Resolutions'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|'''Font Only'''&lt;br /&gt;
|Yes&lt;br /&gt;
|Fixed&lt;br /&gt;
|Fixed&lt;br /&gt;
|Fixed&lt;br /&gt;
|Fixed&lt;br /&gt;
|Fixed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|'''Basic'''&lt;br /&gt;
|Maybe&lt;br /&gt;
|Yes&lt;br /&gt;
|Fixed&lt;br /&gt;
|Fixed&lt;br /&gt;
|Fixed&lt;br /&gt;
|Fixed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|'''Standard'''&lt;br /&gt;
|Yes&lt;br /&gt;
|Yes&lt;br /&gt;
|Some&lt;br /&gt;
|Some&lt;br /&gt;
|Fixed&lt;br /&gt;
|Fixed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|'''Advanced'''&lt;br /&gt;
|Yes&lt;br /&gt;
|Yes&lt;br /&gt;
|All&lt;br /&gt;
|Some&lt;br /&gt;
|Some&lt;br /&gt;
|Fixed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|'''Full'''&lt;br /&gt;
|Yes&lt;br /&gt;
|Yes&lt;br /&gt;
|All&lt;br /&gt;
|All&lt;br /&gt;
|Most&lt;br /&gt;
|Any&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
'''Note:'''&lt;br /&gt;
* '''Basic:''' Only the background may been changed or colored in some software, but not the font.&lt;br /&gt;
* '''Standard:''' A software may only support one &amp;quot;Some&amp;quot;, not the both.&lt;br /&gt;
* '''Advanced:''' A software may only support one &amp;quot;Some&amp;quot;, not the both.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''5) Media:'''&lt;br /&gt;
* If WMP ([http://www.microsoft.com/windows/windowsmedia/default.mspx Windows Media Player]) or AMP ([http://www.winamp.com Winamp]) are listed, that jukebox software is simply a frontend for those programs and handle all formats and codecs WMP/AMP support.  WMP/AMP are '''REQUIRED''' for the jukebox software to operate.&lt;br /&gt;
* If video and/or image is listed, the individual page will list all video or image file types supported.&lt;br /&gt;
* Some software may support MP3+G (a karaoke system), wich is stated as cdg (but they may need to being ripped from the cd).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''B) Bass:''' &lt;br /&gt;
*An external engine, [http://www.un4seen.com Bass] supports a variety of extensions and is included with the software. Check  the Bass website for a full listing of supported media types.&lt;br /&gt;
*&amp;quot;The JukeBox'er&amp;quot; uses Bass engine, but it is currently locked to wma, mp3, ogg, wav and cda extensions.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''6) Resoulutions:''' &lt;br /&gt;
* If a software have a + after the resoulutions, this main it use a autoscaling screme. You can show it on a higher monitor, but the skin may just rescaled.&lt;br /&gt;
* If a software stated with any, this mean any resolution is supported by a added skin.&lt;br /&gt;
* Wincab/Doscab autoscales all skins to all resolutions and orientations; skins designed specifically for very low resolutions (320x240) are included.&lt;br /&gt;
* Other software may look best at the stated resolution(s), even if it supports any resolution with a new skin.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''7) Controls:''' &lt;br /&gt;
* Wincab/Doscab only supports touchscreens in DOS and Windows XP.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* [[Software]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Index]]&lt;br /&gt;
[[Category:Software]]&lt;/div&gt;</summary>
		<author><name>Barcrest</name></author>
		
	</entry>
	<entry>
		<id>http://oldwiki.arcadecontrols.com/index.php?title=Jukebox_Software&amp;diff=8276</id>
		<title>Jukebox Software</title>
		<link rel="alternate" type="text/html" href="http://oldwiki.arcadecontrols.com/index.php?title=Jukebox_Software&amp;diff=8276"/>
		<updated>2007-03-21T11:51:40Z</updated>

		<summary type="html">&lt;p&gt;Barcrest: /* List of jukebox software */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Jukebox software''' is designed to allow your PC to act and appear as a jukebox. Much like [[emulators|game emulators]], there is a GUI to enhance this effect. Jukeboxes often require you to [[CD Ripping|rip your music]] from CD's to your PC. &lt;br /&gt;
&lt;br /&gt;
Software is available for several different operating systems and may or may not be freeware.  Often, if the software is freeware, a donation link is present on the homepage of the software to allow you to show your appreciation for the developer's efforts in creating software that frequently rivals and/or bests commercial software!&lt;br /&gt;
&lt;br /&gt;
Jukebox software may also be &amp;quot;skinnable&amp;quot;, meaning the appearance of the software may be changed by the end-user based on their preferences.  This may take the form of preset skins within the software, or the ability to develop and share skins with other end-users.&lt;br /&gt;
&lt;br /&gt;
Lastly, touchscreens may be utilized if the software supports it, and can be used to eliminate the need for buttons or a keyboard/mouse combination altogether.&lt;br /&gt;
&lt;br /&gt;
==List of jukebox software==&lt;br /&gt;
Below is the jukebox software comparison table for '''Windows''' only. SilverJuke now exists to Mac, and Doscab is for DOS.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;'''''Please be aware that this may be incomplete! The individual pages will have the software's homepage for you to verify any information or questions you may have!'''''&lt;br /&gt;
&lt;br /&gt;
{| Width=&amp;quot;100%&amp;quot; valign=&amp;quot;top&amp;quot; border=&amp;quot;1&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background:white; color:black; border:1px solid silver;&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background:navy; color:white&amp;quot;&lt;br /&gt;
|'''Software'''&lt;br /&gt;
|'''Format&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''BYOAC&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''OS'''&lt;br /&gt;
|'''License&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''Skin&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''Monitor'''&lt;br /&gt;
|'''Media&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''Resolutions&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''Controls&amp;lt;sup&amp;gt;7&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[AlbumPlayer]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]] &lt;br /&gt;
| Shareware&lt;br /&gt;
| Standard&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor vertical icon.gif]]&lt;br /&gt;
| BASS&amp;lt;sup&amp;gt;b&amp;lt;/sup&amp;gt;&lt;br /&gt;
| 800x480+&lt;br /&gt;
| Touchscreen Mouse &lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Arcade Jukebox]]&lt;br /&gt;
| Singles&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]] &lt;br /&gt;
| Freeware&lt;br /&gt;
| Basic&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3&lt;br /&gt;
| 400x300 640x480 800x600&lt;br /&gt;
| Keyboard Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Arcade Music Box]]&lt;br /&gt;
| List&lt;br /&gt;
| Space Fractal&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Full&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor vertical icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| BASS&amp;lt;sup&amp;gt;b&amp;lt;/sup&amp;gt; cda cdg url radio video &lt;br /&gt;
| 320x240 400x300 640x480 ''ANY''&lt;br /&gt;
| Keyboard Joystick Spinner&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[BoxEasy]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Shareware&lt;br /&gt;
| Basic&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3 ogg wma m4a&lt;br /&gt;
| 1024x768 1280x1024&lt;br /&gt;
| Keyboard Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[DAM Jukebox]]&lt;br /&gt;
| Singles&lt;br /&gt;
| DamSoft&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Basic&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3&lt;br /&gt;
| 1024x768&lt;br /&gt;
| Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Freebox]]&lt;br /&gt;
| Album&lt;br /&gt;
| Barcrest&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Full&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| mp3 M4a wma cdg video&lt;br /&gt;
| 800x600 1024x768 ''Any'' &lt;br /&gt;
| Touchscreen Mouse Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Jukebox Simulator]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Shareware&lt;br /&gt;
| Basic&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3&lt;br /&gt;
| 1024x768&lt;br /&gt;
| Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Nordbeat's Jukebox]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Shareware&lt;br /&gt;
| Standard&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor vertical icon.gif]]&lt;br /&gt;
| WMP AMP&lt;br /&gt;
| 800x600 1024x768&lt;br /&gt;
| Touchscreen Keyboard Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[PartyTime Jukebox]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Basic&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| AMP&lt;br /&gt;
| 800x600 1024x768&lt;br /&gt;
| Touchscreen Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Silverjuke]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]][[Image:OS MAC icon.gif]]&lt;br /&gt;
| Commercial&lt;br /&gt;
| Advanced&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| AMP&lt;br /&gt;
| 640x480+&lt;br /&gt;
| Touchscreen Mouse Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[SK Jukebox]]&lt;br /&gt;
| Album&lt;br /&gt;
| SalmonKing&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Basic&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3 ogg wav wma aiff flac aac mp4 (sound only) ac3 alac video&lt;br /&gt;
| 800x600+&lt;br /&gt;
| Touchscreen Mouse Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[The JukeBox'er]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Shareware&lt;br /&gt;
| Advanced&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| BASS&amp;lt;sup&amp;gt;b&amp;lt;/sup&amp;gt; cdg radio video&lt;br /&gt;
| 800x600+&lt;br /&gt;
| Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[The PC Jukebox]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Commercial&lt;br /&gt;
| Standard&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3 wma wav video&lt;br /&gt;
| 1024x768&lt;br /&gt;
| Touchscreen Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Touchtone]]&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Shareware&lt;br /&gt;
| Basic&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| AMP video&lt;br /&gt;
| 1024x768&lt;br /&gt;
| Touchscreen Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[UncleT's Jukebox]]&lt;br /&gt;
| Album&lt;br /&gt;
| UncleT&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Basic&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| WMP video&lt;br /&gt;
| 1024x768+&lt;br /&gt;
| Mouse Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Virtual Music Jukebox]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Commercial&lt;br /&gt;
| Standard&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| mp3 wma wmv&lt;br /&gt;
| 800x600 1024x768&lt;br /&gt;
| Touchscreen Mouse Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Wincab/Doscab]]&lt;br /&gt;
| Both&lt;br /&gt;
| Chris&lt;br /&gt;
| [[Image:OS windows icon.gif]][[Image:OS DOS icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Full&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor vertical icon.gif]]&lt;br /&gt;
| mp3 ogg mid&lt;br /&gt;
| Any&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;&lt;br /&gt;
| Touchscreen Mouse Keyboard Joystick&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Title Track]] http://www.titletrack.com/&lt;br /&gt;
| Album&lt;br /&gt;
| &lt;br /&gt;
| [[Image:OS MAC icon.gif]]&lt;br /&gt;
| Commercial&lt;br /&gt;
| None&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| MP3, WAV, AIFF and SD2.&lt;br /&gt;
| UNKNOWN&lt;br /&gt;
| Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[MP3 Susi]] http://www.macmusic.org/software/version.php/lang/en/id/3238/&lt;br /&gt;
| Album&lt;br /&gt;
| &lt;br /&gt;
| [[Image:OS MAC icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| None&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| MP3, AAC.&lt;br /&gt;
| UNKNOWN&lt;br /&gt;
| Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[YoDJ]] http://www.yodjnet.com/yodj.shtml&lt;br /&gt;
| Album&lt;br /&gt;
| &lt;br /&gt;
| [[Image:OS linux icon.gif]] [[Image:OS MAC icon.gif]] [[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| CCS Files&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| MP3, AAC.&lt;br /&gt;
| UNKNOWN&lt;br /&gt;
| Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[GlobeCOM Jukebox]] http://gjukebox.sourceforge.net/&lt;br /&gt;
| Album&lt;br /&gt;
| &lt;br /&gt;
| [[Image:OS linux icon.gif]] [[Image:OS MAC icon.gif]] [[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| ADVANCED&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| MP3, AAC.&lt;br /&gt;
| UNKNOWN&lt;br /&gt;
| Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Python Jukebox]] http://sourceforge.net/projects/pytsjb&lt;br /&gt;
| Album&lt;br /&gt;
| &lt;br /&gt;
| [[Image:OS linux icon.gif]] [[Image:OS MAC icon.gif]] [[Image:OS windows icon.gif]]&lt;br /&gt;
| Open Source&lt;br /&gt;
| &lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| MP3, AAC.&lt;br /&gt;
| UNKNOWN&lt;br /&gt;
| Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Tunez]] http://tunez.sourceforge.net/&lt;br /&gt;
| Album&lt;br /&gt;
| &lt;br /&gt;
| [[Image:OS linux icon.gif]] [[Image:OS MAC icon.gif]] [[Image:OS windows icon.gif]]&lt;br /&gt;
| Open Source&lt;br /&gt;
| &lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| MP3, OGG.&lt;br /&gt;
| UNKNOWN&lt;br /&gt;
| Mouse&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''1) Format Orientation:'''&lt;br /&gt;
&lt;br /&gt;
With type of format do the software use. This tell it Singles or album based (or both). There are some exceptions:&lt;br /&gt;
&lt;br /&gt;
* Arcade Music Box use a list based screme like Mamewah, but it support both Singles and Albums formats.&lt;br /&gt;
* Wincab/Doscab acts best as a singles-based jukebox (it is very popular), but it also supports album as well.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''2) Byoac Member?'''&lt;br /&gt;
&lt;br /&gt;
If this software is registered and supported by a BYOAC member, the name is showed here.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''3) License:'''&lt;br /&gt;
* ''Freeware:'' is fully functional without payment.  A nag screen or ads are not considered a loss of functionality. &lt;br /&gt;
* ''Shareware:'' has limited functionality until payment is made. &lt;br /&gt;
* ''Commercial:'' software is fully functional for a limited time, after which payment must be made.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''4) About skinning:''' &lt;br /&gt;
&lt;br /&gt;
How can the software being skinned and changed?&lt;br /&gt;
&lt;br /&gt;
{| Width=&amp;quot;550&amp;quot; valign=&amp;quot;top&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background:white; color:black; border:1px solid silver;&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background:#333333; color:white&amp;quot;&lt;br /&gt;
|'''Grade'''&lt;br /&gt;
|'''Fonts'''&lt;br /&gt;
|'''Background'''&lt;br /&gt;
|'''Elements'''&lt;br /&gt;
|'''Resizeable'''&lt;br /&gt;
|'''Moveable'''&lt;br /&gt;
|'''Resolutions'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|'''Font Only'''&lt;br /&gt;
|Yes&lt;br /&gt;
|Fixed&lt;br /&gt;
|Fixed&lt;br /&gt;
|Fixed&lt;br /&gt;
|Fixed&lt;br /&gt;
|Fixed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|'''Basic'''&lt;br /&gt;
|Maybe&lt;br /&gt;
|Yes&lt;br /&gt;
|Fixed&lt;br /&gt;
|Fixed&lt;br /&gt;
|Fixed&lt;br /&gt;
|Fixed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|'''Standard'''&lt;br /&gt;
|Yes&lt;br /&gt;
|Yes&lt;br /&gt;
|Some&lt;br /&gt;
|Some&lt;br /&gt;
|Fixed&lt;br /&gt;
|Fixed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|'''Advanced'''&lt;br /&gt;
|Yes&lt;br /&gt;
|Yes&lt;br /&gt;
|All&lt;br /&gt;
|Some&lt;br /&gt;
|Some&lt;br /&gt;
|Fixed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|'''Full'''&lt;br /&gt;
|Yes&lt;br /&gt;
|Yes&lt;br /&gt;
|All&lt;br /&gt;
|All&lt;br /&gt;
|Most&lt;br /&gt;
|Any&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
'''Note:'''&lt;br /&gt;
* '''Basic:''' Only the background may been changed or colored in some software, but not the font.&lt;br /&gt;
* '''Standard:''' A software may only support one &amp;quot;Some&amp;quot;, not the both.&lt;br /&gt;
* '''Advanced:''' A software may only support one &amp;quot;Some&amp;quot;, not the both.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''5) Media:'''&lt;br /&gt;
* If WMP ([http://www.microsoft.com/windows/windowsmedia/default.mspx Windows Media Player]) or AMP ([http://www.winamp.com Winamp]) are listed, that jukebox software is simply a frontend for those programs and handle all formats and codecs WMP/AMP support.  WMP/AMP are '''REQUIRED''' for the jukebox software to operate.&lt;br /&gt;
* If video and/or image is listed, the individual page will list all video or image file types supported.&lt;br /&gt;
* Some software may support MP3+G (a karaoke system), wich is stated as cdg (but they may need to being ripped from the cd).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''B) Bass:''' &lt;br /&gt;
*An external engine, [http://www.un4seen.com Bass] supports a variety of extensions and is included with the software. Check  the Bass website for a full listing of supported media types.&lt;br /&gt;
*&amp;quot;The JukeBox'er&amp;quot; uses Bass engine, but it is currently locked to wma, mp3, ogg, wav and cda extensions.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''6) Resoulutions:''' &lt;br /&gt;
* If a software have a + after the resoulutions, this main it use a autoscaling screme. You can show it on a higher monitor, but the skin may just rescaled.&lt;br /&gt;
* If a software stated with any, this mean any resolution is supported by a added skin.&lt;br /&gt;
* Wincab/Doscab autoscales all skins to all resolutions and orientations; skins designed specifically for very low resolutions (320x240) are included.&lt;br /&gt;
* Other software may look best at the stated resolution(s), even if it supports any resolution with a new skin.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''7) Controls:''' &lt;br /&gt;
* Wincab/Doscab only supports touchscreens in DOS and Windows XP.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* [[Software]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Index]]&lt;br /&gt;
[[Category:Software]]&lt;/div&gt;</summary>
		<author><name>Barcrest</name></author>
		
	</entry>
	<entry>
		<id>http://oldwiki.arcadecontrols.com/index.php?title=Jukebox_Software&amp;diff=8275</id>
		<title>Jukebox Software</title>
		<link rel="alternate" type="text/html" href="http://oldwiki.arcadecontrols.com/index.php?title=Jukebox_Software&amp;diff=8275"/>
		<updated>2007-03-21T11:50:14Z</updated>

		<summary type="html">&lt;p&gt;Barcrest: /* List of jukebox software */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Jukebox software''' is designed to allow your PC to act and appear as a jukebox. Much like [[emulators|game emulators]], there is a GUI to enhance this effect. Jukeboxes often require you to [[CD Ripping|rip your music]] from CD's to your PC. &lt;br /&gt;
&lt;br /&gt;
Software is available for several different operating systems and may or may not be freeware.  Often, if the software is freeware, a donation link is present on the homepage of the software to allow you to show your appreciation for the developer's efforts in creating software that frequently rivals and/or bests commercial software!&lt;br /&gt;
&lt;br /&gt;
Jukebox software may also be &amp;quot;skinnable&amp;quot;, meaning the appearance of the software may be changed by the end-user based on their preferences.  This may take the form of preset skins within the software, or the ability to develop and share skins with other end-users.&lt;br /&gt;
&lt;br /&gt;
Lastly, touchscreens may be utilized if the software supports it, and can be used to eliminate the need for buttons or a keyboard/mouse combination altogether.&lt;br /&gt;
&lt;br /&gt;
==List of jukebox software==&lt;br /&gt;
Below is the jukebox software comparison table for '''Windows''' only. SilverJuke now exists to Mac, and Doscab is for DOS.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;'''''Please be aware that this may be incomplete! The individual pages will have the software's homepage for you to verify any information or questions you may have!'''''&lt;br /&gt;
&lt;br /&gt;
{| Width=&amp;quot;100%&amp;quot; valign=&amp;quot;top&amp;quot; border=&amp;quot;1&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background:white; color:black; border:1px solid silver;&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background:navy; color:white&amp;quot;&lt;br /&gt;
|'''Software'''&lt;br /&gt;
|'''Format&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''BYOAC&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''OS'''&lt;br /&gt;
|'''License&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''Skin&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''Monitor'''&lt;br /&gt;
|'''Media&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''Resolutions&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''Controls&amp;lt;sup&amp;gt;7&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[AlbumPlayer]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]] &lt;br /&gt;
| Shareware&lt;br /&gt;
| Standard&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor vertical icon.gif]]&lt;br /&gt;
| BASS&amp;lt;sup&amp;gt;b&amp;lt;/sup&amp;gt;&lt;br /&gt;
| 800x480+&lt;br /&gt;
| Touchscreen Mouse &lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Arcade Jukebox]]&lt;br /&gt;
| Singles&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]] &lt;br /&gt;
| Freeware&lt;br /&gt;
| Basic&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3&lt;br /&gt;
| 400x300 640x480 800x600&lt;br /&gt;
| Keyboard Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Arcade Music Box]]&lt;br /&gt;
| List&lt;br /&gt;
| Space Fractal&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Full&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor vertical icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| BASS&amp;lt;sup&amp;gt;b&amp;lt;/sup&amp;gt; cda cdg url radio video &lt;br /&gt;
| 320x240 400x300 640x480 ''ANY''&lt;br /&gt;
| Keyboard Joystick Spinner&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[BoxEasy]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Shareware&lt;br /&gt;
| Basic&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3 ogg wma m4a&lt;br /&gt;
| 1024x768 1280x1024&lt;br /&gt;
| Keyboard Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[DAM Jukebox]]&lt;br /&gt;
| Singles&lt;br /&gt;
| DamSoft&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Basic&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3&lt;br /&gt;
| 1024x768&lt;br /&gt;
| Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Freebox]]&lt;br /&gt;
| Album&lt;br /&gt;
| Barcrest&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Full&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| mp3 M4a wma cdg video&lt;br /&gt;
| 800x600 1024x768 ''Any'' &lt;br /&gt;
| Touchscreen Mouse Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Jukebox Simulator]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Shareware&lt;br /&gt;
| Basic&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3&lt;br /&gt;
| 1024x768&lt;br /&gt;
| Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Nordbeat's Jukebox]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Shareware&lt;br /&gt;
| Standard&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor vertical icon.gif]]&lt;br /&gt;
| WMP AMP&lt;br /&gt;
| 800x600 1024x768&lt;br /&gt;
| Touchscreen Keyboard Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[PartyTime Jukebox]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Basic&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| AMP&lt;br /&gt;
| 800x600 1024x768&lt;br /&gt;
| Touchscreen Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Silverjuke]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]][[Image:OS MAC icon.gif]]&lt;br /&gt;
| Commercial&lt;br /&gt;
| Advanced&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| AMP&lt;br /&gt;
| 640x480+&lt;br /&gt;
| Touchscreen Mouse Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[SK Jukebox]]&lt;br /&gt;
| Album&lt;br /&gt;
| SalmonKing&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Basic&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3 ogg wav wma aiff flac aac mp4 (sound only) ac3 alac video&lt;br /&gt;
| 800x600+&lt;br /&gt;
| Touchscreen Mouse Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[The JukeBox'er]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Shareware&lt;br /&gt;
| Advanced&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| BASS&amp;lt;sup&amp;gt;b&amp;lt;/sup&amp;gt; cdg radio video&lt;br /&gt;
| 800x600+&lt;br /&gt;
| Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[The PC Jukebox]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Commercial&lt;br /&gt;
| Standard&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3 wma wav video&lt;br /&gt;
| 1024x768&lt;br /&gt;
| Touchscreen Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Touchtone]]&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Shareware&lt;br /&gt;
| Basic&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| AMP video&lt;br /&gt;
| 1024x768&lt;br /&gt;
| Touchscreen Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[UncleT's Jukebox]]&lt;br /&gt;
| Album&lt;br /&gt;
| UncleT&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Basic&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| WMP video&lt;br /&gt;
| 1024x768+&lt;br /&gt;
| Mouse Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Virtual Music Jukebox]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Commercial&lt;br /&gt;
| Standard&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| mp3 wma wmv&lt;br /&gt;
| 800x600 1024x768&lt;br /&gt;
| Touchscreen Mouse Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Wincab/Doscab]]&lt;br /&gt;
| Both&lt;br /&gt;
| Chris&lt;br /&gt;
| [[Image:OS windows icon.gif]][[Image:OS DOS icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Full&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor vertical icon.gif]]&lt;br /&gt;
| mp3 ogg mid&lt;br /&gt;
| Any&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;&lt;br /&gt;
| Touchscreen Mouse Keyboard Joystick&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Title Track]]&lt;br /&gt;
| Album&lt;br /&gt;
| &lt;br /&gt;
| [[Image:OS MAC icon.gif]]&lt;br /&gt;
| Commercial&lt;br /&gt;
| None&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| MP3, WAV, AIFF and SD2.&lt;br /&gt;
| UNKNOWN&lt;br /&gt;
| Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[MP3 Susi]] http://www.macmusic.org/software/version.php/lang/en/id/3238/&lt;br /&gt;
| Album&lt;br /&gt;
| &lt;br /&gt;
| [[Image:OS MAC icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| None&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| MP3, AAC.&lt;br /&gt;
| UNKNOWN&lt;br /&gt;
| Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[YoDJ]] http://www.yodjnet.com/yodj.shtml&lt;br /&gt;
| Album&lt;br /&gt;
| &lt;br /&gt;
| [[Image:OS linux icon.gif]] [[Image:OS MAC icon.gif]] [[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| CCS Files&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| MP3, AAC.&lt;br /&gt;
| UNKNOWN&lt;br /&gt;
| Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[GlobeCOM Jukebox]] http://gjukebox.sourceforge.net/&lt;br /&gt;
| Album&lt;br /&gt;
| &lt;br /&gt;
| [[Image:OS linux icon.gif]] [[Image:OS MAC icon.gif]] [[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| ADVANCED&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| MP3, AAC.&lt;br /&gt;
| UNKNOWN&lt;br /&gt;
| Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Python Jukebox]] http://sourceforge.net/projects/pytsjb&lt;br /&gt;
| Album&lt;br /&gt;
| &lt;br /&gt;
| [[Image:OS linux icon.gif]] [[Image:OS MAC icon.gif]] [[Image:OS windows icon.gif]]&lt;br /&gt;
| Open Source&lt;br /&gt;
| &lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| MP3, AAC.&lt;br /&gt;
| UNKNOWN&lt;br /&gt;
| Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Tunez]] http://tunez.sourceforge.net/&lt;br /&gt;
| Album&lt;br /&gt;
| &lt;br /&gt;
| [[Image:OS linux icon.gif]] [[Image:OS MAC icon.gif]] [[Image:OS windows icon.gif]]&lt;br /&gt;
| Open Source&lt;br /&gt;
| &lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| MP3, OGG.&lt;br /&gt;
| UNKNOWN&lt;br /&gt;
| Mouse&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''1) Format Orientation:'''&lt;br /&gt;
&lt;br /&gt;
With type of format do the software use. This tell it Singles or album based (or both). There are some exceptions:&lt;br /&gt;
&lt;br /&gt;
* Arcade Music Box use a list based screme like Mamewah, but it support both Singles and Albums formats.&lt;br /&gt;
* Wincab/Doscab acts best as a singles-based jukebox (it is very popular), but it also supports album as well.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''2) Byoac Member?'''&lt;br /&gt;
&lt;br /&gt;
If this software is registered and supported by a BYOAC member, the name is showed here.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''3) License:'''&lt;br /&gt;
* ''Freeware:'' is fully functional without payment.  A nag screen or ads are not considered a loss of functionality. &lt;br /&gt;
* ''Shareware:'' has limited functionality until payment is made. &lt;br /&gt;
* ''Commercial:'' software is fully functional for a limited time, after which payment must be made.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''4) About skinning:''' &lt;br /&gt;
&lt;br /&gt;
How can the software being skinned and changed?&lt;br /&gt;
&lt;br /&gt;
{| Width=&amp;quot;550&amp;quot; valign=&amp;quot;top&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background:white; color:black; border:1px solid silver;&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background:#333333; color:white&amp;quot;&lt;br /&gt;
|'''Grade'''&lt;br /&gt;
|'''Fonts'''&lt;br /&gt;
|'''Background'''&lt;br /&gt;
|'''Elements'''&lt;br /&gt;
|'''Resizeable'''&lt;br /&gt;
|'''Moveable'''&lt;br /&gt;
|'''Resolutions'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|'''Font Only'''&lt;br /&gt;
|Yes&lt;br /&gt;
|Fixed&lt;br /&gt;
|Fixed&lt;br /&gt;
|Fixed&lt;br /&gt;
|Fixed&lt;br /&gt;
|Fixed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|'''Basic'''&lt;br /&gt;
|Maybe&lt;br /&gt;
|Yes&lt;br /&gt;
|Fixed&lt;br /&gt;
|Fixed&lt;br /&gt;
|Fixed&lt;br /&gt;
|Fixed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|'''Standard'''&lt;br /&gt;
|Yes&lt;br /&gt;
|Yes&lt;br /&gt;
|Some&lt;br /&gt;
|Some&lt;br /&gt;
|Fixed&lt;br /&gt;
|Fixed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|'''Advanced'''&lt;br /&gt;
|Yes&lt;br /&gt;
|Yes&lt;br /&gt;
|All&lt;br /&gt;
|Some&lt;br /&gt;
|Some&lt;br /&gt;
|Fixed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|'''Full'''&lt;br /&gt;
|Yes&lt;br /&gt;
|Yes&lt;br /&gt;
|All&lt;br /&gt;
|All&lt;br /&gt;
|Most&lt;br /&gt;
|Any&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
'''Note:'''&lt;br /&gt;
* '''Basic:''' Only the background may been changed or colored in some software, but not the font.&lt;br /&gt;
* '''Standard:''' A software may only support one &amp;quot;Some&amp;quot;, not the both.&lt;br /&gt;
* '''Advanced:''' A software may only support one &amp;quot;Some&amp;quot;, not the both.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''5) Media:'''&lt;br /&gt;
* If WMP ([http://www.microsoft.com/windows/windowsmedia/default.mspx Windows Media Player]) or AMP ([http://www.winamp.com Winamp]) are listed, that jukebox software is simply a frontend for those programs and handle all formats and codecs WMP/AMP support.  WMP/AMP are '''REQUIRED''' for the jukebox software to operate.&lt;br /&gt;
* If video and/or image is listed, the individual page will list all video or image file types supported.&lt;br /&gt;
* Some software may support MP3+G (a karaoke system), wich is stated as cdg (but they may need to being ripped from the cd).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''B) Bass:''' &lt;br /&gt;
*An external engine, [http://www.un4seen.com Bass] supports a variety of extensions and is included with the software. Check  the Bass website for a full listing of supported media types.&lt;br /&gt;
*&amp;quot;The JukeBox'er&amp;quot; uses Bass engine, but it is currently locked to wma, mp3, ogg, wav and cda extensions.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''6) Resoulutions:''' &lt;br /&gt;
* If a software have a + after the resoulutions, this main it use a autoscaling screme. You can show it on a higher monitor, but the skin may just rescaled.&lt;br /&gt;
* If a software stated with any, this mean any resolution is supported by a added skin.&lt;br /&gt;
* Wincab/Doscab autoscales all skins to all resolutions and orientations; skins designed specifically for very low resolutions (320x240) are included.&lt;br /&gt;
* Other software may look best at the stated resolution(s), even if it supports any resolution with a new skin.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''7) Controls:''' &lt;br /&gt;
* Wincab/Doscab only supports touchscreens in DOS and Windows XP.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* [[Software]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Index]]&lt;br /&gt;
[[Category:Software]]&lt;/div&gt;</summary>
		<author><name>Barcrest</name></author>
		
	</entry>
	<entry>
		<id>http://oldwiki.arcadecontrols.com/index.php?title=Jukebox_Software&amp;diff=8274</id>
		<title>Jukebox Software</title>
		<link rel="alternate" type="text/html" href="http://oldwiki.arcadecontrols.com/index.php?title=Jukebox_Software&amp;diff=8274"/>
		<updated>2007-03-21T11:42:18Z</updated>

		<summary type="html">&lt;p&gt;Barcrest: /* List of jukebox software */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Jukebox software''' is designed to allow your PC to act and appear as a jukebox. Much like [[emulators|game emulators]], there is a GUI to enhance this effect. Jukeboxes often require you to [[CD Ripping|rip your music]] from CD's to your PC. &lt;br /&gt;
&lt;br /&gt;
Software is available for several different operating systems and may or may not be freeware.  Often, if the software is freeware, a donation link is present on the homepage of the software to allow you to show your appreciation for the developer's efforts in creating software that frequently rivals and/or bests commercial software!&lt;br /&gt;
&lt;br /&gt;
Jukebox software may also be &amp;quot;skinnable&amp;quot;, meaning the appearance of the software may be changed by the end-user based on their preferences.  This may take the form of preset skins within the software, or the ability to develop and share skins with other end-users.&lt;br /&gt;
&lt;br /&gt;
Lastly, touchscreens may be utilized if the software supports it, and can be used to eliminate the need for buttons or a keyboard/mouse combination altogether.&lt;br /&gt;
&lt;br /&gt;
==List of jukebox software==&lt;br /&gt;
Below is the jukebox software comparison table for '''Windows''' only. SilverJuke now exists to Mac, and Doscab is for DOS.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;'''''Please be aware that this may be incomplete! The individual pages will have the software's homepage for you to verify any information or questions you may have!'''''&lt;br /&gt;
&lt;br /&gt;
{| Width=&amp;quot;100%&amp;quot; valign=&amp;quot;top&amp;quot; border=&amp;quot;1&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background:white; color:black; border:1px solid silver;&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background:navy; color:white&amp;quot;&lt;br /&gt;
|'''Software'''&lt;br /&gt;
|'''Format&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''BYOAC&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''OS'''&lt;br /&gt;
|'''License&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''Skin&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''Monitor'''&lt;br /&gt;
|'''Media&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''Resolutions&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''Controls&amp;lt;sup&amp;gt;7&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[AlbumPlayer]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]] &lt;br /&gt;
| Shareware&lt;br /&gt;
| Standard&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor vertical icon.gif]]&lt;br /&gt;
| BASS&amp;lt;sup&amp;gt;b&amp;lt;/sup&amp;gt;&lt;br /&gt;
| 800x480+&lt;br /&gt;
| Touchscreen Mouse &lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Arcade Jukebox]]&lt;br /&gt;
| Singles&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]] &lt;br /&gt;
| Freeware&lt;br /&gt;
| Basic&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3&lt;br /&gt;
| 400x300 640x480 800x600&lt;br /&gt;
| Keyboard Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Arcade Music Box]]&lt;br /&gt;
| List&lt;br /&gt;
| Space Fractal&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Full&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor vertical icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| BASS&amp;lt;sup&amp;gt;b&amp;lt;/sup&amp;gt; cda cdg url radio video &lt;br /&gt;
| 320x240 400x300 640x480 ''ANY''&lt;br /&gt;
| Keyboard Joystick Spinner&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[BoxEasy]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Shareware&lt;br /&gt;
| Basic&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3 ogg wma m4a&lt;br /&gt;
| 1024x768 1280x1024&lt;br /&gt;
| Keyboard Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[DAM Jukebox]]&lt;br /&gt;
| Singles&lt;br /&gt;
| DamSoft&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Basic&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3&lt;br /&gt;
| 1024x768&lt;br /&gt;
| Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Freebox]]&lt;br /&gt;
| Album&lt;br /&gt;
| Barcrest&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Full&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| mp3 M4a wma cdg video&lt;br /&gt;
| 800x600 1024x768 ''Any'' &lt;br /&gt;
| Touchscreen Mouse Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Jukebox Simulator]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Shareware&lt;br /&gt;
| Basic&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3&lt;br /&gt;
| 1024x768&lt;br /&gt;
| Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Nordbeat's Jukebox]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Shareware&lt;br /&gt;
| Standard&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor vertical icon.gif]]&lt;br /&gt;
| WMP AMP&lt;br /&gt;
| 800x600 1024x768&lt;br /&gt;
| Touchscreen Keyboard Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[PartyTime Jukebox]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Basic&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| AMP&lt;br /&gt;
| 800x600 1024x768&lt;br /&gt;
| Touchscreen Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Silverjuke]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]][[Image:OS MAC icon.gif]]&lt;br /&gt;
| Commercial&lt;br /&gt;
| Advanced&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| AMP&lt;br /&gt;
| 640x480+&lt;br /&gt;
| Touchscreen Mouse Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[SK Jukebox]]&lt;br /&gt;
| Album&lt;br /&gt;
| SalmonKing&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Basic&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3 ogg wav wma aiff flac aac mp4 (sound only) ac3 alac video&lt;br /&gt;
| 800x600+&lt;br /&gt;
| Touchscreen Mouse Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[The JukeBox'er]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Shareware&lt;br /&gt;
| Advanced&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| BASS&amp;lt;sup&amp;gt;b&amp;lt;/sup&amp;gt; cdg radio video&lt;br /&gt;
| 800x600+&lt;br /&gt;
| Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[The PC Jukebox]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Commercial&lt;br /&gt;
| Standard&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3 wma wav video&lt;br /&gt;
| 1024x768&lt;br /&gt;
| Touchscreen Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Touchtone]]&lt;br /&gt;
| -&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Shareware&lt;br /&gt;
| Basic&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| AMP video&lt;br /&gt;
| 1024x768&lt;br /&gt;
| Touchscreen Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[UncleT's Jukebox]]&lt;br /&gt;
| Album&lt;br /&gt;
| UncleT&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Basic&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| WMP video&lt;br /&gt;
| 1024x768+&lt;br /&gt;
| Mouse Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Virtual Music Jukebox]]&lt;br /&gt;
| Album&lt;br /&gt;
| -&lt;br /&gt;
| [[Image:OS windows icon.gif]]&lt;br /&gt;
| Commercial&lt;br /&gt;
| Standard&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| mp3 wma wmv&lt;br /&gt;
| 800x600 1024x768&lt;br /&gt;
| Touchscreen Mouse Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Wincab/Doscab]]&lt;br /&gt;
| Both&lt;br /&gt;
| Chris&lt;br /&gt;
| [[Image:OS windows icon.gif]][[Image:OS DOS icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Full&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]][[Image:Monitor vertical icon.gif]]&lt;br /&gt;
| mp3 ogg mid&lt;br /&gt;
| Any&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;&lt;br /&gt;
| Touchscreen Mouse Keyboard Joystick&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[Title Track]]&lt;br /&gt;
| Album&lt;br /&gt;
| &lt;br /&gt;
| [[Image:OS MAC icon.gif]]&lt;br /&gt;
| Commercial&lt;br /&gt;
| None&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| MP3, WAV, AIFF and SD2.&lt;br /&gt;
| UNKNOWN&lt;br /&gt;
| Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| [[MP3 Susi]] http://www.macmusic.org/software/version.php/lang/en/id/3238/&lt;br /&gt;
| Album&lt;br /&gt;
| &lt;br /&gt;
| [[Image:OS MAC icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| None&lt;br /&gt;
| [[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| MP3, AAC.&lt;br /&gt;
| UNKNOWN&lt;br /&gt;
| Mouse&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''1) Format Orientation:'''&lt;br /&gt;
&lt;br /&gt;
With type of format do the software use. This tell it Singles or album based (or both). There are some exceptions:&lt;br /&gt;
&lt;br /&gt;
* Arcade Music Box use a list based screme like Mamewah, but it support both Singles and Albums formats.&lt;br /&gt;
* Wincab/Doscab acts best as a singles-based jukebox (it is very popular), but it also supports album as well.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''2) Byoac Member?'''&lt;br /&gt;
&lt;br /&gt;
If this software is registered and supported by a BYOAC member, the name is showed here.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''3) License:'''&lt;br /&gt;
* ''Freeware:'' is fully functional without payment.  A nag screen or ads are not considered a loss of functionality. &lt;br /&gt;
* ''Shareware:'' has limited functionality until payment is made. &lt;br /&gt;
* ''Commercial:'' software is fully functional for a limited time, after which payment must be made.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''4) About skinning:''' &lt;br /&gt;
&lt;br /&gt;
How can the software being skinned and changed?&lt;br /&gt;
&lt;br /&gt;
{| Width=&amp;quot;550&amp;quot; valign=&amp;quot;top&amp;quot; border=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background:white; color:black; border:1px solid silver;&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background:#333333; color:white&amp;quot;&lt;br /&gt;
|'''Grade'''&lt;br /&gt;
|'''Fonts'''&lt;br /&gt;
|'''Background'''&lt;br /&gt;
|'''Elements'''&lt;br /&gt;
|'''Resizeable'''&lt;br /&gt;
|'''Moveable'''&lt;br /&gt;
|'''Resolutions'''&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|'''Font Only'''&lt;br /&gt;
|Yes&lt;br /&gt;
|Fixed&lt;br /&gt;
|Fixed&lt;br /&gt;
|Fixed&lt;br /&gt;
|Fixed&lt;br /&gt;
|Fixed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|'''Basic'''&lt;br /&gt;
|Maybe&lt;br /&gt;
|Yes&lt;br /&gt;
|Fixed&lt;br /&gt;
|Fixed&lt;br /&gt;
|Fixed&lt;br /&gt;
|Fixed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|'''Standard'''&lt;br /&gt;
|Yes&lt;br /&gt;
|Yes&lt;br /&gt;
|Some&lt;br /&gt;
|Some&lt;br /&gt;
|Fixed&lt;br /&gt;
|Fixed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|'''Advanced'''&lt;br /&gt;
|Yes&lt;br /&gt;
|Yes&lt;br /&gt;
|All&lt;br /&gt;
|Some&lt;br /&gt;
|Some&lt;br /&gt;
|Fixed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|'''Full'''&lt;br /&gt;
|Yes&lt;br /&gt;
|Yes&lt;br /&gt;
|All&lt;br /&gt;
|All&lt;br /&gt;
|Most&lt;br /&gt;
|Any&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
'''Note:'''&lt;br /&gt;
* '''Basic:''' Only the background may been changed or colored in some software, but not the font.&lt;br /&gt;
* '''Standard:''' A software may only support one &amp;quot;Some&amp;quot;, not the both.&lt;br /&gt;
* '''Advanced:''' A software may only support one &amp;quot;Some&amp;quot;, not the both.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''5) Media:'''&lt;br /&gt;
* If WMP ([http://www.microsoft.com/windows/windowsmedia/default.mspx Windows Media Player]) or AMP ([http://www.winamp.com Winamp]) are listed, that jukebox software is simply a frontend for those programs and handle all formats and codecs WMP/AMP support.  WMP/AMP are '''REQUIRED''' for the jukebox software to operate.&lt;br /&gt;
* If video and/or image is listed, the individual page will list all video or image file types supported.&lt;br /&gt;
* Some software may support MP3+G (a karaoke system), wich is stated as cdg (but they may need to being ripped from the cd).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''B) Bass:''' &lt;br /&gt;
*An external engine, [http://www.un4seen.com Bass] supports a variety of extensions and is included with the software. Check  the Bass website for a full listing of supported media types.&lt;br /&gt;
*&amp;quot;The JukeBox'er&amp;quot; uses Bass engine, but it is currently locked to wma, mp3, ogg, wav and cda extensions.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''6) Resoulutions:''' &lt;br /&gt;
* If a software have a + after the resoulutions, this main it use a autoscaling screme. You can show it on a higher monitor, but the skin may just rescaled.&lt;br /&gt;
* If a software stated with any, this mean any resolution is supported by a added skin.&lt;br /&gt;
* Wincab/Doscab autoscales all skins to all resolutions and orientations; skins designed specifically for very low resolutions (320x240) are included.&lt;br /&gt;
* Other software may look best at the stated resolution(s), even if it supports any resolution with a new skin.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''7) Controls:''' &lt;br /&gt;
* Wincab/Doscab only supports touchscreens in DOS and Windows XP.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* [[Software]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Index]]&lt;br /&gt;
[[Category:Software]]&lt;/div&gt;</summary>
		<author><name>Barcrest</name></author>
		
	</entry>
	<entry>
		<id>http://oldwiki.arcadecontrols.com/index.php?title=E-Touch&amp;diff=8113</id>
		<title>E-Touch</title>
		<link rel="alternate" type="text/html" href="http://oldwiki.arcadecontrols.com/index.php?title=E-Touch&amp;diff=8113"/>
		<updated>2007-01-24T23:19:32Z</updated>

		<summary type="html">&lt;p&gt;Barcrest: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
[[Image:freebox_jukebox.jpg|thumb|Freebox 50's Diner Skin Screenshot|320px|right]]&lt;br /&gt;
* '''OS:  ''' Windows XP recommended, Windows 2000 Compatible.&lt;br /&gt;
* '''Cost:  ''' Freeware (donations accepted)&lt;br /&gt;
* '''Skinnable:  ''' Full skinning with any resoulution supported.&lt;br /&gt;
* '''Re-mappable keys:  ''' Yes&lt;br /&gt;
* '''Monitor orientation(s):  ''' Horizontal and Dual Screen.&lt;br /&gt;
* '''Screen resolution(s):  ''' Most suited for 800x600 and 1024x768&lt;br /&gt;
* '''Controller(s):  ''' Touchscreen supported, keyboard, mouse, arcade controls&lt;br /&gt;
* '''Supported media format(s):''' mp3, wma, mpg, avi and wmv&lt;br /&gt;
* '''Format Orientation(s):''' Album-oriented&lt;br /&gt;
* '''Additional Requirements:''' Additional codecs may be required for certain media formats&lt;br /&gt;
* '''Homepage:  '''[http://www.freeboxjukebox.com/ www.freeboxjukebox.com]&lt;br /&gt;
* '''Additional Details:'''&lt;br /&gt;
Freebox Jukebox similar to the popular software found running in most bars across the world. It has support for Video (also on dual Screen), MP3 and MP3+G (Karaoke). The software has a pin coded options screen to hide from users and credit support. It comes with a selection of skins and a tool to create these yourself making it fully customizable.&lt;br /&gt;
&lt;br /&gt;
This jukebox supports large collections easilly and offers search abilities for Album Name, Artist Name and Track Title. It works quite fast and has been designed to run on P700mhz, it has been tested on a P400 and runs at an acceptable speed.&lt;br /&gt;
&lt;br /&gt;
'''New:''' Freebox do now support skins in any resoulutions, so you can make a new skin on that resoulution you want. Just look in the skin forum for the inspiration and is downloadable. &lt;br /&gt;
{{JukeboxSoftware}}&lt;br /&gt;
[[Category:Software]]&lt;/div&gt;</summary>
		<author><name>Barcrest</name></author>
		
	</entry>
	<entry>
		<id>http://oldwiki.arcadecontrols.com/index.php?title=E-Touch&amp;diff=7788</id>
		<title>E-Touch</title>
		<link rel="alternate" type="text/html" href="http://oldwiki.arcadecontrols.com/index.php?title=E-Touch&amp;diff=7788"/>
		<updated>2006-08-09T08:47:22Z</updated>

		<summary type="html">&lt;p&gt;Barcrest: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Freebox Jukebox similar to the popular Touchtunes software found running in most bars across the U.S. It has support for Video (also on dual Screen), MP3 and MP3+G (Karaoke). The software has a pin coded options screen to hide from users and credit support. It comes with a selection of skins and a tool to create these yourself making it fully customizable.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:freebox_jukebox.jpg|thumb|Freebox 50's Diner Skin Screenshot|320px|right]]&lt;br /&gt;
* '''OS:  ''' Windows XP recommended&lt;br /&gt;
* '''Cost:  ''' Freeware (donations accepted)&lt;br /&gt;
* '''Skinnable:  ''' Advanced - text and color can be changed, and interfaces are swappable by the user&lt;br /&gt;
* '''Re-mappable keys:  ''' Yes&lt;br /&gt;
* '''Monitor orientation(s):  ''' Horizontal and Dual Screen.&lt;br /&gt;
* '''Screen resolution(s):  ''' 800x600 Out Of The Box, Any Resolution using skins&lt;br /&gt;
* '''Controller(s):  ''' Touchscreen supported, keyboard, mouse, arcade controls&lt;br /&gt;
* '''Supported media format(s):''' mp3, wma, mpg,avi, wmv&lt;br /&gt;
* '''Format Orientation(s):''' Album-oriented&lt;br /&gt;
* '''Additional Requirements:''' Additional codecs may be required for certain media formats&lt;br /&gt;
* '''Homepage:  '''[http://www.freeboxjukebox.com/ www.freeboxjukebox.com]&lt;br /&gt;
* '''Additional Details:'''&lt;br /&gt;
This jukebox supports large collections easilly and offers search abilities for Album Name, Artist Name and Track Title. It works quite fast and has been designed to run on P700mhz, it should work on even lower spec machines.&lt;br /&gt;
{{JukeboxSoftware}}&lt;br /&gt;
[[Category:Software]]&lt;/div&gt;</summary>
		<author><name>Barcrest</name></author>
		
	</entry>
	<entry>
		<id>http://oldwiki.arcadecontrols.com/index.php?title=E-Touch&amp;diff=3566</id>
		<title>E-Touch</title>
		<link rel="alternate" type="text/html" href="http://oldwiki.arcadecontrols.com/index.php?title=E-Touch&amp;diff=3566"/>
		<updated>2006-04-23T18:34:12Z</updated>

		<summary type="html">&lt;p&gt;Barcrest: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Freebox Jukebox similar to the popular Touchtunes software found running in most bars across the U.S. It has support for Video (also on dual Screen), MP3 and MP3+G (Karaoke). The software has a pin coded options screen to hide from users and credit support. It comes with a selection of skins and a tool to create these yourself making it fully customizable.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:freebox_jukebox.jpg|thumb|Freebox 50's Diner Skin Screenshot|320px|right]]&lt;br /&gt;
* '''OS:  ''' Windows XP recommended&lt;br /&gt;
* '''Cost:  ''' Freeware (donations accepted)&lt;br /&gt;
* '''Skinnable:  ''' Full - text and color can be changed, and interfaces are swappable by the user&lt;br /&gt;
* '''Re-mappable keys:  ''' Yes&lt;br /&gt;
* '''Monitor orientation(s):  ''' Horizontal and Dual Screen.&lt;br /&gt;
* '''Screen resolution(s):  ''' Best viewed under 800x600, basic 1024x768 support&lt;br /&gt;
* '''Controller(s):  ''' Touchscreen supported, keyboard, mouse, arcade controls&lt;br /&gt;
* '''Supported media format(s):''' mp3, wma, mpg,avi, wmv&lt;br /&gt;
* '''Format Orientation(s):''' Album-oriented&lt;br /&gt;
* '''Additional Requirements:''' Additional codecs may be required for certain media formats&lt;br /&gt;
* '''Homepage:  '''[http://www.freeboxjukebox.com/ www.freeboxjukebox.com]&lt;br /&gt;
* '''Additional Details:'''&lt;br /&gt;
This jukebox supports large collections easilly and offers search abilities for Album Name, Artist Name and Track Title. It works quite fast and has been designed to run on P700mhz, it should work on even lower spec machines.&lt;br /&gt;
{{JukeboxSoftware}}&lt;/div&gt;</summary>
		<author><name>Barcrest</name></author>
		
	</entry>
	<entry>
		<id>http://oldwiki.arcadecontrols.com/index.php?title=Jukebox_Software&amp;diff=3565</id>
		<title>Jukebox Software</title>
		<link rel="alternate" type="text/html" href="http://oldwiki.arcadecontrols.com/index.php?title=Jukebox_Software&amp;diff=3565"/>
		<updated>2006-04-23T18:29:04Z</updated>

		<summary type="html">&lt;p&gt;Barcrest: /* List of jukebox software */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Jukebox software''' is designed to allow your PC to act and appear as a jukebox. Much like [[emulators|game emulators]], there is a GUI to enhance this effect. Jukeboxes often require you to [[CD Ripping|rip your music]] from CD's to your PC. &lt;br /&gt;
&lt;br /&gt;
Software is available for several different operating systems and may or may not be freeware.  Often, if the software is freeware, a donation link is present on the homepage of the software to allow you to show your appreciation for the developer's efforts in creating software that frequently rivals and/or bests commercial software!&lt;br /&gt;
&lt;br /&gt;
Jukebox software may also be &amp;quot;skinnable&amp;quot;, meaning the appearance of the software may be changed by the end-user based on their preferences.  This may take the form of preset skins within the software, or the ability to develop and share skins with other end-users.&lt;br /&gt;
&lt;br /&gt;
Lastly, touchscreens may be utilized if the software supports it, and can be used to eliminate the need for buttons or a keyboard/mouse combination altogether.&lt;br /&gt;
&lt;br /&gt;
==List of jukebox software==&lt;br /&gt;
Below is the jukebox software comparison table. Click on the software's name for detailed information about that software. The jukebox software listed here are all [[cabinet friendly software|cabfriendly]].&lt;br /&gt;
&amp;lt;br&amp;gt;'''''Please be aware that this may be incomplete! The individual pages will have the software's homepage for you to verify any information or questions you may have!'''''&lt;br /&gt;
&lt;br /&gt;
{| Width=&amp;quot;100%&amp;quot; vvalign=&amp;quot;top&amp;quot; border=&amp;quot;1&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background:white; color:black; border:1px solid silver;&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background:navy; color:white&amp;quot;&lt;br /&gt;
|'''Software'''&lt;br /&gt;
|'''OS'''&lt;br /&gt;
|'''Type&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''Skinnable&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''Monitor'''&lt;br /&gt;
|'''Media&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''Resolutions'''&lt;br /&gt;
|'''Controls'''&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Arcade Jukebox]]&lt;br /&gt;
|[[Image:OS windows icon.gif]] &lt;br /&gt;
| Freeware&lt;br /&gt;
| Partial&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3&lt;br /&gt;
| 400x300 640x480 800x600&lt;br /&gt;
| Keyboard Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Arcade Music Box]]&lt;br /&gt;
|[[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Full&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]][[Image:Monitor vertical icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| BASS&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt; cda cdg url radio video &lt;br /&gt;
| 320x240 400x300 640x480&lt;br /&gt;
| Touchscreen  Keyboard Joystick Spinner&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
&lt;br /&gt;
|[[BoxEasy]]&lt;br /&gt;
|[[Image:OS windows icon.gif]] &lt;br /&gt;
| Shareware&lt;br /&gt;
| Partial&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3 ogg wma m4a&lt;br /&gt;
| 1024x768 1280x1024&lt;br /&gt;
| Keyboard Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Freebox]]&lt;br /&gt;
|[[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Full&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| mp3 wma cdg video&lt;br /&gt;
| 800x600 1024x768&lt;br /&gt;
| Touchscreen Mouse Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Jukebox Simulator]]&lt;br /&gt;
|[[Image:OS windows icon.gif]]&lt;br /&gt;
| Shareware&lt;br /&gt;
| Basic&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3&lt;br /&gt;
| 1024x768&lt;br /&gt;
| Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Nordbeat's Jukebox]]&lt;br /&gt;
|[[Image:OS windows icon.gif]]&lt;br /&gt;
| Shareware&lt;br /&gt;
| Partial&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]][[Image:Monitor vertical icon.gif]]&lt;br /&gt;
| WMP AMP&lt;br /&gt;
| 800x600 1024x768&lt;br /&gt;
| Touchscreen Keyboard Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[PartyTime Jukebox]]&lt;br /&gt;
|[[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Basic&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| AMP&lt;br /&gt;
| 800x600 1024x768&lt;br /&gt;
| Touchscreen Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Silverjuke]]&lt;br /&gt;
|[[Image:OS windows icon.gif]][[Image:OS linux icon.gif]][[Image:OS MAC icon.gif]]&lt;br /&gt;
| Commercial&lt;br /&gt;
| Full&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| AMP&lt;br /&gt;
| 640x480+&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt;&lt;br /&gt;
| Touchscreen Mouse Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[SK Jukebox]]&lt;br /&gt;
|[[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Partial&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3 ogg wav wma&lt;br /&gt;
| 800x600+&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt;&lt;br /&gt;
| Touchscreen Mouse Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[The JukeBox'er]]&lt;br /&gt;
|[[Image:OS windows icon.gif]]&lt;br /&gt;
| Shareware&lt;br /&gt;
| Full&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| BASS&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt; cdg radio video&lt;br /&gt;
| 800x600+&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt;&lt;br /&gt;
| Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[The PC Jukebox]]&lt;br /&gt;
|[[Image:OS windows icon.gif]]&lt;br /&gt;
| Commercial&lt;br /&gt;
| Advanced&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3 wma wav video&lt;br /&gt;
| 1024x768&lt;br /&gt;
| Touchscreen Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Touchtone]]&lt;br /&gt;
|[[Image:OS windows icon.gif]]&lt;br /&gt;
| Shareware&lt;br /&gt;
| No&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| AMP video&lt;br /&gt;
| 1024x768&lt;br /&gt;
| Touchscreen Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[UncleT's Jukebox]]&lt;br /&gt;
|[[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Partial&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| WMP video&lt;br /&gt;
| 1024x768+&lt;br /&gt;
| Mouse Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Virtual Music Jukebox]]&lt;br /&gt;
|[[Image:OS windows icon.gif]]&lt;br /&gt;
| Commercial&lt;br /&gt;
| Advanced&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| mp3 wma wmv&lt;br /&gt;
| 800x600 1024x768&lt;br /&gt;
| Touchscreen Mouse Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Wincab/Doscab]]&lt;br /&gt;
|[[Image:OS DOS icon.gif]][[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Full&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]][[Image:Monitor vertical icon.gif]]&lt;br /&gt;
| mp3 ogg mid&lt;br /&gt;
| Any&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;&lt;br /&gt;
| Touchscreen Mouse Keyboard Joystick&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
'''1)''' Type:&lt;br /&gt;
* '''Freeware:''' is fully functional without payment.  A nag screen or ads are not considered a loss of functionality. &lt;br /&gt;
* '''Shareware:''' has limited functionality until payment is made. &lt;br /&gt;
* '''Commercial:''' software is fully functional for a limited time, after which payment must be made.&lt;br /&gt;
&lt;br /&gt;
'''2)''' Skinnable: &lt;br /&gt;
* '''Basic:  ''' change only the background and/or add album art&lt;br /&gt;
* '''Partial:  ''' change the background and/or album art, text size and/or color&lt;br /&gt;
* '''Advanced:  ''' change all artwork. The interface elements are locked in place, although buttons may be able to be resized&lt;br /&gt;
* '''Full:  ''' change all artwork and all interface elements can be changed (resize, moveable and resolution).&lt;br /&gt;
&lt;br /&gt;
'''3)''' Media:&lt;br /&gt;
* If WMP ([http://www.microsoft.com/windows/windowsmedia/default.mspx Windows Media Player]) or AMP ([http://www.winamp.com Winamp]) are listed, that jukebox software is simply a frontend for those programs and handle all formats and codecs WMP/AMP support.  WMP/AMP are '''REQUIRED''' for the jukebox software to operate.&lt;br /&gt;
* If video and/or image is listed, the individual page will list all video or image file types supported&lt;br /&gt;
* Some software may support MP3+G (a karaoke system), wich is stated as cdg (but they may need to being ripped from the cd).&lt;br /&gt;
&lt;br /&gt;
'''4)''' Bass: &lt;br /&gt;
*An external engine, [http://www.un4seen.com Bass] supports a variety of extensions and is included with the software. Check the Bass website for a full listing of supported media types.&lt;br /&gt;
*&amp;quot;The JukeBox'er&amp;quot; uses Bass engine, but it is currently locked to wma, mp3, ogg, wav and cda extensions.&lt;br /&gt;
&lt;br /&gt;
'''5)''' Autoscaling:&lt;br /&gt;
* This software uses autoscaling to the desktop resolution or in a window (if Windowed mode is used). It never changes the desktop resolution.&lt;br /&gt;
&lt;br /&gt;
'''6)''' Any resolution:&lt;br /&gt;
* This software has skins from very low resolutions (320x240) to high resolutions included.&lt;/div&gt;</summary>
		<author><name>Barcrest</name></author>
		
	</entry>
	<entry>
		<id>http://oldwiki.arcadecontrols.com/index.php?title=Jukebox_Software&amp;diff=3564</id>
		<title>Jukebox Software</title>
		<link rel="alternate" type="text/html" href="http://oldwiki.arcadecontrols.com/index.php?title=Jukebox_Software&amp;diff=3564"/>
		<updated>2006-04-23T18:28:26Z</updated>

		<summary type="html">&lt;p&gt;Barcrest: /* List of jukebox software */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Jukebox software''' is designed to allow your PC to act and appear as a jukebox. Much like [[emulators|game emulators]], there is a GUI to enhance this effect. Jukeboxes often require you to [[CD Ripping|rip your music]] from CD's to your PC. &lt;br /&gt;
&lt;br /&gt;
Software is available for several different operating systems and may or may not be freeware.  Often, if the software is freeware, a donation link is present on the homepage of the software to allow you to show your appreciation for the developer's efforts in creating software that frequently rivals and/or bests commercial software!&lt;br /&gt;
&lt;br /&gt;
Jukebox software may also be &amp;quot;skinnable&amp;quot;, meaning the appearance of the software may be changed by the end-user based on their preferences.  This may take the form of preset skins within the software, or the ability to develop and share skins with other end-users.&lt;br /&gt;
&lt;br /&gt;
Lastly, touchscreens may be utilized if the software supports it, and can be used to eliminate the need for buttons or a keyboard/mouse combination altogether.&lt;br /&gt;
&lt;br /&gt;
==List of jukebox software==&lt;br /&gt;
Below is the jukebox software comparison table. Click on the software's name for detailed information about that software. The jukebox software listed here are all [[cabinet friendly software|cabfriendly]].&lt;br /&gt;
&amp;lt;br&amp;gt;'''''Please be aware that this may be incomplete! The individual pages will have the software's homepage for you to verify any information or questions you may have!'''''&lt;br /&gt;
&lt;br /&gt;
{| Width=&amp;quot;100%&amp;quot; vvalign=&amp;quot;top&amp;quot; border=&amp;quot;1&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background:white; color:black; border:1px solid silver;&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background:navy; color:white&amp;quot;&lt;br /&gt;
|'''Software'''&lt;br /&gt;
|'''OS'''&lt;br /&gt;
|'''Type&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''Skinnable&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''Monitor'''&lt;br /&gt;
|'''Media&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''Resolutions'''&lt;br /&gt;
|'''Controls'''&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Arcade Jukebox]]&lt;br /&gt;
|[[Image:OS windows icon.gif]] &lt;br /&gt;
| Freeware&lt;br /&gt;
| Partial&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3&lt;br /&gt;
| 400x300 640x480 800x600&lt;br /&gt;
| Keyboard Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Arcade Music Box]]&lt;br /&gt;
|[[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Full&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]][[Image:Monitor vertical icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| BASS&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt; cda cdg url radio video &lt;br /&gt;
| 320x240 400x300 640x480&lt;br /&gt;
| Touchscreen  Keyboard Joystick Spinner&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
&lt;br /&gt;
|[[BoxEasy]]&lt;br /&gt;
|[[Image:OS windows icon.gif]] &lt;br /&gt;
| Shareware&lt;br /&gt;
| Partial&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3 ogg wma m4a&lt;br /&gt;
| 1024x768 1280x1024&lt;br /&gt;
| Keyboard Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Freebox]]&lt;br /&gt;
|[[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Full&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| mp3 wma cdg video&lt;br /&gt;
| 800x600 1024x768&lt;br /&gt;
| Touchscreen  Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Jukebox Simulator]]&lt;br /&gt;
|[[Image:OS windows icon.gif]]&lt;br /&gt;
| Shareware&lt;br /&gt;
| Basic&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3&lt;br /&gt;
| 1024x768&lt;br /&gt;
| Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Nordbeat's Jukebox]]&lt;br /&gt;
|[[Image:OS windows icon.gif]]&lt;br /&gt;
| Shareware&lt;br /&gt;
| Partial&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]][[Image:Monitor vertical icon.gif]]&lt;br /&gt;
| WMP AMP&lt;br /&gt;
| 800x600 1024x768&lt;br /&gt;
| Touchscreen Keyboard Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[PartyTime Jukebox]]&lt;br /&gt;
|[[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Basic&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| AMP&lt;br /&gt;
| 800x600 1024x768&lt;br /&gt;
| Touchscreen Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Silverjuke]]&lt;br /&gt;
|[[Image:OS windows icon.gif]][[Image:OS linux icon.gif]][[Image:OS MAC icon.gif]]&lt;br /&gt;
| Commercial&lt;br /&gt;
| Full&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| AMP&lt;br /&gt;
| 640x480+&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt;&lt;br /&gt;
| Touchscreen Mouse Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[SK Jukebox]]&lt;br /&gt;
|[[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Partial&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3 ogg wav wma&lt;br /&gt;
| 800x600+&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt;&lt;br /&gt;
| Touchscreen Mouse Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[The JukeBox'er]]&lt;br /&gt;
|[[Image:OS windows icon.gif]]&lt;br /&gt;
| Shareware&lt;br /&gt;
| Full&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| BASS&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt; cdg radio video&lt;br /&gt;
| 800x600+&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt;&lt;br /&gt;
| Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[The PC Jukebox]]&lt;br /&gt;
|[[Image:OS windows icon.gif]]&lt;br /&gt;
| Commercial&lt;br /&gt;
| Advanced&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3 wma wav video&lt;br /&gt;
| 1024x768&lt;br /&gt;
| Touchscreen Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Touchtone]]&lt;br /&gt;
|[[Image:OS windows icon.gif]]&lt;br /&gt;
| Shareware&lt;br /&gt;
| No&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| AMP video&lt;br /&gt;
| 1024x768&lt;br /&gt;
| Touchscreen Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[UncleT's Jukebox]]&lt;br /&gt;
|[[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Partial&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| WMP video&lt;br /&gt;
| 1024x768+&lt;br /&gt;
| Mouse Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Virtual Music Jukebox]]&lt;br /&gt;
|[[Image:OS windows icon.gif]]&lt;br /&gt;
| Commercial&lt;br /&gt;
| Advanced&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| mp3 wma wmv&lt;br /&gt;
| 800x600 1024x768&lt;br /&gt;
| Touchscreen Mouse Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Wincab/Doscab]]&lt;br /&gt;
|[[Image:OS DOS icon.gif]][[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Full&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]][[Image:Monitor vertical icon.gif]]&lt;br /&gt;
| mp3 ogg mid&lt;br /&gt;
| Any&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;&lt;br /&gt;
| Touchscreen Mouse Keyboard Joystick&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
'''1)''' Type:&lt;br /&gt;
* '''Freeware:''' is fully functional without payment.  A nag screen or ads are not considered a loss of functionality. &lt;br /&gt;
* '''Shareware:''' has limited functionality until payment is made. &lt;br /&gt;
* '''Commercial:''' software is fully functional for a limited time, after which payment must be made.&lt;br /&gt;
&lt;br /&gt;
'''2)''' Skinnable: &lt;br /&gt;
* '''Basic:  ''' change only the background and/or add album art&lt;br /&gt;
* '''Partial:  ''' change the background and/or album art, text size and/or color&lt;br /&gt;
* '''Advanced:  ''' change all artwork. The interface elements are locked in place, although buttons may be able to be resized&lt;br /&gt;
* '''Full:  ''' change all artwork and all interface elements can be changed (resize, moveable and resolution).&lt;br /&gt;
&lt;br /&gt;
'''3)''' Media:&lt;br /&gt;
* If WMP ([http://www.microsoft.com/windows/windowsmedia/default.mspx Windows Media Player]) or AMP ([http://www.winamp.com Winamp]) are listed, that jukebox software is simply a frontend for those programs and handle all formats and codecs WMP/AMP support.  WMP/AMP are '''REQUIRED''' for the jukebox software to operate.&lt;br /&gt;
* If video and/or image is listed, the individual page will list all video or image file types supported&lt;br /&gt;
* Some software may support MP3+G (a karaoke system), wich is stated as cdg (but they may need to being ripped from the cd).&lt;br /&gt;
&lt;br /&gt;
'''4)''' Bass: &lt;br /&gt;
*An external engine, [http://www.un4seen.com Bass] supports a variety of extensions and is included with the software. Check the Bass website for a full listing of supported media types.&lt;br /&gt;
*&amp;quot;The JukeBox'er&amp;quot; uses Bass engine, but it is currently locked to wma, mp3, ogg, wav and cda extensions.&lt;br /&gt;
&lt;br /&gt;
'''5)''' Autoscaling:&lt;br /&gt;
* This software uses autoscaling to the desktop resolution or in a window (if Windowed mode is used). It never changes the desktop resolution.&lt;br /&gt;
&lt;br /&gt;
'''6)''' Any resolution:&lt;br /&gt;
* This software has skins from very low resolutions (320x240) to high resolutions included.&lt;/div&gt;</summary>
		<author><name>Barcrest</name></author>
		
	</entry>
	<entry>
		<id>http://oldwiki.arcadecontrols.com/index.php?title=Jukebox_Software&amp;diff=3029</id>
		<title>Jukebox Software</title>
		<link rel="alternate" type="text/html" href="http://oldwiki.arcadecontrols.com/index.php?title=Jukebox_Software&amp;diff=3029"/>
		<updated>2006-03-21T23:54:44Z</updated>

		<summary type="html">&lt;p&gt;Barcrest: /* Jukebox software */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Cleanup}}&lt;br /&gt;
&lt;br /&gt;
'''Jukebox software''' is designed to allow your PC to act and appear as a jukebox. Much like [[emulators|game emulators]], there is a GUI to enhance this effect. Jukeboxes often require you to [[CD Ripping|rip your music]] from CD's to your PC. &lt;br /&gt;
&lt;br /&gt;
Software is available for several different operating systems and may or may not be freeware.  Often, if the software is freeware, a donation link is present on the homepage of the software to allow you to show your appreciation for the developer's efforts in creating software that frequently rivals and/or bests commercial software!&lt;br /&gt;
&lt;br /&gt;
Jukebox software may also be &amp;quot;skinnable&amp;quot;, meaning the appearance of the software may be changed by the end-user based on their preferences.  This may take the form of preset skins within the software, or the ability to develop and share skins with other end-users.&lt;br /&gt;
&lt;br /&gt;
Lastly, touchscreens may be utilized if the software supports it, and can be used to eliminate the need for buttons or a keyboard/mouse combination altogether.&lt;br /&gt;
&lt;br /&gt;
==Jukebox software==&lt;br /&gt;
Below is the jukebox software comparison table. Click on the software's name for detailed information about that software. '''''Please be aware that this may be incomplete! The individual pages will have the software's homepage for you to verify any information or questions you may have!'''''&lt;br /&gt;
&lt;br /&gt;
''Note: the table is currently filled with placeholders (placeholders are shown in italics). ''&lt;br /&gt;
&lt;br /&gt;
{| Width=&amp;quot;100%&amp;quot; vvalign=&amp;quot;top&amp;quot; border=&amp;quot;1&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background:white; color:black; border:1px solid silver;&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background:navy; color:white&amp;quot;&lt;br /&gt;
|'''Software'''&lt;br /&gt;
|'''OS'''&lt;br /&gt;
|'''Type&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''Skinnable&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''Monitor'''&lt;br /&gt;
|'''Media&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''Resolutions'''&lt;br /&gt;
|'''Controls'''&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Arcade Jukebox]]&lt;br /&gt;
|[[Image:OS windows icon.gif]] &lt;br /&gt;
| Freeware&lt;br /&gt;
| Partial&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3&lt;br /&gt;
| 400x300 640x480 800x600&lt;br /&gt;
| Keyboard Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Arcade Music Box]]&lt;br /&gt;
|[[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Full&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]][[Image:Monitor vertical icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| BASS&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt; cda cdg url video &lt;br /&gt;
| 320x240 400x300 640x480&lt;br /&gt;
| Touchscreen  Keyboard Joystick Spinner&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
&lt;br /&gt;
|[[BoxEasy]]&lt;br /&gt;
|[[Image:OS windows icon.gif]] &lt;br /&gt;
| Shareware&lt;br /&gt;
| Partial&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3 ogg wma m4a&lt;br /&gt;
| 1024x768 1280x1024&lt;br /&gt;
| Keyboard Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Freebox]]&lt;br /&gt;
|[[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Advanced&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| mp3 wma video MP3+G&lt;br /&gt;
| 800x600 1024x768&lt;br /&gt;
| Touchscreen  Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Jukebox Simulator]]&lt;br /&gt;
|[[Image:OS windows icon.gif]]&lt;br /&gt;
| Shareware&lt;br /&gt;
| Basic&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3&lt;br /&gt;
| 1024x768&lt;br /&gt;
| Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Nordbeat's Jukebox]]&lt;br /&gt;
|[[Image:OS windows icon.gif]]&lt;br /&gt;
| Shareware&lt;br /&gt;
| Partial&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]][[Image:Monitor vertical icon.gif]]&lt;br /&gt;
| WMP AMP&lt;br /&gt;
| 800x600 1024x768&lt;br /&gt;
| Touchscreen Keyboard Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[PartyTime Jukebox]]&lt;br /&gt;
|[[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| ''skinnable''&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| AMP&lt;br /&gt;
| 800x600 1024x768&lt;br /&gt;
| Touchscreen Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Silverjuke]]&lt;br /&gt;
|[[Image:OS DOS icon.gif]][[Image:OS windows icon.gif]] [[Image:OS linux icon.gif]]&lt;br /&gt;
| ''type''&lt;br /&gt;
| ''skinnable''&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]][[Image:Monitor vertical icon.gif]]&lt;br /&gt;
| ''media''&lt;br /&gt;
| ''resolutions''&lt;br /&gt;
| ''controls''&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[SK Jukebox]]&lt;br /&gt;
|[[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| No&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3&lt;br /&gt;
| Scaling&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt; (800x600+)&lt;br /&gt;
| Touchscreen Mouse Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[The JukeBox'er]]&lt;br /&gt;
|[[Image:OS windows icon.gif]]&lt;br /&gt;
| Shareware&lt;br /&gt;
| Full&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| BASS&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt; cdg video&lt;br /&gt;
| Scaling&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt; (1024x768)&lt;br /&gt;
| Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[The PC Jukebox]]&lt;br /&gt;
|[[Image:OS DOS icon.gif]][[Image:OS windows icon.gif]] [[Image:OS linux icon.gif]]&lt;br /&gt;
| ''type''&lt;br /&gt;
| ''skinnable''&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| ''media''&lt;br /&gt;
| '800x600 1024x768 Only 1024 x 768 for the latest version'&lt;br /&gt;
| Mouse Touchscreen?&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Touchtone]]&lt;br /&gt;
|[[Image:OS DOS icon.gif]][[Image:OS windows icon.gif]] [[Image:OS linux icon.gif]]&lt;br /&gt;
| ''type''&lt;br /&gt;
| ''skinnable''&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]][[Image:Monitor vertical icon.gif]]&lt;br /&gt;
| ''media''&lt;br /&gt;
| ''resolutions''&lt;br /&gt;
| ''controls''&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[UncleT's Jukebox]]&lt;br /&gt;
|[[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Advanced&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3 txt video image&lt;br /&gt;
| 1024x768&lt;br /&gt;
| Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Virtual Music Jukebox]]&lt;br /&gt;
|[[Image:OS windows icon.gif]]&lt;br /&gt;
| Commercial&lt;br /&gt;
| Advanced&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| mp3 wma wmv&lt;br /&gt;
| 800x600 1024x768&lt;br /&gt;
| Touchscreen Mouse Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Wincab/Doscab]]&lt;br /&gt;
|[[Image:OS DOS icon.gif]][[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Full&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]][[Image:Monitor vertical icon.gif]]&lt;br /&gt;
| mp3 ogg wav&lt;br /&gt;
| Any&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;&lt;br /&gt;
| Touchscreen Mouse Keyboard Joystick&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
'''1)''' Type:&lt;br /&gt;
* '''Freeware:''' is fully functional without payment.  A nag screen or ads are not considered a loss of functionality. &lt;br /&gt;
* '''Shareware:''' has limited functionality until payment is made. &lt;br /&gt;
* '''Commercial:''' software is fully functional for a limited time, after which payment must be made.&lt;br /&gt;
&lt;br /&gt;
'''2)''' Skinnable: &lt;br /&gt;
* '''Basic:  ''' change only the background and/or add album art&lt;br /&gt;
* '''Partial:  ''' change the background and/or album art, text size and/or color&lt;br /&gt;
* '''Advanced:  ''' change all artwork. The interface elements are locked in place, although buttons may be able to be resized&lt;br /&gt;
* '''Full:  ''' change all artwork, all interface elements can been changed (resize, moveable and resoulution).&lt;br /&gt;
&lt;br /&gt;
'''3)''' Media:&lt;br /&gt;
* If WMP ([http://www.microsoft.com/windows/windowsmedia/default.mspx Windows Media Player]) or AMP ([http://www.winamp.com Winamp]) are listed, that jukebox software is simply a frontend for those programs and handle all formats and codecs WMP/AMP support.  WMP/AMP are '''REQUIRED''' for the jukebox software to operate.&lt;br /&gt;
* If video and/or image is listed, the individual page will list all video or image file types supported&lt;br /&gt;
&lt;br /&gt;
'''4)''' Bass: &lt;br /&gt;
*An external engine, [http://www.un4seen.com Bass] supports a variety of extensions and is included with the software. Check the Bass website for a full listing of supported media types.&lt;br /&gt;
*&amp;quot;The JukeBox'er&amp;quot; use Bass engine, but it seen locked to wma, mp3, ogg, wav and cda extensions. It should been easy to support the rest of Bass extensions.&lt;br /&gt;
&lt;br /&gt;
'''5)''' Autoscaling:&lt;br /&gt;
* This software use autoscaling to the desktop resoulution or in a window (if Windowed mode is used). It never change the desktop resoulution.&lt;br /&gt;
&lt;br /&gt;
'''6)''' Any resoulution:&lt;br /&gt;
* This software have included skins from very low resoulutions to high resoulutions, so it very flexible.&lt;/div&gt;</summary>
		<author><name>Barcrest</name></author>
		
	</entry>
	<entry>
		<id>http://oldwiki.arcadecontrols.com/index.php?title=Jukebox_Software&amp;diff=3028</id>
		<title>Jukebox Software</title>
		<link rel="alternate" type="text/html" href="http://oldwiki.arcadecontrols.com/index.php?title=Jukebox_Software&amp;diff=3028"/>
		<updated>2006-03-21T23:52:37Z</updated>

		<summary type="html">&lt;p&gt;Barcrest: /* Jukebox software */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Cleanup}}&lt;br /&gt;
&lt;br /&gt;
'''Jukebox software''' is designed to allow your PC to act and appear as a jukebox. Much like [[emulators|game emulators]], there is a GUI to enhance this effect. Jukeboxes often require you to [[CD Ripping|rip your music]] from CD's to your PC. &lt;br /&gt;
&lt;br /&gt;
Software is available for several different operating systems and may or may not be freeware.  Often, if the software is freeware, a donation link is present on the homepage of the software to allow you to show your appreciation for the developer's efforts in creating software that frequently rivals and/or bests commercial software!&lt;br /&gt;
&lt;br /&gt;
Jukebox software may also be &amp;quot;skinnable&amp;quot;, meaning the appearance of the software may be changed by the end-user based on their preferences.  This may take the form of preset skins within the software, or the ability to develop and share skins with other end-users.&lt;br /&gt;
&lt;br /&gt;
Lastly, touchscreens may be utilized if the software supports it, and can be used to eliminate the need for buttons or a keyboard/mouse combination altogether.&lt;br /&gt;
&lt;br /&gt;
==Jukebox software==&lt;br /&gt;
Below is the jukebox software comparison table. Click on the software's name for detailed information about that software. '''''Please be aware that this may be incomplete! The individual pages will have the software's homepage for you to verify any information or questions you may have!'''''&lt;br /&gt;
&lt;br /&gt;
''Note: the table is currently filled with placeholders (placeholders are shown in italics). ''&lt;br /&gt;
&lt;br /&gt;
{| Width=&amp;quot;100%&amp;quot; vvalign=&amp;quot;top&amp;quot; border=&amp;quot;1&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;background:white; color:black; border:1px solid silver;&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background:navy; color:white&amp;quot;&lt;br /&gt;
|'''Software'''&lt;br /&gt;
|'''OS'''&lt;br /&gt;
|'''Type&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''Skinnable&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''Monitor'''&lt;br /&gt;
|'''Media&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;'''&lt;br /&gt;
|'''Resolutions'''&lt;br /&gt;
|'''Controls'''&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Arcade Jukebox]]&lt;br /&gt;
|[[Image:OS windows icon.gif]] &lt;br /&gt;
| Freeware&lt;br /&gt;
| Partial&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3&lt;br /&gt;
| 400x300 640x480 800x600&lt;br /&gt;
| Keyboard Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Arcade Music Box]]&lt;br /&gt;
|[[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Full&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]][[Image:Monitor vertical icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| BASS&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt; cda cdg url video &lt;br /&gt;
| 320x240 400x300 640x480&lt;br /&gt;
| Touchscreen  Keyboard Joystick Spinner&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
&lt;br /&gt;
|[[BoxEasy]]&lt;br /&gt;
|[[Image:OS windows icon.gif]] &lt;br /&gt;
| Shareware&lt;br /&gt;
| Partial&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3 ogg wma m4a&lt;br /&gt;
| 1024x768 1280x1024&lt;br /&gt;
| Keyboard Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Freebox]]&lt;br /&gt;
|[[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Advanced&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| mp3 wma video MP3+G&lt;br /&gt;
| 800x600 1024x768&lt;br /&gt;
| Touchscreen  Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Jukebox Simulator]]&lt;br /&gt;
|[[Image:OS windows icon.gif]]&lt;br /&gt;
| Shareware&lt;br /&gt;
| Basic&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3&lt;br /&gt;
| 1024x768&lt;br /&gt;
| Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Nordbeat's Jukebox]]&lt;br /&gt;
|[[Image:OS windows icon.gif]]&lt;br /&gt;
| Shareware&lt;br /&gt;
| Partial&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]][[Image:Monitor vertical icon.gif]]&lt;br /&gt;
| WMP AMP&lt;br /&gt;
| 800x600 1024x768&lt;br /&gt;
| Touchscreen Keyboard Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[PartyTime Jukebox]]&lt;br /&gt;
|[[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| ''skinnable''&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| AMP&lt;br /&gt;
| 800x600 1024x768&lt;br /&gt;
| Touchscreen Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Silverjuke]]&lt;br /&gt;
|[[Image:OS DOS icon.gif]][[Image:OS windows icon.gif]] [[Image:OS linux icon.gif]]&lt;br /&gt;
| ''type''&lt;br /&gt;
| ''skinnable''&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]][[Image:Monitor vertical icon.gif]]&lt;br /&gt;
| ''media''&lt;br /&gt;
| ''resolutions''&lt;br /&gt;
| ''controls''&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[SK Jukebox]]&lt;br /&gt;
|[[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| No&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3&lt;br /&gt;
| Scaling&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt; (800x600+)&lt;br /&gt;
| Touchscreen Mouse Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[The JukeBox'er]]&lt;br /&gt;
|[[Image:OS windows icon.gif]]&lt;br /&gt;
| Shareware&lt;br /&gt;
| Full&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| BASS&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt; cdg video&lt;br /&gt;
| Scaling&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt; (1024x768)&lt;br /&gt;
| Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[The PC Jukebox]]&lt;br /&gt;
|[[Image:OS DOS icon.gif]][[Image:OS windows icon.gif]] [[Image:OS linux icon.gif]]&lt;br /&gt;
| ''type''&lt;br /&gt;
| ''skinnable''&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| ''media''&lt;br /&gt;
| ''resolutions''&lt;br /&gt;
| Mouse Touchscreen?&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Touchtone]]&lt;br /&gt;
|[[Image:OS DOS icon.gif]][[Image:OS windows icon.gif]] [[Image:OS linux icon.gif]]&lt;br /&gt;
| ''type''&lt;br /&gt;
| ''skinnable''&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]][[Image:Monitor vertical icon.gif]]&lt;br /&gt;
| ''media''&lt;br /&gt;
| ''resolutions''&lt;br /&gt;
| ''controls''&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[UncleT's Jukebox]]&lt;br /&gt;
|[[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Advanced&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]]&lt;br /&gt;
| mp3 txt video image&lt;br /&gt;
| 1024x768&lt;br /&gt;
| Mouse&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Virtual Music Jukebox]]&lt;br /&gt;
|[[Image:OS windows icon.gif]]&lt;br /&gt;
| Commercial&lt;br /&gt;
| Advanced&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]][[Image:Monitor dualscreen icon.gif]]&lt;br /&gt;
| mp3 wma wmv&lt;br /&gt;
| 800x600 1024x768&lt;br /&gt;
| Touchscreen Mouse Keyboard&lt;br /&gt;
&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|[[Wincab/Doscab]]&lt;br /&gt;
|[[Image:OS DOS icon.gif]][[Image:OS windows icon.gif]]&lt;br /&gt;
| Freeware&lt;br /&gt;
| Full&lt;br /&gt;
|[[Image:Monitor horizontal icon.gif]][[Image:Monitor vertical icon.gif]]&lt;br /&gt;
| mp3 ogg wav&lt;br /&gt;
| Any&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;&lt;br /&gt;
| Touchscreen Mouse Keyboard Joystick&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
'''1)''' Type:&lt;br /&gt;
* '''Freeware:''' is fully functional without payment.  A nag screen or ads are not considered a loss of functionality. &lt;br /&gt;
* '''Shareware:''' has limited functionality until payment is made. &lt;br /&gt;
* '''Commercial:''' software is fully functional for a limited time, after which payment must be made.&lt;br /&gt;
&lt;br /&gt;
'''2)''' Skinnable: &lt;br /&gt;
* '''Basic:  ''' change only the background and/or add album art&lt;br /&gt;
* '''Partial:  ''' change the background and/or album art, text size and/or color&lt;br /&gt;
* '''Advanced:  ''' change all artwork. The interface elements are locked in place, although buttons may be able to be resized&lt;br /&gt;
* '''Full:  ''' change all artwork, all interface elements can been changed (resize, moveable and resoulution).&lt;br /&gt;
&lt;br /&gt;
'''3)''' Media:&lt;br /&gt;
* If WMP ([http://www.microsoft.com/windows/windowsmedia/default.mspx Windows Media Player]) or AMP ([http://www.winamp.com Winamp]) are listed, that jukebox software is simply a frontend for those programs and handle all formats and codecs WMP/AMP support.  WMP/AMP are '''REQUIRED''' for the jukebox software to operate.&lt;br /&gt;
* If video and/or image is listed, the individual page will list all video or image file types supported&lt;br /&gt;
&lt;br /&gt;
'''4)''' Bass: &lt;br /&gt;
*An external engine, [http://www.un4seen.com Bass] supports a variety of extensions and is included with the software. Check the Bass website for a full listing of supported media types.&lt;br /&gt;
*&amp;quot;The JukeBox'er&amp;quot; use Bass engine, but it seen locked to wma, mp3, ogg, wav and cda extensions. It should been easy to support the rest of Bass extensions.&lt;br /&gt;
&lt;br /&gt;
'''5)''' Autoscaling:&lt;br /&gt;
* This software use autoscaling to the desktop resoulution or in a window (if Windowed mode is used). It never change the desktop resoulution.&lt;br /&gt;
&lt;br /&gt;
'''6)''' Any resoulution:&lt;br /&gt;
* This software have included skins from very low resoulutions to high resoulutions, so it very flexible.&lt;/div&gt;</summary>
		<author><name>Barcrest</name></author>
		
	</entry>
	<entry>
		<id>http://oldwiki.arcadecontrols.com/index.php?title=Jukebox_Software&amp;diff=2619</id>
		<title>Jukebox Software</title>
		<link rel="alternate" type="text/html" href="http://oldwiki.arcadecontrols.com/index.php?title=Jukebox_Software&amp;diff=2619"/>
		<updated>2006-03-15T10:32:50Z</updated>

		<summary type="html">&lt;p&gt;Barcrest: /* Freebox */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Cleanup}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.....please see [[Talk:Jukebox Software|the talk page]] for cleanup issues&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Jukebox software is designed to allow your PC to act and appear as a jukebox. Much like game emulators, there is a GUI to enhance this effect. Jukeboxes often require you to [[CD Ripping|rip your music]] from CD's to your PC. &lt;br /&gt;
&lt;br /&gt;
Software is available for several different operating systems and may or may not be freeware.  Often, if the software is freeware, a donation link is present on the homepage of the software to allow you to show your appreciation for the developer's efforts in creating software that frequently rivals and/or bests commercial software!&lt;br /&gt;
&lt;br /&gt;
Jukebox software may also be &amp;quot;skinnable&amp;quot;, meaning the appearance of the software may be changed by the end-user based on their preferences.  This may take the form of preset skins within the software, or the ability to develop and share skins with other end-users.&lt;br /&gt;
&lt;br /&gt;
Lastly, touchscreens may be utilized if the software supports it, and can be used to eliminate the need for buttons or a keyboard/mouse combination altogether.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Arcade Jukebox 8 ==&lt;br /&gt;
[[Image:Arcade_Jukebox_8.jpg|thumb|Picture of Arcade Jukebox 8|160px|right]]&lt;br /&gt;
&lt;br /&gt;
Created by Mark J. Schwartz, this software runs on Windows-based PC's, and is a singles-based software. Quite possibly, this may be the jukebox software that started it all.  Different &amp;quot;skins&amp;quot; can be utilized, although creation of new skins by the end-user may or may not be allowed at this time. Freeware&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
'''Homepage:'''&amp;lt;br&amp;gt;&lt;br /&gt;
http://www.arcadejukebox.net&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Arcade Music Box 2 ==&lt;br /&gt;
[[Image:Arcade_Music_Box.jpg|thumb|Picture of Arcade Music Box|160px|right]]&lt;br /&gt;
By Space Fractal. Requires Windows; Designed for MAME cabinets running MAMEWah. Supports vertical monitor orientations. Has a sort of HTPC look to the interface. Will run in low resolutions with appropriate skins. Freeware with a donation (€15) link available.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
'''Homepage:'''&amp;lt;br&amp;gt;&lt;br /&gt;
http://www.arcademusicbox.com&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Freebox ==&lt;br /&gt;
&lt;br /&gt;
[[Image:freebox_jukebox.jpg|thumb|Picture of Freebox|160px|right]]&lt;br /&gt;
By Barry Barcrest. Requires Windows; A skinnable album-style touchscreen jukebox. Includes search abilities via an on-screen keyboard. Low system reuqirements and support for very large libraries. Also supports Video, Karaoke and WMA files as an addition to MP3's. Freeware.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
'''Homepage:'''&amp;lt;br&amp;gt;&lt;br /&gt;
http://www.freeboxjukebox.com&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== SK Jukebox ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Sk_Jukebox.jpg|thumb|Picture of SK Jukebox|160px|right]]&lt;br /&gt;
By Salmonking. Requires Windows; A bar-style album jukebox. Very professional looking, with animated page changes. One of the more popular jukeboxes among the MAME community. Freeware. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
'''Homepage:'''&amp;lt;br&amp;gt;&lt;br /&gt;
http://www.pleasuredome.org.uk/~salmonking/&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== UncleT's Jukebox ==&lt;br /&gt;
&lt;br /&gt;
[[Image:UncleTsJukebox.jpg|thumb|Picture of UncleT's Jukebox|160px|right]]&lt;br /&gt;
By UncleT. Require Windows.  A mix of a media player and an album-oriented jukebox. Many party-oriented features, including video support. Requires Windows Media Player 9 or higher and a minimum resolution of 1024x768. No specific license mentioned.  Freeware.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
'''Homepage:'''&amp;lt;br&amp;gt;&lt;br /&gt;
http://unclet.arcadecontrols.com/Jukebox/&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Wincab/Doscab ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Wincab.jpg|thumb|Picture of Wincab/Doscab|160px|right]]&lt;br /&gt;
By Chris. Requires DOS or Windows; DOSCab/WinCab Jukebox supports both MP3 and OGG Vorbis, designed for use in DOS or Windows based MAME cabinets or as a standalone home jukebox.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;'''Homepage:'''&amp;lt;br&amp;gt;&lt;br /&gt;
http://webpages.charter.net/celamantia/jukebox/&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;/&amp;gt;&lt;/div&gt;</summary>
		<author><name>Barcrest</name></author>
		
	</entry>
	<entry>
		<id>http://oldwiki.arcadecontrols.com/index.php?title=File:Fink50sdinerweb.jpg&amp;diff=2618</id>
		<title>File:Fink50sdinerweb.jpg</title>
		<link rel="alternate" type="text/html" href="http://oldwiki.arcadecontrols.com/index.php?title=File:Fink50sdinerweb.jpg&amp;diff=2618"/>
		<updated>2006-03-15T10:27:13Z</updated>

		<summary type="html">&lt;p&gt;Barcrest: Freebox Jukebox with Diner Skin&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Freebox Jukebox with Diner Skin&lt;/div&gt;</summary>
		<author><name>Barcrest</name></author>
		
	</entry>
</feed>