seriesfinale, a tv shows' tracker for maemo 5 (fosdem 2010)

22
static void _f_do_barnacle_install_properties(GObjectClass *gobject_class) { GParamSpec *pspec; /* Party code attribute */ pspec = g_param_spec_uint64 (F_DO_BARNACLE_CODE, "Barnacle code.", "Barnacle code", 0, G_MAXUINT64, G_MAXUINT64 /* default value */, G_PARAM_READABLE | G_PARAM_WRITABLE | G_PARAM_PRIVATE); g_object_class_install_property (gobject_class, F_DO_BARNACLE_PROP_CODE, Joaquim Rocha [email protected] SeriesFinale TV shows tracker for Maemo 5 FOSDEM 2010

Upload: igalia

Post on 04-Dec-2014

584 views

Category:

Technology


1 download

DESCRIPTION

By Joaquim Rocha. SeriesFinale is a TV series browser and tracker application for Maemo 5. Its goal is to help you manage the TV shows you watch regularly and keep track of the episodes you have seen so far. The shows and episodes listings can be retrieved automatically from the web presenting you with information about the subject of the show/episode, director, actors, guest stars, etc. Episodes are presented in a check list view to allow checking and keeping track of the ones that have been already seen. Links: SeriesFinale demo: http://www.joaquimrocha.com/2009/12/06/seriesfinale/

TRANSCRIPT

Page 1: SeriesFinale, a TV shows' tracker for Maemo 5 (FOSDEM 2010)

static void_f_do_barnacle_install_properties(GObjectClass

*gobject_class){

GParamSpec *pspec;

/* Party code attribute */ pspec = g_param_spec_uint64

(F_DO_BARNACLE_CODE, "Barnacle code.", "Barnacle code",

0, G_MAXUINT64,

G_MAXUINT64 /* default value */,

G_PARAM_READABLE | G_PARAM_WRITABLE |

G_PARAM_PRIVATE);

g_object_class_install_property (gobject_class,

F_DO_BARNACLE_PROP_CODE,

Joaquim [email protected]

SeriesFinale

TV shows tracker for Maemo 5

FOSDEM 2010

Page 2: SeriesFinale, a TV shows' tracker for Maemo 5 (FOSDEM 2010)

Joaquim Rocha (Igalia) · SeriesFinale · FOSDEM 2010

There was a big problem!

Page 3: SeriesFinale, a TV shows' tracker for Maemo 5 (FOSDEM 2010)

Joaquim Rocha (Igalia) · SeriesFinale · FOSDEM 2010

So many TV shows...So little time to watch them

the disrespect of TV networks

CC Photo by: http://www.flickr.com/photos/uwebkk/

Page 4: SeriesFinale, a TV shows' tracker for Maemo 5 (FOSDEM 2010)

Joaquim Rocha (Igalia) · SeriesFinale · FOSDEM 2010

That made me and my girlfriend sad... :(

CC Photo by: http://www.flickr.com/photos/rivalius13/

Page 5: SeriesFinale, a TV shows' tracker for Maemo 5 (FOSDEM 2010)

Joaquim Rocha (Igalia) · SeriesFinale · FOSDEM 2010

I noticed that when a TV show is starting, I wouldn't get a piece of

paper nor open a txt to write it down

Page 6: SeriesFinale, a TV shows' tracker for Maemo 5 (FOSDEM 2010)

Joaquim Rocha (Igalia) · SeriesFinale · FOSDEM 2010

but the damn phone is always nearby!

Page 7: SeriesFinale, a TV shows' tracker for Maemo 5 (FOSDEM 2010)

Joaquim Rocha (Igalia) · SeriesFinale · FOSDEM 2010

What if I had a list of the episodes of each show I follow,

and their synopsis, etc.

and could check them on mybeloved N900!?

Page 8: SeriesFinale, a TV shows' tracker for Maemo 5 (FOSDEM 2010)

Joaquim Rocha (Igalia) · SeriesFinale · FOSDEM 2010

How could this be done?

2 options:#1 screen scraping

#2 a nice API

Page 9: SeriesFinale, a TV shows' tracker for Maemo 5 (FOSDEM 2010)

Joaquim Rocha (Igalia) · SeriesFinale · FOSDEM 2010

I searched for the nice API

Page 10: SeriesFinale, a TV shows' tracker for Maemo 5 (FOSDEM 2010)

Joaquim Rocha (Igalia) · SeriesFinale · FOSDEM 2010

Found TheTVDB.com :GPL project where everybody can

contribute with info and artabout their favorite shows

Page 11: SeriesFinale, a TV shows' tracker for Maemo 5 (FOSDEM 2010)

Joaquim Rocha (Igalia) · SeriesFinale · FOSDEM 2010

And there was even a Python module to try the API right away

Page 12: SeriesFinale, a TV shows' tracker for Maemo 5 (FOSDEM 2010)

Joaquim Rocha (Igalia) · SeriesFinale · FOSDEM 2010

So I did a fast check, the API worked;

TheTVDB seemed well updated;and I started SeriesFinale using

Igalia's hackfest time

Page 13: SeriesFinale, a TV shows' tracker for Maemo 5 (FOSDEM 2010)

Joaquim Rocha (Igalia) · SeriesFinale · FOSDEM 2010

The architecture is not dependent on TheTVDB

(another provider backend can be written)

Page 14: SeriesFinale, a TV shows' tracker for Maemo 5 (FOSDEM 2010)

Joaquim Rocha (Igalia) · SeriesFinale · FOSDEM 2010

TV Show:

namegenre

overviewnetworkratingactors

Page 15: SeriesFinale, a TV shows' tracker for Maemo 5 (FOSDEM 2010)

Joaquim Rocha (Igalia) · SeriesFinale · FOSDEM 2010

Episode:name

overviewnumberseasondirectorwriter

guest starsrating

air date

Page 16: SeriesFinale, a TV shows' tracker for Maemo 5 (FOSDEM 2010)

Joaquim Rocha (Igalia) · SeriesFinale · FOSDEM 2010

Stored “DB”: objects JSON picklestored as text in a file

Page 17: SeriesFinale, a TV shows' tracker for Maemo 5 (FOSDEM 2010)

Joaquim Rocha (Igalia) · SeriesFinale · FOSDEM 2010

Ported already to Diablo(thanks to Juan Suárez)

Page 18: SeriesFinale, a TV shows' tracker for Maemo 5 (FOSDEM 2010)

Joaquim Rocha (Igalia) · SeriesFinale · FOSDEM 2010

Future:* Download and use art

* Use CouchDB* Port it to the GNOME desktop

* Make a web site with sync capability

* Find a way to link to episodes' trailers on YouTube

Page 19: SeriesFinale, a TV shows' tracker for Maemo 5 (FOSDEM 2010)

Joaquim Rocha (Igalia) · SeriesFinale · FOSDEM 2010

Demo time!

Page 20: SeriesFinale, a TV shows' tracker for Maemo 5 (FOSDEM 2010)

Joaquim Rocha (Igalia) · SeriesFinale · FOSDEM 2010

AND NO, THERE WON'T BE A “DOWNLOAD” BUTTON!!!

CC Photo by: http://www.flickr.com/photos/outime/

Page 21: SeriesFinale, a TV shows' tracker for Maemo 5 (FOSDEM 2010)

Joaquim Rocha (Igalia) · SeriesFinale · FOSDEM 2010

Install it!Use it!

Live happy ever after!

(and also contribute to TheTVDB.com)

http://gitorious.org/seriesfinale

Page 22: SeriesFinale, a TV shows' tracker for Maemo 5 (FOSDEM 2010)

Joaquim Rocha (Igalia) · SeriesFinale · FOSDEM 2010

Thank you!