in manage places, resurrect place name (top right), fixes #670
This commit is contained in:
parent
53f57939ec
commit
d886ffdde2
3 changed files with 15 additions and 8 deletions
|
|
@ -33,21 +33,27 @@ Ox.load('UI', function() {
|
|||
|
||||
Ox.get('srt/0097514.srt', function(srt) {
|
||||
|
||||
var $videoTimelinePlayer = Ox.VideoTimelinePlayer({
|
||||
var id = '0097514',
|
||||
// var id = '0318034',
|
||||
|
||||
$videoTimelinePlayer = Ox.VideoTimelinePlayer({
|
||||
duration: 3029.96,
|
||||
//duration: 5956.24,
|
||||
getFrameURL: function(position) {
|
||||
return 'http://0xdb.org/0097514/64p' + position + '.jpg'
|
||||
return 'http://0xdb.org/' + id + '/64p' + position + '.jpg'
|
||||
},
|
||||
getImageURL: function(i) {
|
||||
return 'http://0xdb.org/0097514/timeline64p' + i + '.png'
|
||||
return 'http://0xdb.org/' + id + '/timeline64p' + i + '.png'
|
||||
//return 'png/timelinecenter64p' + i + '.png'
|
||||
},
|
||||
height: window.innerHeight - 65,
|
||||
paused: true,
|
||||
position: 1000,
|
||||
subtitles: Ox.parseSRT(srt),
|
||||
timelineURL: 'http://0xdb.org/0097514/timeline16p.png',
|
||||
timelineURL: 'http://0xdb.org/' + id + '/timeline16p.png',
|
||||
videoRatio: 1.291667,
|
||||
videoURL: 'http://0xdb.org/0097514/96p.webm',
|
||||
//videoRatio: 1.833333,
|
||||
videoURL: 'http://0xdb.org/' + id + '/96p.webm',
|
||||
width: window.innerWidth - 129
|
||||
})
|
||||
.bindEvent({
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue