[vlc-commits] commit: Lua: fix the remaining scripts. ( Rémi Duraffort )

git at videolan.org git at videolan.org
Sat Apr 10 11:17:32 CEST 2010


vlc | branch: master | Rémi Duraffort <ivoire at videolan.org> | Fri Apr  9 17:50:16 2010 +0200| [5c29e5fc20816bf9d03600a557fead12a9ef716b] | committer: Rémi Duraffort 

Lua: fix the remaining scripts.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=5c29e5fc20816bf9d03600a557fead12a9ef716b
---

 share/lua/meta/art/01_musicbrainz.lua |    2 +-
 share/lua/meta/art/02_frenchtv.lua    |    2 +-
 share/lua/meta/fetcher/tvrage.lua     |    8 ++++----
 share/lua/meta/reader/filename.lua    |   10 +++++-----
 4 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/share/lua/meta/art/01_musicbrainz.lua b/share/lua/meta/art/01_musicbrainz.lua
index 934e9ad..d28b833 100644
--- a/share/lua/meta/art/01_musicbrainz.lua
+++ b/share/lua/meta/art/01_musicbrainz.lua
@@ -54,7 +54,7 @@ end
 
 -- Return the artwork
 function fetch_art()
-    local meta = vlc.item:metas()
+    local meta = vlc.input.item:metas()
     if not (meta["artist"] and meta["album"]) then
         return nil
     end
diff --git a/share/lua/meta/art/02_frenchtv.lua b/share/lua/meta/art/02_frenchtv.lua
index 957f0d6..9fff074 100644
--- a/share/lua/meta/art/02_frenchtv.lua
+++ b/share/lua/meta/art/02_frenchtv.lua
@@ -40,7 +40,7 @@ function fetch_art()
         ["Virgin 17"] = "http://upload.wikimedia.org/wikipedia/fr/3/39/Virgin17logo.png",
         ["La Chaîne Parlementaire"] = "http://upload.wikimedia.org/wikipedia/fr/9/98/Public-Senat-LCP-An_logo_2010.png"
     }
-    local meta = vlc.item:metas();
+    local meta = vlc.input.item:metas();
     local channel
     if meta["title"] then
         channel = meta["title"]
diff --git a/share/lua/meta/fetcher/tvrage.lua b/share/lua/meta/fetcher/tvrage.lua
index 22a391d..2893cc9 100644
--- a/share/lua/meta/fetcher/tvrage.lua
+++ b/share/lua/meta/fetcher/tvrage.lua
@@ -28,7 +28,7 @@ function get_query( title )
 end
 
 function fetch_meta()
-    local metas = vlc.item:metas()
+    local metas = vlc.input.item:metas()
 
     local showName = metas["showName"]
     if not showName then
@@ -73,9 +73,9 @@ function fetch_meta()
         return false
     end
 
-    vlc.item:set_meta("title", showName.. " S"..seasonNumber.."E"..episodeNumber.." - ".. title)
-    vlc.item:set_meta("artwork_url", artwork)
-    vlc.item:set_meta("episodeName", title)
+    vlc.input.item:set_meta("title", showName.. " S"..seasonNumber.."E"..episodeNumber.." - ".. title)
+    vlc.input.item:set_meta("artwork_url", artwork)
+    vlc.input.item:set_meta("episodeName", title)
 
     return true
 end
diff --git a/share/lua/meta/reader/filename.lua b/share/lua/meta/reader/filename.lua
index a1b4173..9fe75b0 100644
--- a/share/lua/meta/reader/filename.lua
+++ b/share/lua/meta/reader/filename.lua
@@ -24,7 +24,7 @@ function trim (s)
 end
 
 function read_meta()
-    local metas = vlc.item:metas()
+    local metas = vlc.input.item:metas()
 
     -- Don't do anything if there is already a title
     if metas["title"] then
@@ -45,8 +45,8 @@ function read_meta()
 
     -- Remove . in showName
     showName = trim(string.gsub(showName, "%.", " "))
-    vlc.item:set_meta("title", showName.." S"..seasonNumber.."E"..episodeNumber)
-    vlc.item:set_meta("showName", showName)
-    vlc.item:set_meta("episodeNumber", episodeNumber)
-    vlc.item:set_meta("seasonNumber", seasonNumber)
+    vlc.input.item:set_meta("title", showName.." S"..seasonNumber.."E"..episodeNumber)
+    vlc.input.item:set_meta("showName", showName)
+    vlc.input.item:set_meta("episodeNumber", episodeNumber)
+    vlc.input.item:set_meta("seasonNumber", seasonNumber)
 end



More information about the vlc-commits mailing list