-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- old player is still available under `/clappr/:id`
- Loading branch information
Showing
10 changed files
with
2,823 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>JioTV Go</title> | ||
<style> | ||
body { | ||
margin: 0; | ||
padding: 0; | ||
background-color: black; | ||
overflow-y: hidden; | ||
} | ||
</style> | ||
<link rel="stylesheet" href="/static/flowplayer.css"> | ||
<script src="/static/flowplayer.min.js"></script> | ||
<script src="/static/hls.min.js"></script> | ||
<script src="/static/qsel.min.js"></script> | ||
<script src="/static/keyboard.min.js"></script> | ||
</head> | ||
|
||
<body> | ||
<div id="jiotv_go_player"></div> | ||
<script> | ||
var player = flowplayer('#jiotv_go_player', | ||
{ | ||
src: '{{ .play_url }}', | ||
live: true, | ||
seekable: false, | ||
autplay: true, | ||
qsel: {}, | ||
ui: flowplayer.ui.USE_THIN_CONTROLBAR, | ||
preload: 'auto' | ||
}); | ||
</script> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters