<?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>Xoke.org &#187; Creative Commons</title>
	<atom:link href="http://xoke.org/category/creative-commons/feed/" rel="self" type="application/rss+xml" />
	<link>http://xoke.org</link>
	<description>Xoke&#039;s Small Area of the Net</description>
	<lastBuildDate>Thu, 19 Aug 2010 08:20:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Too Many Podcasts, Too Little Time&#8230;</title>
		<link>http://xoke.org/2009/09/28/too-many-podcasts-too-little-time/</link>
		<comments>http://xoke.org/2009/09/28/too-many-podcasts-too-little-time/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 17:39:10 +0000</pubDate>
		<dc:creator>Xoke</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Creative Commons]]></category>
		<category><![CDATA[Podcasts]]></category>

		<guid isPermaLink="false">http://xoke.org/?p=279</guid>
		<description><![CDATA[No I don&#8217;t want to stop listening to some of my podcasts, but seriously TLLTs takes forever to catch up on! So I&#8217;ve been reading up on / talking to people about speeding up the playback of podcasts.  You can play them through mplayer (CLI version) and press ] to increase the speed, but the [...]]]></description>
			<content:encoded><![CDATA[<p>No I don&#8217;t want to stop listening to some of my podcasts, but seriously TLLTs takes forever to catch up on!</p>
<p>So I&#8217;ve been reading up on / talking to people about speeding up the playback of podcasts.  You can play them through mplayer (CLI version) and press ] to increase the speed, but the people end up sounding like chipmunks.  Whilst this may be an improvement for Dann, other people sound terrible this way.</p>
<p>SoX is a cool command that will sort this out for you.  You can increase the &#8216;tempo&#8217; without adjusting the pitch.  I want to have a script to amend this that can be called after bashpodder so it&#8217;s a one-stop-shop to fix everything.</p>
<p>To install SoX (and let it handle MP3 files):</p>
<pre style="padding-left: 30px;">sudo apt-get install sox libsox-fmt-mp3</pre>
<p>So far I have:</p>
<pre style="padding-left: 30px;">#!/bin/bash
##################################################
#
#                       LICENSE
#
##################################################
#
# Xoke's Speed Increase script for Podcasts
# Copyright (C) 2009 Xoke
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details &lt;http://www.gnu.org/licenses/&gt;.

# I added a bit of a version control section here to mark any changes to the code
##################################################
#
#                       Versions
#
##################################################
#
# Ver    Date            Author        Description
# ------------------------------------------------------------------------------------
# 0.1        Sep 2009    Xoke        Initial Version

# Increase tempo of podcasts for today
#    Issues:
#        Assumes bashpodder is running
#        Probably has issues being run twice in one day
#        Doesn't tidy up after itself
#        mp3s become *.mp3.ogg

# Make script crontab friendly:
cd $(dirname $0)

# Speed Increase - change this to change
# the speed.
incspeedby=1.5

# datadir is the directory you want podcasts saved to:
datadir=$(date +%Y-%m-%d)

# Move into directory
cd $datadir

# Find all the MP3s
list=`ls *.mp3`
for currfile in $list
do
 echo $currfile
 # Process them
 sox $currfile z$currfile.ogg tempo $incspeedby
done

# Find all the OGGs
list=`ls *.ogg`
for currfile in $list
do
 echo $currfile
 # Process them
 sox $currfile z$currfile tempo $incspeedby
done</pre>
<p>This will go into the current date directory, as per bashpodder.  This means if you run it <em>twice</em> in one day it will have problems as it will try to increase the tempo of the files already increased&#8230; which will be a problem.  It will convert mp3 files to ogg as the Jaunty version of SoX does not come with MP3 export capabilities.  This means HPR069.mp3 becomes zHPR069.mp3.ogg which is a little annoying, but not a huge problem.  The files all get a &#8216;z&#8217; appended to the front, as I didn&#8217;t want to delete the old files without testing this on a lot of different files!  The next version (after lots of testing) will remove the old files and tidy things up!  Also this takes a while to run to convert files.</p>
<p>If you think 1.5x speed is too fast (or too slow if you&#8217;re Kajarii!) then you can change the <em>incspeedby</em> variable to change both mp3 and ogg.</p>
<p>Apart from that, I posted it here and not under &#8216;tips&#8217; so everyone on the planet can look and let me know if I&#8217;m missing something, or if there is a better way of doing it.  I did google however most people are converting the MP3s to WAV files to increase the tempo and then recompress them!</p>
]]></content:encoded>
			<wfw:commentRss>http://xoke.org/2009/09/28/too-many-podcasts-too-little-time/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Copyright</title>
		<link>http://xoke.org/2009/08/13/copyright/</link>
		<comments>http://xoke.org/2009/08/13/copyright/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 22:59:05 +0000</pubDate>
		<dc:creator>Xoke</dc:creator>
				<category><![CDATA[Creative Commons]]></category>

		<guid isPermaLink="false">http://xoke.org/?p=165</guid>
		<description><![CDATA[First up, I agree with everything I have heard Lawrence Lessig say.  I think Creative Commons is a great idea (remember I release lots of things under CC licenses, including this post and everything on this website that I can).  I am also a realist however, and believe that the big companies / groups (RIAA [...]]]></description>
			<content:encoded><![CDATA[<p>First up, I agree with everything I have heard Lawrence Lessig say.  I think Creative Commons is a great idea (remember I release lots of things under CC licenses, including this post and everything on this website that I can).  I am also a realist however, and believe that the big companies / groups (RIAA / MPAA etc) will never go for it.</p>
<p>I think we need to try to reach a compromise with them, to increase the amount of public domain works.  If we turn around and say everything must be Creative Commons, they will block us.  We need to give them a <em>reason</em> to give up <em>some</em> work.  Which would be an improvement.</p>
<p>To that end, I have put some thought into this.  I discussed some of this on a Cranks episode a while back, but wanted to put out a post and start some discussion on it.  I&#8217;m not claiming this is perfect.  I&#8217;m not saying I&#8217;m right on these ideas.  This is just currently what I think would be at least mildly interesting to all parties.  Also I&#8217;m interested in your feedback.  Just don&#8217;t say &#8216;its crap&#8217; and leave it at that, please explain what you think needs improvement.  The idea being we want something better then what we have, not something perfect.  Then once we have something better, we can try to improve on <em>that</em> again and so on.</p>
<p>The number of years I list here I just picked a number for, basically.  These can be changed based on the return.  I know that most things that are released get most of their sales in the first few years, so the idea would be that this number of years would be where 99% of the return is.</p>
<ol>
<li>If you release a new work, unless otherwise stated (e.g. releasing it under a CC license), you get an immediate copyright for ten years.</li>
<li>If you re-release something, unless it contains 51% or more new content, copyright is <em>not</em> extended.  If it <em>is</em> something new, copyright is extended for another ten years.  It must be in an equivalent form however.</li>
<li>Fair use should be clarified for everyone.  If you mash-up a song or use a song (e.g. in a YouTube video) you have to give attribution to the original creator, however if the income you make from that work is under a thousand dollars, it is fair use.  All existing &#8216;fair use&#8217; stuff stays!</li>
<li>If another type of media creates a work based off of your copyrighted work (e.g. a movie is made from your book) then that extends your copyright on the book for ten years <em>as long as the book is still under copyright</em>.</li>
</ol>
<p>The reasons for these, I mention below.</p>
<ol>
<li>This way things fall out of copyright faster, meaning more work in the public domain that people can use to create new works, just like everyone has done for ever.  I&#8217;ll take this song someone made and put new lyrics on, or mash the music up etc.  This is my &#8216;use it or lose it&#8217; clause.</li>
<li>This I dub the &#8216;Disney&#8217; clause.  This way, as long as Disney makes a new Mickey Mouse movie every decade (not just a rehash, hence the 51%) they get to keep copyright on it.  Yes, this is probably a <em>bad</em> idea as they can have copyright forever on Mickey Mouse, however this way they should be on our side for this.  Otherwise they will continue to press for longer and longer copyright so Mickey Mouse does <em>not</em> fall out of copyright.  They can&#8217;t however just release a one minute Mickey cartoon to extend the copyright.  It must be a series of 30 minutes cartoons, or a movie, like they have done in the past.</li>
<li>I pick a thousand as I think some people will argue that it&#8217;s on YouTube or your website or whatever and you are getting ad revenue in therefore it is commercial.  Picking a small amount of profit should avoid this, as long as it&#8217;s a small site and for &#8216;personal use&#8217;.  If you have a huge site, you can&#8217;t just put other peoples stuff on there and make money off the ads!</li>
<li>This one was after I heard about Forest Gump.  The book didn&#8217;t do too well, but when the movie came out the book sold a ton more.  Actually I have no idea if it was in the &#8216;ten years&#8217; my ideas would make the copyright, but I feel we should allow this to try to increase &#8216;buy in&#8217; as it were.</li>
</ol>
<p>I&#8217;m sure I&#8217;m missing things in here.  Would movie studios wait for ten years after a book is made to try to snap it up for free?  Perhaps, but a rival studio could pick it up beforehand too.</p>
<p>I&#8217;m not sure how CDs would work.  What if a band releases a &#8216;best of&#8217; album.  Should that extend the copyright on the work or not?  I think it should, somehow.  But we can&#8217;t just say a re-release extends copyright else you simply release a &#8216;new&#8217; best of CD every 10 years and have perma-copyright.  Anyone got a better idea?</p>
<p>I also like this &#8216;use it or lose it&#8217; idea for patents.  There are too many patent trolls around.  If you are not using the patent actively then it should become public domain.</p>
<p><a href="http://xoke.org/contact/">Email me</a>, catch me in IRC, or <a href="http://xoke.org/contact/">phone me</a> or whatever to let me know what you think.  Again, just to repeat myself, <em>constructive</em> critisism please.  I know this is not a perfect solution!  But if you have ideas on how to improve these ideas, let me know.  It has to be something that the RIAA / MPAA etc would go for, though and not just a &#8216;release everything under a CC&#8217; license.  Whilst I think that would be cool, Disney etc would not go for it.</p>
]]></content:encoded>
			<wfw:commentRss>http://xoke.org/2009/08/13/copyright/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
