Last year Radio #EDUtalk was at the eAssessment Scotland 2012.

I had a great time and we broadcast some great folk and recorded for the podcast: eAS12 | EDUtalk

This year the Programme looks really interesting.

Kenji Lamb has asked us to cover the conference again! I am really excited about going again and getting into some great conversations that will be a bit over my head.

Last year it worked, IMO, really well by having two knowledgable folk in most of the broadcasts (ie as well as me). I hope to repeat this method again.

You will be able to listen to the live stream on Friday 23 August.

We are also going to run a couple of eAssessment Scotland episodes on Radio #EDUtalk on the Wednesdays before and after the conference.

As usual I am amazed at being able to talk to interesting folk just by sharing the conversation.

Wirelesses by Elsie esq.
Attribution License

Why would you?

  • Listening to audio is more time consuming that reading. It is hard to bookmark interesting section, to scan quickly through content and to skip back and forward.
  • Alternatively audio provides extra information, the sound of voices. Audio can also be consumed while doing other things, driving, washing the dishes walking the dog etc.
  • We have had many wonderful folk send us audio and a tremendous lineup of guests on our live show. Well worth listening to.

On the site

  • Podcast and Radio EDUtalk
  • You can listen to both podcast and the internet radio stream just by using the players on the site. The audio should be played via html5 players when possible falling back to flash. You can also download the audio using the links provided.
  • Listening on the site or downloading individual audio files is fine for casual listening but there are other ways to get the content with less effort and while you are away from your computer..

By subscribing to the podcast feed

  • The podcast has an RSS Feed. This allows folk to ‘subscribe’ to the podcast with podcatcher software. This software will automatically check the feed and download new audio that appears on the site automatically. Most podcatcher can be configured to discard older audio files and can organise the audio in different ways.
  • List of podcatchers – Wikipedia, the free encyclopedia
  • On a Computer
  • Mobile
    • Having podcasts on a mobile device is very useful. It means you can listen to podcasts as you travel. Personally I listen t opodcasts while comuting.
    • If you use iTunes you can sync your podcasts to an ipod or iphone.
    • There are also apps which will sync podcasts directly over wifi. Apple provide the podcast app for free. I use Instacast 2, version 3 is now avaliable.
    • Another popular iOS app is downcast.
    • On the android front here are some suggestions. I’d love to have some recommendations from folk I know.

Listening to the radio stream

There are many ways to listen to Edutalk, and other podcasts and Internet radio. You may find this is a great way to get information in addition to reading and watching.

Code eyes

These are some technical notes on some of the changes I’ve made to the standard WordPress site for EDUtalk, I am not sure if they are of much interest to anyone but myself, but writing them up here will, 1. get them clear in my mind, and 2. provide a reference.

The site is running on WordPress 3.5.1. I made a child theme as I wanted to edit some of files and mostly be upgrade proof.

If you have no interest in this you might be interested in the main facts of the move: EDUtalk Has Moved, or just head over to EDUtalk and listen to some great audio.

Plugins

  1. Akismet, spam protection, pretty much a no brainer.
  2. FeedWordPress, this is very much at the heart of the new site, this plugin allows you to syndicate content from other sites, in our case audioboo boos tagged edutalk and iPadio phlogs with the same tag. Posts form these sites with the tag are added to EDUtalk. The plugin also allows us to make the titles link to the original site rather than our own post page, I believe this is a better way to do things for the authors who submit content by tagging.
  3. MediaElement.js – HTML5 Audio and Video, I installed this initially but it is now turned off. Instead I have used this JavaScript myself. As I understand it the plugin will provide html5 and fallback players for audio inserted with a short code player. As a lot of our content comes via FeedWordPress it would not work there unless we manually edited posts.
  4. In the process of importing all of the old content I found the Categories to Tags Converter Importer and WordPress Importer plugin invaluable.
  5. The Safe Redirect Manager plugin redirects links from the old site to the new one, for example, /pages/radio-edutalk to /listen.

Child Theme Files

It seems that the way you best edit a WordPress theme is through Child Themes, this avoids problems when upgrading.

I started by copying the content.php file from the theme to the child theme folder. Here I edited the php to add an html 5 audio player to the top of a post, if the post had an enclosure. I used:$enclosureData = get_post_meta($post->ID, 'enclosure' ); to find out if there was an enclosure. I had a bit of hassle as Audioboo encloses images as well as mp3s, but looped through the enclosures and used the first audio one I found.

I had to edit the main theme function.php file to comment out a bit of code that removed enclosures if they were not linked in the post. This proved a problem when doing some manual edits of the imports. I got information on how to do this from this post: How to stop WordPress 2.8 – 3.5 from deleting enclosures | Kevin J Edwards. The main tool used in building edutalk.cc was google. In this case I edited the theme’s own function.php file, rather than the child themes, as the child theme’s function.php is added to, rather than replacing the parent theme. If there is a better way to do this, I’d like to know.

I did create a child theme function.php and added functions to include the jQuery and MediaElement.js. I then copied the footer.php to the child theme and added a script to added a flash player to the audio tags for browsers that do not play mp3s natively.

jQuery(document).ready(function() {
	jQuery('audio').mediaelementplayer();
});

Pretty simple stuff.

Originally I added a bit more jQuery to hide the audioboo and ipadio players and maps in the post. They were not making the posts look very nice, and I found it difficult to style them. Later on, as I found that the pages were loading very slowly, I went back into the content.php file and added some code to only show the post content, if it was in the Radio Edutalk category. Even with only 6 posts per page this made a huge difference in speeding up the page loading (twice as fast). I changed:

<?php  the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentytwelve' ) );  ?>

to

<?php if(in_category(5)){the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentytwelve' ) );} ?>

5 being the category for Radio Edutalk, I’ll be adding another category for mailed in audio if needed. Thinking about it it would be best to change to not in the audioboo and ipadio categories.

Screenshotpingdom

Altogether it was not very hard to figure this out with the help of google. WordPress is extremely well documented. The code is also easy to edit, without having to understand the whole thing. There are probably a lot of better ways to do this, and I’d be delighted to find out.

I’d also be interested in any other ways to improve the site, speed it up or add useful features.

Coding john

Even though it was expected I was pretty dismayed when posterous announced that it was shutting down.

Last week I blogged about possible ways forward and as I did so a couple of possible solutions appeared:

  1. Posthaven is the safe place for all your posts forever from some of the development team at posterous a site that will incorporate the best of posterous for $5 a month with a promise to keep going.
  2. Then Tim Owens (timmmmyboy) on Twitter offered us a home at Hippie Hosting where ewe could use WordPress.

So I’ve reserved edutalk on www.posthaven.com for $5 as a possibility, but the temptation to play is too much:

The idea now is to test out WordPress and keep posthaven as a fallback or perhaps as a way of contributing. The rest of this post will briefly cover what I did last weekend to test a few things out and start developing the idea.

So far:

  • I downloaded my own posterous backup from ‘John’s posterous – I always did like sending email‘ and set up a new wordpress blog, After Posterous, to see how that would go.
    Mixed results, the posts and comments showed up, but I lost the nice galleries, I’d have to go through the 300+ posts and set up WP galleries by hand.
  • I installed wp on hippy hosting, I used the system there, can’t recall the name, to install wordpress and it was done in seconds. I’ve normally have done this using ftp. Slightly worrying that this is so easy.
  • I got a new domain as a place holder: http://www.edutalk.info while developing the new site.
  • I added the FeedWordPress plugin and set it up to auto import boos tagged edutalk. This worked really well. pulling in all the boos in the RSS feed very quickly and treating them well. Linking the audio and creating the enclosures for podcasting. I am delighted with this.
  • The boos are posted tagged audioboo, it looks like I might have to think about the formatting a little bit.
  • I downloaded the posterous back up for SLFtalk – Audio publishing by attendees at the Scottish Learning Festival to have a look at the format, it seems less daunting that the 2GB edutalk backup.
    I’ve now got something to worry about. For some reason posterous have decided that there backups don’t link audio properly:

    What about audio?
    The Posterous export file doesn’t currently provide links to audio files, so there’s not a way for us to import them automatically. If you have audio files, you’ll need to find them in the “audio” folder within the backup zip file and manually upload them to the relevant posts.


    from: Import from Posterous — Support — WordPress.com
    This is going to be tricky given the number of posts we have.

Thinking about

  • It looks like to get the posts with audio up I’ll have to do something automatic. I’d need to, say: parse the posterous backup, to extract information; identify associated audio files; upload the audio, probably by ftp; create the information needed for a post (including enclosure info) and create the post, probably with the MetaWebLogAPI. The problem will be that the posts will vary depending on the source, audioboo, email, directly through the web. Some posts have audio that was uploaded to posterous, some link to audioboo. I hope to cobble a solution to this with SuperCard, AppleScript and string.
  • I’ll try to get enclosures showing up in posts as audio players, hopefully html 5 with fall back for older browsers and ones that do not support mp3. I think I saw a snippet of php for that somewhere in the wordpress help.
  • I am wondering how the change from the test domain, edutalk.info to edutalk.cc will go, will I have to fix all the urls for enclosures in the wordpress database? Anyone know if this is easy?
  • I’ve no idea how to handle submission via email. Posterous did a great job of this, especially dealing with different filetypes.

Luckily there is a couple of months to get this sorted…

image idea from here

Woke up this morning to a barrage of tweets about Posterous turning off on April 30.

We use posterous for EDUtalk and I have a few other posterous blogs too.

This is not too unexpected, I bloged about it a couple of times, Posterous Worries and More Posterous Worries but it is still disappointing, who doesn’t like great stuff for free.

I’ve blogged enough about how good posterous is and the features that make it great for EDUtalk. I am going to make a list here of what is needed with some possible solutions and hopefully get some feedback.

  • Cost, posterous is free. I am not opposed to paying for stuff on the web, I pay for hosting here and elsewhere, the icecast part of Radio EDUtalk, flickr, pinboard and other stuff but we don’t want to pay too much for EDUtalk.
  • Space, last year at some point I downloaded everything from EDUtalk (There is a mac app for that) and it was well over 1GB then, there are >1000 posts. We need to move to a flexible hosting, or to use the Internet Archive for hosting our larger files.
  • Upload size, posterous allows upload of fairly large audio files through a browser. Other options may mean ftp, not a hugh problem but.
  • Media handling, folk can email in all sort of audio to edutalk and posterous deals with it and displays it nicely.
  • Open posting by email, I’ve not seen this else where, folk can email an audio file to EDUtalk and it is posted to the moderation queue, this makes for a very easy entry to podcasting, covering events by lots of folk easy, My favourite feature about posterous.
  • The Posterous API, recently broken, this allowed us easily to pull in audioBoos and ipadio phlogs. The MetaWeblogAPI or the FeedWordpress plugin (not sure how it handles attachments) would let us do this with WordPress.

From my knowledge and experience the simplest fit would be self hosted WordPress, ftp upload of Radio EDUtalk episodes (either to the sit or to the Internet Archive), forget the submission via email, or do this manually. Use the MetaWebLogAPI or FeedWordpress to bring in other content.

An Opportunity?

I’d like better, I’d love to keep all the features of EDUtalk and even get back the old phone in feature (that used to be handled by gabcast). I’ve also got some interest in using something else from the ubiquitous wordPress (ironic since I’ve spent a ton of time arguing for WP in Glow recently).

I wonder too how well the various WordPress posterous import solutions would handle our content, for example some of our ipadio and audioboos use the players from these sites, some use just a lonk that posterous turned into a posterous player and most recently we have been downloading and reposting the files to fix a feedburner/audioboo problem!

I’d love to hear some ideas of the best way to move this forward.

Update: just see this: Posthaven is the safe place for all your posts forever

When will Posthaven be able to do _______?

Everything you expected and liked about Posterous will eventually be in Posthaven. Things like post by email, multiple users, pages and links, full HTML theming, and the bookmarklet.

We’ll deploy the features and let you know as soon as they’re available.

from: Posthaven is the safe place for all your posts forever

I’ve reserved edutalk on www.posthaven.com for $5 as a possibility.


A taster for the #EDUtakk recordings from the ACTS conference in Stirling 2 Feb 2013
Stirling, United Kingdom

This audio file was orginally posted to AudioBoo(m) with the mobile app. It has been downloaded and posted here since audioboom no longer supports free accounts.

edutalk setup

Yesterday I was lucky enough to be invited to the Association of Chartered Teachers Scotland – conference.

A ton (scientifically measured) of teachers turned up to discuss education, on a beautiful Saturday, at the Stirling Management Centre.

As usual with these events the only problem is having to decide which sessions to go to.  

I broadcast and recorded both Keynotes, the first  Radio #EDUtalk Sir Tim Brighouse – is now on EDUtalk

There was a great buzz around the conference with a very positive feeling to the discussions. As well as recording the Keynotes and a couple of sessions I also grabbed a few folk for a chat about their particular interests and their impressions of the conference. It continues to delight me about how generous folk are if you ask them to share. There will some excellent listens on [Edutalk](http://edutalk.cc/pages/radio-edutalk] over the next week or so as I get time to do some light editing.

The audio for the keynotes is better quality than my usual output due to the generosity of the professionals at the conference who not only gave me access to their audio but the necessary cable.

As a taste of what is to come here is a 25 second snippet of  David Cameron’s introduction to Sir Tim Brighouse’s keynote:

Last Wednesday we returned to Radio EDUtalk after a summer break. (The break was for live shows, IaninSheffield in particular has kept the podcast active over the summer).

Our first guest of the new session was Laurie O’Donnell, @laurieod talking about ‘Innovation, creativity and technology for learning. Laurie gave a passionated, radical and reasoned argument for Innovation and creativity in Scottish Education which I recommend you listen too.

Most of the audio is pretty good quality, although we were beset by skype dropping out which made me a little too uptight to talk sense at times. Fortunately Laurie’s audio is much clearer than mine, I’ve still a lot to learn about nicecast.

David has already put together an impressive list of participants for future shows which you can read about over at Radio Edutalk. We are very open to suggestions or volunteers for future broadcasts please get in touch, (a comment here, twitter tagged #edutalk or an email to edutalkr at hotmail.co.uk)

Finally if you are interested in contribution to the EDUtalk podcast you can do so in several ways or if you would like to try live broadcasting, hosting or co-hosting a show, please get in touch.

Ifttt Audioboo Dropbox

Just discoverd a nice IFTTT Recipe: ifttt / Recuperating the mp3 files from an audioboo RSS feed, This recipe will collect the mp3 files of an audioboo RSS feed and put them into a dropbox folder, it allows you to name the folder from item on the feed. I set it up for the boos tagged edutalk that we gather and post to EDUtalk. I’ve now got a local backup mechanisim.

Cleaver stuff, I wish, and have feature requested, that IFTTT could get enclosures from RSS feeds, but this is a great workaround for backing up audioboos.

dropbox of boos

I am also wondering how this could be combined with Wappwolf.