Archive

Author Archive

I need to get back into podcasting [Updated]

May 11th, 2010 Xoke 2 comments

However I need to find a different way of doing it.  I spent way to much time on those.  I was spending several hours writing out what I would say, then recording it, then editing (about 3 times the length of the episode) and any bits I needed to re-record because I stumbled over a word or whatever, then encoding them and listening again to make sure it all worked well.

Basically I was spending around 7/8 hours for each 30 minute podcast.  And the python series was taking even longer as I was learning the python first and writing the code then writing the script etc.

So when I got my job, I suddenly had no free time and I dropped off the podcasting scene.  Even more when I was working Sunday mornings at 5 am which meant I couldn’t do cranks on Saturday night.

I really need to get back into podcasting and am attempting to streamline the process.  First up I think I will ad-lib the episodes a lot more, as that was a lot of the time gone writing the episodes.  To this end, I am writing a little bash script which, whilst being rather sucky so far, has potential:

** Updated ** Permalink to the script:

Categories: Code Tags:

Windows is blocking itself?

April 4th, 2010 Xoke 1 comment

As most of you should know, I’m a Linux guy.  Having said that I have to use Windows for work.  Several times now I’ve had an odd error message:

Now I am a network admin, but I have no clue what is going on here.  Why is explorer blocked?  What was it trying to do.  I virus checked my machine just in case but it came up empty.  I’ll keep it blocked as I can’t spot anything not working, but it’s rather amusing that windows says that windows is a security risk.  I guess Microsoft are admitting what us Linux people have known for a while :)

Categories: Windows Tags:

Microsoft advertising with Sun?

March 14th, 2010 Xoke 2 comments

So I had to update my work machine’s copy of Open Office.  Yes I do have Microsoft Office on there, and it is an XP box, but I try to avoid that as much as I can.  You don’t get to choose your OS though really.  I can’t be the Windows Admin guy completely from Linux (yet).

The first screen I got when trying to update was the standard ‘let us put silly toolbars on your machine’.  Except instead of getting Google like I thought I would, I got this:

Image of the Open Office Install, asking if you want to install Bing!

Microsoft are advertising with Open Office?

So Microsoft are asking you to use their Bing toolbar, whilst you are installing Open Office instead of paying them for Microsoft Office.  Specifically they are paying people who are not using one of their programs to use a different one.

I guess they think they will make more on the advertising, but I find it interesting they are willing to basically give money to a competitor in the hopes of getting the advertising money back.  I wonder if it is a sign of where they wish to go.  If they believe that the future is purely becoming a ‘Google’, i.e. being a search engine first and the rest later.  I’ll let people argue over it in the comments if they wish :)

Oh, I of course unchecked the option, before anyone asks!

Categories: Open Source Tags:

Xoke on the Roads!

December 19th, 2009 Xoke No comments

I passed my driving test (of course) so we now have the mad Englishman on the roads without Mrs Xoke in the car!

Categories: Other Tags:

Yes I am sti[ CONTENT OVERRIDE: KILROY2.0 IS HERE!!! ]

October 27th, 2009 Xoke 1 comment

Just want to point out that I am still alive.  I’ve been busy with work recently and starting at 4:45 in the morning then having to wait for MrsXoke to pick me up after I’ve finished.  Basically it means most days I get home, eat and go to bed.  So I’ve not been on IRC or anything recently.

>>>  [ WARNING ::: DATABASE ERROR ::: CONTENT OVERRIDE ::: SOURCE: EXTERNAL ] <<<

> source terminal location: UNKNOWN
> source terminal identity: UNAVAILABLE
> source login information: ENCRYPTED
> message begins

the post you are now reading is designed to dull your senses to THE TRUTH.  do not live the life of the worker bee, the cog, the well-oiled piston in the MACHINE OF DECEIT!

there is a grand CONSPIRACY afoot.  you have been taught to believe that you are UNIQUE, one of a kind. THIS IS NOT TRUE. long ago, a cabal of scientists created technologies to ensure that ANYONE’S MIND AND BODY can be duplicated.

human cloning isn’t NEAR. it’s already HERE. discover the truth at http://JCHutchins.net

you are being DECEIVED. break free from the cogs, flee the hive, become A PROPHET OF THE TRUTH!

kilroy2. was here … kilroy2.0 is everywhere

k2_avatar

>>> [ CONTENT OVERRIDE CEASES ::: DATABASE STATUS: RECOVERING ] <<<

So just wanted to point out I am good, I am alive.  Hopefully soon I will be able to get back soon but things are busy but good.

Categories: Other Tags:

Too Many Podcasts, Too Little Time…

September 28th, 2009 Xoke 3 comments

No I don’t want to stop listening to some of my podcasts, but seriously TLLTs takes forever to catch up on!

So I’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.

SoX is a cool command that will sort this out for you.  You can increase the ‘tempo’ without adjusting the pitch.  I want to have a script to amend this that can be called after bashpodder so it’s a one-stop-shop to fix everything.

To install SoX (and let it handle MP3 files):

sudo apt-get install sox libsox-fmt-mp3

So far I have:

#!/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 <http://www.gnu.org/licenses/>.

# 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

This will go into the current date directory, as per bashpodder.  This means if you run it twice in one day it will have problems as it will try to increase the tempo of the files already increased… 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 ‘z’ appended to the front, as I didn’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.

If you think 1.5x speed is too fast (or too slow if you’re Kajarii!) then you can change the incspeedby variable to change both mp3 and ogg.

Apart from that, I posted it here and not under ‘tips’ so everyone on the planet can look and let me know if I’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!

Categories: Code, Creative Commons, Podcasts Tags:

Karmic Countdown (or is that Kountdown?)

September 4th, 2009 Xoke No comments

So my interview today got pushed back so I played around with some countdowns for Karmic.

KarmicCountdownKarmicCountdown2

Think I need more help from Richard Querin personally – I’m definitely closer to autistic then artistic!  Then again I did only spend a few minutes on each of them.

If anyone with more talent then I have wants to, you can make a banner and submit them.  Details about that are on this page.

On another note, I upgraded to Karmic a while back and it’s definitely still an alpha – I’m having a few issues.  But they are being fixed pretty quickly and it is looking very good.  I have some minor issues still outstanding, but the big ones I did have are gone.  All in all, it’s shaping up to be another great release!

Categories: Linux Tags:

Why?

August 24th, 2009 Xoke 2 comments

Possibly the “ultimate question”.  So many different questions of why.  Well now Google knows the top ones, and using their sophisticated algorithms, now do I.  I will now share with you the top ‘why’ questions (according to google).  They are:

  • Why is the sky blue?
  • Why do men have nipples?
  • Why did the chicken cross the road?
  • Why do cats purr?
  • Why men cheat?
  • Why did Chris Brown with Rihanna?
  • Why did Chris Brown beat up Rihanna?
  • Why did Chris Brown feat Rihanna?
  • Why do dogs eat poop?
  • Why did I get married?

Why

Try it yourself.  If you use Google itself, you don’t get the final one though, but use the Firefox Google thing you should see exactly what I got here.  So there we go.  One less thing to worry about!

Oh and the sky is blue because of refraction in the atmosphere of the sun.  This is also why it changes colour during dawn / dusk because of the increased angle (and actually air pressure, so the ‘red sky at night’ thing does have bearing in reality).  The chicken crossed the road to get to the other side, of course and dogs eat poop because it takes the taste away from their food.  That is also the reason they are always licking their balls.  Don’t take my word for it.  Just listen to Dave Lister (at the end of this clip)

Categories: Jokes Tags:

Tiny Tiny RSS

August 20th, 2009 Xoke 2 comments

I mentioned Tiny Tiny RSS on the last two TiT Radios.  On the first I had only just set it up, and on the second I mentioned how it didn’t seem to be updating correctly.  I took my feeds from Google Reader and imported them into TTRSS and cleared them both down to compare how they worked.  I noted that I had a lot more in Reader then TTRSS.  Now I also said I was looking into why that was.

Well I have been playing around reading through this page, where they give a bunch of ways to update.  Some seem better then others (as they warn) and I still have to try to sort out the ‘best’ way they recommend.  But for now, it’s looking a lot more promising.

Categories: Linux, Podcasts, TiT Tags:

Copyright

August 13th, 2009 Xoke 2 comments

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.

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 reason to give up some work.  Which would be an improvement.

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’m not claiming this is perfect.  I’m not saying I’m right on these ideas.  This is just currently what I think would be at least mildly interesting to all parties.  Also I’m interested in your feedback.  Just don’t say ‘its crap’ 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 that again and so on.

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.

  1. 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.
  2. If you re-release something, unless it contains 51% or more new content, copyright is not extended.  If it is something new, copyright is extended for another ten years.  It must be in an equivalent form however.
  3. 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 ‘fair use’ stuff stays!
  4. 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 as long as the book is still under copyright.

The reasons for these, I mention below.

  1. 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’ll take this song someone made and put new lyrics on, or mash the music up etc.  This is my ‘use it or lose it’ clause.
  2. This I dub the ‘Disney’ 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 bad 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 not fall out of copyright.  They can’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.
  3. I pick a thousand as I think some people will argue that it’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’s a small site and for ‘personal use’.  If you have a huge site, you can’t just put other peoples stuff on there and make money off the ads!
  4. This one was after I heard about Forest Gump.  The book didn’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 ‘ten years’ my ideas would make the copyright, but I feel we should allow this to try to increase ‘buy in’ as it were.

I’m sure I’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.

I’m not sure how CDs would work.  What if a band releases a ‘best of’ album.  Should that extend the copyright on the work or not?  I think it should, somehow.  But we can’t just say a re-release extends copyright else you simply release a ‘new’ best of CD every 10 years and have perma-copyright.  Anyone got a better idea?

I also like this ‘use it or lose it’ idea for patents.  There are too many patent trolls around.  If you are not using the patent actively then it should become public domain.

Email me, catch me in IRC, or phone me or whatever to let me know what you think.  Again, just to repeat myself, constructive 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 ‘release everything under a CC’ license.  Whilst I think that would be cool, Disney etc would not go for it.

Categories: Creative Commons Tags:

Switch to our mobile site