Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grayjay
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoStreaming
Grayjay
Merge requests
!82
HLS and DASH downloads
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
HLS and DASH downloads
adaptive-download
into
master
Overview
0
Commits
3
Pipelines
0
Changes
12
Closed
Kai DeLorenzo
requested to merge
adaptive-download
into
master
1 month ago
Overview
0
Commits
3
Pipelines
0
Changes
12
Expand
Improve support for HLS and DASH downloads
Changelog: added
0
0
Merge request reports
Compare
master
version 2
8c879c68
1 month ago
version 1
0190bbff
1 month ago
master (base)
and
latest version
latest version
f31abac4
3 commits,
1 month ago
version 2
8c879c68
2 commits,
1 month ago
version 1
0190bbff
1 commit,
1 month ago
12 files
+
729
−
141
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
12
Search (e.g. *.vue) (Ctrl+P)
app/src/main/java/com/futo/platformplayer/api/media/models/streams/sources/HLSManifestSource.kt
+
10
−
7
Options
package
com.futo.platformplayer.api.media.models.streams.sources
import
com.futo.platformplayer.others.Language
class
HLSManifestSource
:
IVideoSource
,
IHLSManifestSource
{
override
val
width
:
Int
=
0
;
override
val
height
:
Int
=
0
;
override
val
container
:
String
=
"HLS"
;
override
val
width
:
Int
=
0
;
override
val
height
:
Int
=
0
;
override
val
container
:
String
=
"HLS"
;
override
val
codec
:
String
=
"HLS"
;
override
val
name
:
String
=
"HLS"
;
override
val
bitrate
:
Int
?
=
null
;
override
val
url
:
String
;
override
val
name
:
String
=
"HLS"
;
override
val
bitrate
:
Int
=
0
;
override
val
url
:
String
;
override
val
duration
:
Long
=
0
;
override
val
language
:
String
=
Language
.
UNKNOWN
;
override
var
priority
:
Boolean
=
false
;
constructor
(
url
:
String
)
{
constructor
(
url
:
String
)
{
this
.
url
=
url
;
}
}
\ No newline at end of file
Loading