From 7e8e215ddc00b6dd64396a843194808b1de71657 Mon Sep 17 00:00:00 2001 From: Pierre d'Herbemont Date: Thu, 7 Jan 2010 02:34:26 +0100 Subject: [PATCH] frenchtv: Add a new lua "art finder". This will download the free to use original recreation of french channels logo by Cyril Bourreau. Note, we can mirror them eventually. (Explicit authorization from the author). --- share/Makefile.am | 1 + share/lua/meta/art/02_frenchtv.lua | 54 ++++++++++++++++++++++++++++++ 2 files changed, 55 insertions(+) create mode 100644 share/lua/meta/art/02_frenchtv.lua diff --git a/share/Makefile.am b/share/Makefile.am index dce8c2c80c..3b8469fac7 100644 --- a/share/Makefile.am +++ b/share/Makefile.am @@ -192,6 +192,7 @@ DIST_lua= \ lua/README.txt \ lua/meta/art/README.txt \ lua/meta/art/01_musicbrainz.lua \ + lua/meta/art/02_frenchtv.lua \ lua/meta/art/10_googleimage.lua \ lua/meta/reader/README.txt \ lua/meta/reader/filename.lua \ diff --git a/share/lua/meta/art/02_frenchtv.lua b/share/lua/meta/art/02_frenchtv.lua new file mode 100644 index 0000000000..1125800c93 --- /dev/null +++ b/share/lua/meta/art/02_frenchtv.lua @@ -0,0 +1,54 @@ +--[[ + Gets an artwork from amazon + + $Id$ + Copyright © 2007 the VideoLAN team + + 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 2 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. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. +--]] + +-- Return the artwork +function fetch_art() + local urlsForChannel = { + -- on http://cyril.bourreau.free.fr/Vectoriel/ + ["TF1"] = "TF1-2006.png", + ["France 2"] = "FR2-DSK-couleur.png", + ["France 3"] = "FR3-DSK-couleur.png", + ["France 4"] = "FR4-DSK-couleur.png", + ["France 5"] = "FR5-DSK-couleur.png", + ["Direct 8"] = "Direct8-2009.png", + ["NRJ 12"] = "NRJ12-2009.png", + ["iTele"] = "iTELE-2008.png", + ["W9"] = "W9.png" + } + local meta = vlc.item.metas(vlc.item); + local channel + if meta["title"] then + channel = meta["title"] + else + channel = meta["filename"] + end + + -- trim + channel = string.gsub(channel, "^%s*(.-)%s*$", "%1") + + local url = urlsForChannel[channel]; + + if url then + return "http://cyril.bourreau.free.fr/Vectoriel/"..url + else + return nil + end +end -- 2.39.2