Update: this analysis covers a few less days than I originally stated – the results should look quite different once we add in this week’s links (and next week’s!).

Here are the top 20 Australian election-related YouTube videos so far up to last Friday morning, according to the Twitterati. Or to be more precise, here are the 20 videos which have been linked to the most in tweets containing the #ausvotes hashtag posted between 17 July and 6 August, according to the Twapperkeeper archive.

Couple of interesting things to note:

  • the mismatches between the Twitter link rankings of some of these videos with the number of views they have received on YouTube;
  • the low numbers of links generally (could be a glitch with the scripts, but I’m reasonably confident it isn’t)
  • the reasonably solid performance of ‘made-for-web’ comedy videos performed and/or produced by professionals
  • the high retweet value of ‘official’ campaign videos (in which I’d probably count GetUp!) – although it’s important to note that the tweets that go alongside the videos are frequently less-than flattering…
  • and if I may add a personal note, the only mild sharpness or funniness of even the sharpest and funniest of these videos…

Video TitleTwitter linksYouTube views
(as at 12/08/10)
Notes
1Tony Abott's archaic views6445477GetUp! Ad
2LEAVE JULIA ALONE!5937631Spoof on Chris Crocker's "Leave Britney Alone!" video
3Tony Abbott: the man your PM should be5688054Old Spice animated parody by Small Poppy
4Bob Katter Your Force From Fhe North3521883Bob Katter's campaign video
5Labor Lemons3346260Liberal party campaign advertisement
6Julia Gillard slams Downer over security291422Clip from ABC news showing Gillard "in full flight" during a press conference
7Sex Party v Family First Debate Sunrise2737999Clip from Channel 7's breakfast show 'Sunrise'
8Clarke and Dawe - A Real Voter231396Clarke and Dawe skit from the ABC TV's The 7.30 Report 05/08/2010
9Julia RE: Leaks, the (un)real Julia and sticking the boot in23275Gabby Millgate spoof of Julia Gillard
10It's the same labor1922431Liberal party campaign advertisement
11Make Your Vote Count194920Family First campaign advertisement
12Tony Abbott's Debt Without Stimulus181678Apparently user-created video arguing that Australia's debt is lower than it would be today if the Coalition were in government.
13Clarke and Dawe - the story so far182574Clarke and Dawe skit from the ABC TV's The 7.30 Report 29/07/2010
14Video has been removed by the user17n/an/a
15Fair Go for Billionaires - Not Against Reform178315Campaign ad spoof by Manic Studios (Charles Firth)
16Wilson Tuckey Liberal for O'Connor161145Official campaign ad for Wilson Tuckey
17Tony Abbott Character Slam by Paul Keating1511317Paul Keating performs a four minute ad libitum character slam on Tony Abbot on ABC Radio in March 2010.
18Labor's Deal With The Greens: A Carbon Tax Is Coming 1211980Liberal party campaign advertisement
19Keith Olbermann Special Comment On Shirley Sherrod Controversy (Part 1)1219473Not sure what's going on here. The video pertains to the Shirley Sherrod controversy, but the tweets are to do with the Australian Greens and the Christian right...
20GRUEN NATION | Ep. 2 | The pitch: SoDUS 122903The Pitch: SoDUS's fear ad targeting The Liberal party - from

By the way, I made this table by importing a .csv into the very nifty WP-Table Reloaded plugin

A fairly big caveat: I don’t think this list tells us anything much about the role of YouTube in the election (if it even has one); or how Australian citizens are using YouTube as a platform to engage in either the media game around the election or the substantive issues. For that, I’ll need a different approach entirely – more on that later, I hope.

Even given all that, as someone with a fair bit of interest in YouTube, the list strikes me as less than electrifying. Where are the shocking, witty, cute or downright game-changing videos that the Twitterati has missed? If you know of some, let me know in comments here or on Twitter. Or is there just something deadeningly uninspiring (to critique or comedy alike) about this whole election?

How I did this: in short, with a lot of help from some very clever scripts, for which I mostly have Axel to thank. First we extract then resolve all the links (bit.ly and the like) to their ‘original’ versions; and then we have to normalise all the youtube links (which can appear in all sorts of formats).

Here’s the script to extract and normalise the YouTube links:

 

# youtubeextract.awk - extract YouTube links from Twapperkeeper export data
#
# extracts YouTube links from the first column of the CSV file, and standardises link format
#
# output format:
# youtubeurl, [original columns]
#
# for tweets containing multiple links, the script adds new rows for each link
#
# Released under Creative Commons (BY, NC, SA) by Jean Burgess and Axel Bruns - je.burgess@qut.edu.au / a.bruns@qut.edu.au

BEGIN {
getline header
print "youtubeurl," header
IGNORECASE = 1
}

$1 ~ /http:\/\/(www.)*youtu([A-Za-z0-9[:punct:]]+)/ {

a=0
do {
match(substr($1, a),/http:\/\/(www.)*youtu([A-Za-z0-9[:punct:]]+)?/,atArray)
a=a+atArray[0, "start"]+atArray[0, "length"]

if (atArray[0] != 0) {
youtube = ""
start = match(atArray[0],/v(=|\/)(.+?)&*/)			# case v=___________ or v/___________
if(start != 0) {
youtube = substr(atArray[0], start + 2, 11)
} else {
start = match(atArray[0],/#p.+\//)				# case #p/_/_/___________
if(start != 0) {
youtube = substr(atArray[0], start + 2)
sub(/.*\//, "", youtube)
youtube = (substr(youtube, 1, 11))
} else {							# case http://youtu.be/___________
start = match(atArray[0],"http://youtu.be/")
if(start != 0) {
youtube = substr(atArray[0], start + 16, 11)
}
}
}

if(youtube != "") { youtube = "http://www.youtube.com/watch?v=" youtube }

print youtube "," $0

}

} while(atArray[0, "start"] != 0)

}

From there, I just counted them and looked ’em up. 🙂

Published by Jean Burgess

Jean Burgess is a Professor of Digital Media and Director of the Digital Media Research Centre (DMRC) at Queensland University of Technology. She is @jeanburgess on Twitter.

2 replies on “Top 20 election-related YouTube videos (according to Twitter)”

Comments are closed.