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
f5545462
Commit
f5545462
authored
May 21, 2010
by
Ilkka Ollakka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove unneeded appletrailers_iphone.lua
parent
e78e5ad1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
68 deletions
+0
-68
share/Makefile.am
share/Makefile.am
+0
-2
share/lua/playlist/appletrailers_iphone.lua
share/lua/playlist/appletrailers_iphone.lua
+0
-66
No files found.
share/Makefile.am
View file @
f5545462
...
...
@@ -224,7 +224,6 @@ nobase_vlclib_DATA = \
lua/modules/simplexml.luac
\
lua/playlist/anevia_streams.luac
\
lua/playlist/appletrailers.luac
\
lua/playlist/appletrailers_iphone.luac
\
lua/playlist/break.luac
\
lua/playlist/cue.luac
\
lua/playlist/dailymotion.luac
\
...
...
@@ -270,7 +269,6 @@ EXTRA_DIST += \
lua/playlist/README.txt
\
lua/playlist/anevia_streams.lua
\
lua/playlist/appletrailers.lua
\
lua/playlist/appletrailers_iphone.lua
\
lua/playlist/break.lua
\
lua/playlist/cue.lua
\
lua/playlist/dailymotion.lua
\
...
...
share/lua/playlist/appletrailers_iphone.lua
deleted
100644 → 0
View file @
e78e5ad1
--[[
Translate trailers.apple.com video webpages URLs to the corresponding
movie URL
$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.
--]]
-- Probe function.
function
probe
()
return
vlc
.
access
==
"http"
and
string.match
(
vlc
.
path
,
"trailers.apple.com/trailers/iphone"
)
end
function
find
(
haystack
,
needle
)
local
_
,
_
,
r
=
string.find
(
haystack
,
needle
)
return
r
end
-- Parse function.
function
parse
()
p
=
{}
path
=
""
arturl
=
""
title
=
""
description
=
""
while
true
do
line
=
vlc
.
readline
()
if
not
line
then
break
end
for
urli
in
string.gmatch
(
line
,
"http://trailers.apple.com/movies/.-%.mov"
)
do
path
=
vlc
.
strings
.
decode_uri
(
urli
)
end
for
urli
in
string.gmatch
(
line
,
"http://.-%/poster.jpg"
)
do
arturl
=
vlc
.
strings
.
decode_uri
(
urli
)
end
if
string.match
(
line
,
"<title>"
)
then
title
=
vlc
.
strings
.
resolve_xml_special_chars
(
find
(
line
,
"<title>(.-)<"
)
)
title
=
string.gsub
(
title
,
" %- .*"
,
""
)
end
if
string.match
(
line
,
"<meta name=\"
Description
\
""
)
then
description
=
vlc
.
strings
.
resolve_xml_special_chars
(
find
(
line
,
"name=\"
Description
\
" content=\"
(.
-
)
\
""
)
)
end
end
for
index
,
resolution
in
ipairs
({
"480p"
,
"720p"
,
"1080p"
})
do
locationurl
=
string.gsub
(
path
,
"r320i.mov"
,
"h"
..
resolution
..
".mov"
)
table.insert
(
p
,
{
path
=
locationurl
;
name
=
title
..
" ("
..
resolution
..
")"
;
arturl
=
arturl
;
description
=
description
;
options
=
{
":http-user-agent=Quicktime/7.2.0 vlc lua edition"
,
":play-and-pause"
,
":demux=avformat"
};}
)
end
return
p
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