<?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>Paper Jammed &#187; Music</title>
	<atom:link href="http://paperjammed.com/tag/music/feed/" rel="self" type="application/rss+xml" />
	<link>http://paperjammed.com</link>
	<description>Has paper taken over your life?</description>
	<lastBuildDate>Fri, 06 May 2011 00:09:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Export iTunes Playlists to a non-iTunes World</title>
		<link>http://paperjammed.com/2011/03/01/export-itunes-playlists-to-a-non-itunes-world/</link>
		<comments>http://paperjammed.com/2011/03/01/export-itunes-playlists-to-a-non-itunes-world/#comments</comments>
		<pubDate>Wed, 02 Mar 2011 01:42:50 +0000</pubDate>
		<dc:creator>Tad</dc:creator>
				<category><![CDATA[Geekery]]></category>
		<category><![CDATA[Workflow]]></category>
		<category><![CDATA[Files and Folders]]></category>
		<category><![CDATA[Macintosh]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://paperjammed.com/?p=1148</guid>
		<description><![CDATA[Do you want to automatically publish iTunes playlists to a non-iTunes music library? This free application will convert iTunes playlists to m3u files, transform paths to match your external master library, and then copy the playlists over the network. It will even ping a Squeezebox server to force a playlist refresh.]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-1165" title="iStock_000000260938XSmall" src="http://paperjammed.com/wp-content/uploads/2011/03/iStock_000000260938XSmall-300x225.jpg" alt="" width="300" height="225" />I freely admit my dislike for iTunes—it&#8217;s a black box where you toss your music, giving full control over your library to Apple.<br />
The problem is that sometimes you might want to manage your library in a way that Apple never intended, and then things become challenging. iPods, iPads, and iPhones pretty much force us to use iTunes, so why not figure out some way to lessen the pain?</p>
<p>I like the playlist tools that iTunes provides, and I find it very convenient to create Smart Playlists or to create Genius lists. However, I want to keep my Master Library of music elsewhere, far from iTunes. Wouldn&#8217;t it be great if I could share these playlists on my home network in a completely nondenominational format? Wouldn&#8217;t it be nice if my Squeezebox server would have those same playlists available? And wouldn&#8217;t it be spectacular if those playlists would magically appear on a network drive whenever the lists change in iTunes?</p>
<p>Read on for details on how I accomplished this and to download the free utility I wrote to handle this task.<span id="more-1148"></span></p>
<p><strong>The Problem To Be Solved</strong></p>
<p>In order to understand what this application does, you need to know what I was trying to accomplish.</p>
<p>I have a NAS drive on my network that contains my Master Library of mp3 files. The files on this drive are located under <strong>/media/music</strong>.</p>
<p>I have a <a href="http://en.wikipedia.org/wiki/Squeezebox_Server">Squeezebox server</a>, running on an Ubuntu machine. This server is used by Squeezebox devices to play music anywhere in my house. It holds a copy of the Master Library, located under <strong>/srv/squeezebox/music</strong></p>
<p>What I want: I want my Mac to magically push <a href="http://en.wikipedia.org/wiki/M3U">proper m3u playlists</a> to the Squeezebox server—the Squeezebox server understands m3u playlists.</p>
<p>What I don&#8217;t want: Squeezebox supports direct access to iTunes. But I don&#8217;t want to do this because I don&#8217;t want to have to run Squeezebox on my Mac. Why did I bother setting up a dedicated <em>server</em> if I have to keep my Mac running?</p>
<p>Why is this challenging: Even if I could point Squeezebox to the bare iTunes database file, all of the file paths are wrong. My master library might have a song at <strong>&#8230;/artist/album_name/disc 1/</strong>, while iTunes might put it at <strong>&#8230;/Artist/Album Name/</strong>, omitting the <strong>disc 1</strong> folder and reformatting names.</p>
<p><strong>My Solution</strong></p>
<p>I wrote a small command line application in Perl that supports the following:</p>
<ul>
<li>Paths to songs in Apple&#8217;s mysterious black box are converted to nice paths to the same songs in my golden Master Library.</li>
<li>Even if a song name changes or a folder path changes, the original master copy is found.</li>
<li>All playlists are generated in m3u format.</li>
<li>Smart playlists and Genius playlists are supported.</li>
<li>The generated playlists are automatically moved to either a local directory or a remote server, using <strong><a href="http://en.wikipedia.org/wiki/Secure_copy">scp</a></strong>.</li>
<li>Network shares are automatically mounted at beginning of process and unmounted at end of process.</li>
<li>You can provide a file path to be prepended to all playlist entries.</li>
<li>Exits early if the iTunes library has not changed since the last run.</li>
<li>Supports exclusion patterns in order to skip some playlists.</li>
<li>A local Squeezebox server can be automatically pinged to cause it to refresh playlists.</li>
</ul>
<p>Here is the <a title="plmapper man page" href="http://paperjammed.com/plmapper.html">full documentation</a> for the Playlist Mapper application.</p>
<p><img class="alignnone size-full wp-image-1157" title="20110301-squeezebox" src="http://paperjammed.com/wp-content/uploads/2011/03/20110301-squeezebox.png" alt="" width="550" height="471" /></p>
<p><strong>Basic Installation</strong></p>
<p>Please note that this is a command line program. Some day I might figure out how to make a pretty GUI installer for it, but for now you have to get your hands a little dirty in order to install and configure.</p>
<p>Download the application here: <a href="http://paperjammed.com/wp-content/uploads/2011/03/plmapper.zip">plmapper</a></p>
<p>This is a Perl script that uses many standard utilities already present in a Snow Leopard OS X installation. You should not need anything other than the <strong>plmapper</strong> file itself.</p>
<p>Unzip the file and place <strong>plmapper</strong> in your home directory.</p>
<p>Open a Terminal window and make the script executable:</p>
<pre>chmod u+x plmapper</pre>
<p>Read the man page for the application by doing this:</p>
<pre>./plmapper --man</pre>
<p>There are many command line arguments, but you don&#8217;t need to worry about most of them. Create a file called <strong>plmapper.config</strong> in your home directory and put any arguments you need in that file, as name-value pairs.</p>
<p>Example:</p>
<pre>itunes=/Users/Bozo/Music/iTunes Music Library.xml
dest=/Users/Bozo/Desktop
library=/Volumes/media/music</pre>
<p>Once you have added all of the configuration settings, go ahead and run it:</p>
<pre>./plmapper</pre>
<p>You should see plenty of status information go by as each playlist is processed.</p>
<p><strong>Making it Run Automatically</strong></p>
<p>There are better ways of doing this, but I&#8217;m a command-line commando, so I simply added the following <strong><a href="http://developer.apple.com/library/mac/#documentation/Darwin/Reference/ManPages/man8/cron.8.html">cron</a></strong> entry (see <strong><a href="http://developer.apple.com/library/mac/#documentation/Darwin/Reference/ManPages/man1/crontab.1.html">crontab</a></strong>):</p>
<pre>0 22 * * * /Users/Me/bin/plmapper &gt;/Users/Me/plmapper.log 2&gt;&amp;1</pre>
<p>This causes the plmapper program to run once daily at 10pm, logging output to a file called <strong>plmapper.log</strong> in my home directory.</p>
<p>Of course, this can be tweaked to taste; it doesn&#8217;t matter if you run it hourly since the app skips any heavy lifting once it sees that the iTunes library file hasn&#8217;t been touched.</p>
<p><strong>How It Works</strong></p>
<p>The application performs the following basic steps:</p>
<ul>
<li>Mounts network shares using <strong><a href="http://developer.apple.com/library/mac/#documentation/Darwin/Reference/ManPages/man8/mount_smbfs.8.html">mount_smbfs</a></strong>.</li>
<li>All music files in the external non-iTunes Master Library are listed in an internal data structure, sorted by file size.<br />
This allows us to quickly find a &#8220;short list&#8221; of possible candidate files that match a given source file. This works because mp3 files have fairly random sizes.</li>
<li>The iTunes database XML file is processed using an XSLT transformation to generate a set of basic <strong>m3u</strong> playlist files. The <strong><a href="http://developer.apple.com/library/mac/#documentation/Darwin/Reference/ManPages/man1/xsltproc.1.html">xsltproc</a></strong> command line utility is used to run the transformation.</li>
<li>All paths in the playlists are converted from escaped URI syntax (e.g. %20 for space) to regular UTF-8 characters.</li>
<li>Each path is resolved to a single music file (i.e. an mp3 file) in the Master Library.<br />
This is done by obtaining the size of the iTunes version of the file and then looking this up in the internal list created in the first step.</li>
<li>Once a short list of candidates is found, the first few thousand bytes of each file are compared until a match is found.The risks of choosing the wrong file are low: all that will happen is that a song might be switched in the playlist accidentally. As such, it isn&#8217;t worth scanning the full file to ensure they are exact matches.This algorithm works quite well, and can detect music files that have been renamed and moved around.</li>
</ul>
<ul>
<li>The playlist files are now converted from <strong>utf8mac</strong> to <strong>utf8</strong> using the <strong><a href="http://developer.apple.com/library/mac/#documentation/Darwin/Reference/ManPages/man1/iconv.1.html">iconv</a></strong> command line utility.This process collapses wide UTF-8 characters, consisting of a letter plus an accent add-on, into their single-letter equivalents. This process is known as Unicode Normalization, and this tool uses <strong>Normalization form C</strong>: Compatibility decompisitiion followed by canonical composition.</li>
<li>Playlist files are now copied to a local or remote directory, either as direct file copy or via the <strong><a href="http://developer.apple.com/library/mac/#documentation/Darwin/Reference/ManPages/man1/scp.1.html">scp</a></strong> utility.</li>
<li>Optionally, a special call is made to a specified Squeezebox server to tell the server to refresh all playlists.</li>
<li>Any mounted shares that were mounted by this process are unmounted via <strong><a href="http://developer.apple.com/library/mac/#documentation/Darwin/Reference/ManPages/man8/diskutil.8.html">diskutil</a> unmount</strong>.</li>
</ul>
<p><strong>Limitations</strong></p>
<ul>
<li>Nested folders of playlists currently act funny. The lists will come over, but you may get two lists. You can use the exclude option to prevent this.</li>
<li>Songs with non-ASCII characters in the file name might not be recognized by all players. Squeezebox has a problem with many special characters—I tested this by adding songs like <strong>Águas de Março.mp3</strong> using Squeezebox&#8217;s own playlist editor, and when I reloaded the list the songs were not there. This is a bug in Squeezebox server.</li>
<li>Occasionally the file matching algorithm might pick the wrong song. In an effort to speed up processing, the program only looks at the first few thousand bytes of files when comparing. It isn&#8217;t a big deal if the wrong file is added to a playlist, is it?</li>
</ul>
<p><strong>Closing Thoughts</strong></p>
<p>As often happens, this program was written because I had an itch that needed to be scratched. Now that I went through all of the hassles, I hope others can benefit.</p>
<p>Through good fortune, I am working in a Macintosh environment. This means that all of the important tools were already present on my machine: <strong>perl</strong>, <strong>xsltproc</strong>; <strong>mount</strong>; <strong>iconv</strong>; <strong>scp</strong>; <strong>nc</strong>; and others. If I were writing this for a PC, I probably would have written the whole thing in Java—a more familiar language to me, but one that comes with its own configuration issues.</p>
<p>I plan on updating plmapper over time, and if anyone has suggestions, please let me know.</p>
<p>And if a Perl guru wants to tell me my Perl skillz are subpar, go right ahead—but be gentle, and let me know how to improve the app.</p>
<p>[Update]</p>
<p>Fixed a couple of bugs related to path and &#8220;qx&#8221; calls, thanks to Chris. Updated version <a href="http://paperjammed.com/wp-content/uploads/2011/03/plmapper.zip">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://paperjammed.com/2011/03/01/export-itunes-playlists-to-a-non-itunes-world/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Never say Never, or How I bought an iPad five minutes after walking into the Apple store</title>
		<link>http://paperjammed.com/2010/04/16/never-say-never-or-how-i-bought-an-ipad-five-minutes-after-walking-into-the-apple-store/</link>
		<comments>http://paperjammed.com/2010/04/16/never-say-never-or-how-i-bought-an-ipad-five-minutes-after-walking-into-the-apple-store/#comments</comments>
		<pubDate>Sat, 17 Apr 2010 01:51:06 +0000</pubDate>
		<dc:creator>Tad</dc:creator>
				<category><![CDATA[Paperless Life]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Portable Devices]]></category>
		<category><![CDATA[Rants]]></category>
		<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://paperjammed.com/?p=973</guid>
		<description><![CDATA[I have to admit that I mocked the device from the outset. I sort of chuckled as I said &#8220;Boy, they really hit the ball out of the park with the iPhone, but this thing doesn&#8217;t know whether it is a laptop or a iPod Touch. Why would I want one?&#8221; I have a nice [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-976" title="iStock Photo" src="http://paperjammed.com/wp-content/uploads/2010/04/iStock_000011861926XSmall-241x300.jpg" alt="" width="241" height="300" />I have to admit that I mocked the device from the outset. I sort of chuckled as I said &#8220;Boy, they really hit the ball out of the park with the iPhone, but this thing doesn&#8217;t know whether it is a laptop or a iPod Touch. Why would I want one?&#8221;</p>
<p>I have a nice iMac that I use daily; my wife has a MacBook Pro which she has taken quite a liking to. And I carry around my iPhone (she really couldn&#8217;t care less about smart phones). It looks like these devices all converge on and overlap the territory of the iPad. Again, what&#8217;s the point?</p>
<p>I walked into the Apple store last Monday expecting to enjoy a few minutes of playing around with an over-sized iPod Touch, and then walk out. Then it hit me: they did it again—they created a device, akin to the iPhone, that is so slick and easy to use that you must handle one and play with its features before you can truly understand.<span id="more-973"></span></p>
<p>Alex Payne put it quite nicely in his blog:</p>
<p style="padding-left: 30px;">&#8220;Human-computer interaction has found a sweet spot on the iPad. It’s all the power of desktop computing, plus the valuable constraints of mobile devices, minus the limitations of both. It just makes sense. Use one for a couple hours and your desktop or laptop will seem clumsy, arbitrary, and bewildering. It is, simply, how (most) computing should be.</p>
<p style="padding-left: 30px;">You can be as cooly aloof as you like about the device, but it won’t change the fact that it’s a fundamental step forward in computing. &#8230; [I]f you work in tech, you should spend some time with an iPad. If it doesn’t change the way you think about what you do, you’re either a genius or an idiot.&#8221;</p>
<p>— <a href="http://al3x.net/2010/04/05/ipad-openness-moderates.html">The Moderate’s Position on iPad Openness</a></p>
<p>He&#8217;s right, you know.</p>
<p>As soon as I held the device in my hands it was clear why this device has earned its own new niche that it was wedged into, between smart phones and laptops. The touch interaction that was so revolutionary with the iPhone has become more palpable, and more natural. I find myself gently sweeping my hand across the screen as I read the newspaper, watching the words gently glide by.</p>
<p>It really sank in when I looked at how my wife uses her MacBook Pro. She lays in bed with the machine in her lap, listening with headphones, as she goes through her email, listens to iTunes, searches out videos of old friends in Brazil posted on YouTube, and does some Google searches for whatever is on her mind. Meanwhile, the machine&#8217;s legendary thigh-roasting fans are running and she fidgets and fumbles with its bulk.</p>
<p>Everything she does with her MacBook is better with the iPad. It is more like a TV than a computer in the sense that you simply turn it on and choose what you want to do, with no knowledge of its internals. There are no fans blasting searing heat. The device is not cumbersome; she can curl up with it like a good book.</p>
<p>And it does Netflix.</p>
<p><strong>What more could you want?</strong></p>
<p>Well, there are few things I see right away that I would like, but for the most part I want more proper iPad apps. Old iPhone apps offer two equally unpleasant views: either you use the app in a horribly cropped iPhone-sized letterbox view, or the app is displayed in grotty pixelated full screen mode. Fortunately, folks are coming out with new iPad apps every day, some are even free upgrades if you own an app on the iPhone.</p>
<p>The first problem my wife will encounter (when I finally give her my iPad, as promised) is that she will want to print something from it. Printing doesn&#8217;t seem to be in the iPad&#8217;s repertoire. I have to admit that printing is a bit of a heavyweight for such a handy dandy device. She will still look at me and say &#8220;But it should be able to print.&#8221; And she&#8217;ll be right.</p>
<p>The second real issue I have with it is file management. There just is no simple way to move files onto an iPad: all file management is kludgy at best, usually involving iTunes. This was not so bad with the iPhone because our expectations are lower; after all, it is a cellphone first and foremost.</p>
<p>But the iPad is different. Its name screams &#8220;Documents&#8221; and begs us to flip pages with our bare hands. Why do all document transfers have to involve web browsers, email, and iTunes?</p>
<p>There are many different ways file management could be handled, but the way iPhones and iPads deal with documents and files is so un-Apple. This little bit of tarnish distracts from the beautiful polish of the device.</p>
<p><strong>But I love it anyway</strong></p>
<p>I can&#8217;t really criticize much more about my iPad. It does exactly what someone like my wife needs with little hassle, like a handheld flat-screen TV with cool features.</p>
<p>In other words, the iPad excels at being a computer for entertainment.</p>
<p>Check out some of the (currently) free newspaper apps. If you like Popular Science, drop a five-spot on their interactive magazine. You&#8217;ll like it.</p>
<p>And did I mention that it does Netflix?</p>
]]></content:encoded>
			<wfw:commentRss>http://paperjammed.com/2010/04/16/never-say-never-or-how-i-bought-an-ipad-five-minutes-after-walking-into-the-apple-store/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Showin&#8217; your chops on those piles of sheet music</title>
		<link>http://paperjammed.com/2010/03/29/showin-your-chops-on-those-piles-of-sheet-music/</link>
		<comments>http://paperjammed.com/2010/03/29/showin-your-chops-on-those-piles-of-sheet-music/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 00:34:23 +0000</pubDate>
		<dc:creator>Tad</dc:creator>
				<category><![CDATA[Paperless Life]]></category>
		<category><![CDATA[Scanning]]></category>
		<category><![CDATA[Searching and Indexing]]></category>
		<category><![CDATA[Files and Folders]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Organization]]></category>
		<category><![CDATA[PDF]]></category>

		<guid isPermaLink="false">http://paperjammed.com/?p=957</guid>
		<description><![CDATA[Show me a musician and I&#8217;ll show you someone who has at least a three foot stack of sheet music squirreled away somewhere. My situation is worse—both my wife and I are musicians, to one degree or another. Throw in the fact that she is a music teacher and you can imagine just how many [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-959" title="Hollow Body" src="http://paperjammed.com/wp-content/uploads/2010/03/iStock_000000536065XSmall-300x257.jpg" alt="iStockphoto" width="300" height="257" />Show me a musician and I&#8217;ll show you someone who has at least a three foot stack of sheet music squirreled away somewhere.</p>
<p>My situation is worse—both my wife and I are musicians, to one degree or another. Throw in the fact that she is a music teacher and you can imagine just how many pages of sheet music there are filling bins and flexing cheap shelving in my house.</p>
<p><strong>What do I have and Where is it?</strong></p>
<p>The biggest problem we face is knowing what we have and where it is. I have hundreds and hundreds of pages of classical and jazz guitar sheet music, but if I need to find Villalobos&#8217; <em>Choros no. 1</em>, where do I look?<span id="more-957"></span></p>
<p>Shortly after I bought my ScanSnap, I began scanning in all of my sheet music (I have left much of my wife&#8217;s collection untouched—I&#8217;m sure you&#8217;ll understand). In most cases, I simply hacked the spine off of the original book and fed the sheets through the scanner. Now, I have less paper in the house and my music is searchable.</p>
<p>In most cases I didn&#8217;t bother to run OCR on the documents since there is little in the way of printed words on most sheet music that is worth indexing. I did take care to name the files well.</p>
<p>If you ever hope to find your music on your computer, make sure you include at least the composer/artist and song title in the file name.</p>
<p><strong>Is this really cutting down on paper?</strong></p>
<p>Whenever I find what I&#8217;m looking for I might play it directly off of the computer screen, but it is more likely that I&#8217;ll print it out. Doesn&#8217;t this kind of negate the idea of removing paper from my home? Not really. Think about it—most sheet music is never played. We have books with hundreds of songs in them and we play only  a handful. That&#8217;s just the way it is.</p>
<p>The fact that I print out five or ten pages in a month does not negate the many hundreds of pages that were scanned and then recycled.</p>
<p><strong>Great for Music Lessons</strong></p>
<p>I started taking jazz lessons again a month or two back, and my teacher gave me some lead sheets, with all kinds of useful annotations on them. As soon as I was home, I scanned those babies in, so I would not risk losing the valuable information. I also went through all of my notes from prior lessons and scanned them in as well. These kinds of things are precisely the sorts of paper that tend to get lost in some mismash of unsorted music.</p>
<p>Now, I can type in &#8220;Four&#8221; in my favorite PDF library application and find the lead sheet for Miles Davis&#8217; <em>Four</em>.</p>
<p><img class="alignnone size-full wp-image-958" title="20100329-yep" src="http://paperjammed.com/wp-content/uploads/2010/03/20100329-yep.png" alt="" width="535" height="404" /></p>
<p>Maybe you don&#8217;t have that many notebooks full of music lesson notes, but when you have been trying (poorly) to learn for as many years as I have, those notebooks begin to proliferate. Just scan them all in, give them some good filenames, add some keywords to help, and you&#8217;re in business.</p>
<p><strong>What about copyright?</strong></p>
<p>It seems that the jury is still out on digitizing works you own. There&#8217;s <a href="http://www.wired.com/gadgetlab/2009/12/diy-book-scanner/">one fellow who made a right awesome device</a> for scanning in textbooks in minutes, by photographing the pages. That guy&#8217;s machine has spurred much debate about whether or not you have the right to digitize your own stuff.</p>
<p>On the one hand, you bought the book and paid for it, so it would seem that fair use covers this; on the other hand, publishers are eager to monetize digital media, reselling the same works to you if they can.</p>
<p>So, is Daniel Reetz&#8217;s butt-kickin&#8217; book scanner legal?</p>
<p style="padding-left: 30px;">That would depend on who you talk to, says Pamela Samuelson, a professor at University of California at Berkeley, who specializes in digital-copyright law. Trade publishers are almost certain to cry copyright infringement, she says, though it may not necessarily be the case.</p>
<p style="padding-left: 30px;">Google was recently forced to pay $125 million to settle with angry book publishers and authors who claimed copyright infringement as a result of the search giant’s book-scanning project.</p>
<p style="padding-left: 30px;">But not so individual users who already own the book, says Samuelson. If you scan a book that you have already purchased, it is “fine, and fair use,” she says. “Personal-use copying should be deemed to be fair, unless there is a demonstrable showing of harm to the market for the copyright at work,” says Samuelson.</p>
<p style="padding-left: 30px;">(<a href="http://www.wired.com/gadgetlab/2009/12/diy-book-scanner/">Source</a>: wired.com)</p>
<p>Here&#8217;s another take on this:</p>
<p style="padding-left: 30px;">Question</p>
<p style="padding-left: 60px;">I bought a book for school, can I make a copy of the book for my own use to write on so I don&#8217;t write in the book and can get my money back when I return the book to the campus store.</p>
<p style="padding-left: 30px;">Accepted Answer</p>
<p style="padding-left: 60px;">You have the right to make a copy of the book you purchased as long as you are using the copy for your personal use. The copyright laws merely prevent you from making copies to sell or distribute.</p>
<p style="padding-left: 30px;">(<a href="http://www.justanswer.com/questions/2heyq-i-bought-a-book-for-school-can-i-make-a-copy-of-the-book-for">Source</a>: justanswer.com)</p>
<p>Of course, if you go passing your PDF documents around to all of your friends, all bets are off.</p>
<p><strong>Final thoughts</strong><br />
Music is a hobby that seems to accumulate great stacks of paper, but these music sheets are peculiar in that you only need one or two out of every hundred. Why not digitize the whole lot and keep those book shelves from sagging?</p>
]]></content:encoded>
			<wfw:commentRss>http://paperjammed.com/2010/03/29/showin-your-chops-on-those-piles-of-sheet-music/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

