<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>KaraokeCrime &#187; vlc</title>
	<atom:link href="http://www.karaokecrime.com/tag/vlc/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.karaokecrime.com</link>
	<description>Thinking big about karaoke.  Democratizing tools, breaking rules.</description>
	<lastBuildDate>Wed, 08 Jun 2011 13:20:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to unzip a ton of karaoke tracks (Mac / Linux)</title>
		<link>http://www.karaokecrime.com/2009/01/how-to-unzip-a-ton-of-karaoke-tracks-mac-linux/</link>
		<comments>http://www.karaokecrime.com/2009/01/how-to-unzip-a-ton-of-karaoke-tracks-mac-linux/#comments</comments>
		<pubDate>Tue, 13 Jan 2009 16:53:13 +0000</pubDate>
		<dc:creator>djkj</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[advice]]></category>
		<category><![CDATA[commandline]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[unix]]></category>
		<category><![CDATA[vlc]]></category>
		<category><![CDATA[winamp]]></category>

		<guid isPermaLink="false">http://www.karaokecrime.com/2009/01/how-to-unzip-a-ton-of-karaoke-tracks-mac-linux/</guid>
		<description><![CDATA[

Karaoke players (like Winamp or VLC) can&#8217;t read inside .zip files, so you need to unzip all your karaoke to use them. Turns out, if you have a big library there are just too many files to use the unix wildcard *.
And you get an error like: -bash: /bin/ls: Argument list too long
Here&#8217;s how to [...]]]></description>
			<content:encoded><![CDATA[<p>
<img src="http://www.karaokecrime.com/wp-content/uploads/2009/01/200901131151.jpg" width="500" height="409" alt="200901131151.jpg" title="200901131151.jpg" /></p>
<p>Karaoke players (like <a href="http://www.karaokecrime.com/2009/01/best-karaoke-software-for-windows/">Winamp</a> or <a href="http://videolan.org/vlc">VLC</a>) can&#8217;t read inside .zip files, so you need to unzip all your karaoke to use them. Turns out, if you have a big library there are just too many files to use the <a href="http://unix.t-a-y-l-o-r.com/USwild.html">unix wildcard *.</a></p>
<p>And you get an error like: <em>-bash: /bin/ls: Argument list too long</em></p>
<p>Here&#8217;s how to move your huge library of karaoke songs to one folder, and unzip them. It&#8217;s well worth the trouble to be able to use Winamp (which is super-simple and solid for karaoke nights).</p>
<p><span id="more-153"></span>
<p>Open up Terminal. Type &#8220;cd Music/Karaoke/CDG&#8221; or whatever to get into your karaoke folder.</p>
<p><strong>To copy to one folder:</strong></p>
<blockquote>
<p>mkdir ../onefolder/</p>
<p>find . -exec cp &#8220;{}&#8221; ../onefolder \; -print</p>
</blockquote>
<p><strong>To unzip all:</strong></p>
<blockquote><p>
  cd ../onefolder/
</p></blockquote>
<blockquote><p>
  find . -exec unzip -o &#8220;{}&#8221; \; -print
</p></blockquote>
<p><strong>To delete all (careful with this! If you&#8217;re not careful you could delete your entire hard drive!)</strong></p>
<blockquote><p>
  find ../onefolder/ -name &#8220;*.zip&#8221; -exec rm &#8220;{}&#8221; \; -print
</p></blockquote>
<p>If you don&#8217;t understand how terminal commands work, just use Finder and Spotlight to do the last step.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.karaokecrime.com/2009/01/how-to-unzip-a-ton-of-karaoke-tracks-mac-linux/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Free, open source karaoke software</title>
		<link>http://www.karaokecrime.com/2009/01/free-open-source-karaoke-software/</link>
		<comments>http://www.karaokecrime.com/2009/01/free-open-source-karaoke-software/#comments</comments>
		<pubDate>Thu, 01 Jan 2009 23:40:40 +0000</pubDate>
		<dc:creator>djkj</dc:creator>
				<category><![CDATA[Karaoke Software]]></category>
		<category><![CDATA[cd]]></category>
		<category><![CDATA[cdg players]]></category>
		<category><![CDATA[foss]]></category>
		<category><![CDATA[free software]]></category>
		<category><![CDATA[gpl]]></category>
		<category><![CDATA[pykaraoke]]></category>
		<category><![CDATA[vlc]]></category>

		<guid isPermaLink="false">http://www.karaokecrime.com/?p=12</guid>
		<description><![CDATA[If you want to do karaoke in linux, or using only free software, you&#8217;ve got two options, PyKaraoke and VLC.
For running a karaoke night, PyKaraoke is better. But you probably have VLC already, and it&#8217;s available for Mac.

PyKaraoke
PyKaraoke is a super simple karaoke client written in Python. There&#8217;s an installer for Windows but on Mac [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to do karaoke in linux, or using only <a href="http://en.wikipedia.org/wiki/Free_software">free software</a>, you&#8217;ve got two options, <a href="http://www.kibosh.org/pykaraoke/">PyKaraoke</a> and <a href="http://www.videolan.org/vlc/">VLC</a>.</p>
<p>For running a karaoke night, PyKaraoke is better. But you probably have VLC already, and it&#8217;s available for Mac.</p>
<p><span id="more-12"></span>
<p><strong>PyKaraoke</strong></p>
<p><a href="http://www.kibosh.org/pykaraoke/">PyKaraoke</a> is a super simple karaoke client written in Python. There&#8217;s an <a href="http://www.kibosh.org/pykaraoke/downloads.php">installer for Windows</a> but on Mac you have to build it yourself, which isn&#8217;t worth trying. On linux just install it however you install stuff; it&#8217;s packaged for ubuntu.</p>
<p>The interface is aggressively simple, with the perfect two-pane interface. PyKaraoke will look inside zip files, making it more convenient to maintain than Winamp (see &#8220;Best free karaoke software&#8221;). It doesn&#8217;t feel as fast and indestructible as Winamp, and I&#8217;m sure it has more bugs. But it does everything I need, and the developers are nice and responsive if you have a problem. Thanks to its simplicity, I&#8217;d use it over KaraFun any day.</p>
<p>Also, PyKaraoke plays .kar files, so if you&#8217;re planning on using those, it&#8217;s a better bet than Winamp, where .kar playback uses something other than the CDG plugin.</p>
<p>
<img src="http://www.karaokecrime.com/wp-content/uploads/2009/01/200901011757.jpg" width="298" height="223" alt="200901011757.jpg" /></p>
<p><strong><br /></strong></p>
<p><strong>VLC</strong></p>
<p><a href="http://www.videolan.org/vlc/">VLC</a> is the fuck-all-yall-ima-play-anything media player made by French university students. Through the magic of open source software, some <a href="http://forum.videolan.org/viewtopic.php?f=7&amp;t=3923">pleading on the VLC forum</a> piqued a programmer&#8217;s interest and they added it to the latest release. VLC has an okay system for managing playlists and libraries, but it doesn&#8217;t look inside zip files. VLC doesn&#8217;t play .kar files (MIDI files with timed karaoke text) but it plays every video format under the sun.</p>
<p>
<img src="http://www.karaokecrime.com/wp-content/uploads/2009/01/200901011833.jpg" width="323" height="287" alt="200901011833.jpg" /></p>
<p>I wouldn&#8217;t use this to run a karaoke night. But it&#8217;s available for <a href="http://www.videolan.org/vlc/download-macosx.html">Mac</a>, <a href="http://www.videolan.org/vlc/download-windows.html">Windows</a>, any flavor of Linux, and you probably use it already anyway! (If not, you should!)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.karaokecrime.com/2009/01/free-open-source-karaoke-software/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

