Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
91d838ca
Commit
91d838ca
authored
Dec 01, 2011
by
Konstantin Pavlov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Lua: Fix extreme.com playlist parser. They use http now.
parent
b7c4b275
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
+3
-5
share/lua/playlist/extreme.lua
share/lua/playlist/extreme.lua
+3
-5
No files found.
share/lua/playlist/extreme.lua
View file @
91d838ca
...
...
@@ -72,12 +72,10 @@ function parse()
-- Try to find out if its a freecaster streaming or just a link to some
-- other video streaming website
-- FIXME: I was unable to find any http-based freecaster streams,
-- but I remember there were some a few months back.
-- Right now we assume everything is streamed using RTMP, so we feed them to avio.
-- We assume freecaster now streams in http
if string.match( line, "
<
streams
type
=
\
"5\"
server
=
\
"(.*)\"
>
" )
then
_,_,
rtmp
server = string.find( line, "
<
streams
type
=
\
"5\"
server
=
\
"(.*)\"
>
" )
_,_,
video
server = string.find( line, "
<
streams
type
=
\
"5\"
server
=
\
"(.*)\"
>
" )
gostraight = false
end
...
...
@@ -94,7 +92,7 @@ function parse()
_
,
_
,
height
=
string.find
(
line
,
"height=\"
(
%
d
+
)
\
" duration"
)
_
,
_
,
playpath
=
string.find
(
line
,
"
\"
>(.*)</stream>"
)
if
(
prefres
<
0
or
tonumber
(
height
)
<=
prefres
)
then
path
=
"avio://"
..
rtmpserver
..
" playpath="
..
playpath
path
=
videoserver
..
playpath
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