Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
532e5d01
Commit
532e5d01
authored
Jul 18, 2010
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lua playlist: update lelombrik parser
parent
c389095a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
9 deletions
+16
-9
share/lua/playlist/lelombrik.lua
share/lua/playlist/lelombrik.lua
+16
-9
No files found.
share/lua/playlist/lelombrik.lua
View file @
532e5d01
...
...
@@ -28,19 +28,26 @@ end
-- Parse function.
function
parse
()
vidtitle
=
""
while
true
do
line
=
vlc
.
readline
()
if
not
line
then
break
end
if
not
line
then
vlc
.
msg
.
err
(
"Couldn't extract the video URL from lelombrik"
)
return
{
}
end
if
string.match
(
line
,
"id=\"
nom_fichier
\
">"
)
then
vidtitle
=
string.gsub
(
line
,
".*\"
nom_fichier
\
">([^<]*).*"
,
"%1"
)
title
=
string.gsub
(
line
,
".*\"
nom_fichier
\
">([^<]*).*"
,
"%1"
)
elseif
string.match
(
line
,
"'file'"
)
then
_
,
_
,
path
=
string.find
(
line
,
"'file', *'([^']*)"
)
elseif
string.match
(
line
,
"flashvars="
)
then
path
=
string.gsub
(
line
,
"flashvars=.*&file=([^&]*).*"
,
"%1"
)
arturl
=
string.gsub
(
line
,
"flashvars=.*&image=([^&]*).*"
,
"%1"
)
elseif
string.match
(
line
,
"'image'"
)
then
_
,
_
,
arturl
=
string.find
(
line
,
"'image', *'([^']*)"
)
end
if
string.match
(
line
,
"flvplayer.swf"
)
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
,
".*flashvars=\"
&
file
=
([
^
&
]
*
).
*
", "
%
1
" ); arturl = string.gsub( line, "
.
*
&
image
=
([
^
&
]
*
).
*
", "
%
1
" ); title = vidtitle } }
if
path
and
arturl
and
title
then
return
{
{
path
=
path
;
arturl
=
arturl
;
title
=
title
}
}
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