Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Steve Lhomme
VLC
Commits
b3e157d9
Commit
b3e157d9
authored
Oct 18, 2007
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lua demuxer for lelombrik.net
parent
5da32d65
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
0 deletions
+27
-0
share/luaplaylist/lelombrik.lua
share/luaplaylist/lelombrik.lua
+27
-0
No files found.
share/luaplaylist/lelombrik.lua
0 → 100644
View file @
b3e157d9
-- $Id$
-- French humor site: http://lelombrik.net
-- Probe function.
function
probe
()
return
vlc
.
access
==
"http"
and
string.match
(
vlc
.
path
,
"lelombrik.net/videos"
)
end
-- Parse function.
function
parse
()
vidtitle
=
""
while
true
do
line
=
vlc
.
readline
()
if
not
line
then
break
end
if
string.match
(
line
,
"id=\"
nom_fichier
\
">"
)
then
vidtitle
=
string.gsub
(
line
,
".*\"
nom_fichier
\
">([^<]*).*"
,
"%1"
)
end
if
string.match
(
line
,
"<param name=\"
movie
\
""
)
then
-- fallback: retrieve the title from the url if we didn't find it
if
vidtitle
==
""
then
vidtitle
=
string.gsub
(
vlc
.
path
,
".*/([^.]*).*"
,
"%1"
)
end
return
{
{
path
=
string.gsub
(
line
,
".*%?file=([^&]*).*"
,
"%1"
);
arturl
=
string.gsub
(
line
,
".*&image=([^&]*).*"
,
"%1"
);
title
=
vidtitle
}
}
end
end
end
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