Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
060d116f
Commit
060d116f
authored
Aug 15, 2007
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
share/luameta/googleimage.lua: Rework a bit to better handle meta going wrong.
parent
6e3ef03d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
8 deletions
+9
-8
share/luameta/googleimage.lua
share/luameta/googleimage.lua
+9
-8
No files found.
share/luameta/googleimage.lua
View file @
060d116f
...
@@ -2,19 +2,20 @@
...
@@ -2,19 +2,20 @@
-- $Id$
-- $Id$
-- Replace non alphanumeric char by +
-- Replace non alphanumeric char by +
function
get_query
(
)
function
get_query
(
title
)
if
vlc
.
title
then
title
=
vlc
.
title
else
title
=
vlc
.
name
end
vlc
.
msg_dbg
(
title
)
return
title
:
gsub
(
"
[^
(a-z|A-Z|0-9)
]
"
,
"+"
)
return
title
:
gsub
(
"
[^
(a-z|A-Z|0-9)
]
"
,
"+"
)
end
end
-- Return the artwork
-- Return the artwork
function
fetch_art
()
function
fetch_art
()
fd
=
vlc
.
stream_new
(
"http://images.google.com/images?q="
..
get_query
(
)
)
if
vlc
.
title
then
title
=
vlc
.
title
elseif
vlc
.
name
then
title
=
vlc
.
name
else
return
nil
end
fd
=
vlc
.
stream_new
(
"http://images.google.com/images?q="
..
get_query
(
title
)
)
page
=
vlc
.
stream_read
(
fd
,
65653
)
page
=
vlc
.
stream_read
(
fd
,
65653
)
vlc
.
stream_delete
(
fd
)
vlc
.
stream_delete
(
fd
)
_
,
_
,
arturl
=
string.find
(
page
,
"imgurl=([^&]+)"
)
_
,
_
,
arturl
=
string.find
(
page
,
"imgurl=([^&]+)"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment