ffplayout/pages/player.vue
2022-10-02 21:41:15 +02:00

1191 lines
42 KiB
Vue

<template>
<div style="height:100%;">
<Menu />
<b-container class="control-container">
<b-row class="control-row" align-v="stretch">
<b-col cols="3" class="player-col">
<b-aspect aspect="16:9">
<video
v-if="configGui[configID].preview_url.split('.').pop() === 'flv'"
id="httpStream"
ref="httpStream"
width="100%"
controls
/>
<video-player v-else-if="videoOptions.sources" :key="configID" reference="videoPlayer" :options="videoOptions" />
</b-aspect>
</b-col>
<b-col>
<b-row class="control-col">
<b-col cols="8" class="status-col">
<b-row class="status-row">
<b-col class="time-col clock-col">
<div class="time-str">
{{ timeStr }}
</div>
</b-col>
<b-col class="time-col counter-col">
<div class="time-str">
{{ timeLeft }}
</div>
</b-col>
<b-col class="current-clip">
<div class="current-clip-text">
{{ currentClip | filename }}
</div>
<div class="current-clip-meta">
<strong>Duration:</strong> {{ $secToHMS(currentClipDuration) }} | <strong>In:</strong> {{ $secToHMS(currentClipIn) }} | <strong>Out:</strong> {{ $secToHMS(currentClipOut) }}
</div>
<div class="current-clip-progress">
<b-progress :value="progressValue" variant="warning" />
</div>
</b-col>
</b-row>
</b-col>
<b-col cols="4" class="control-unit-col">
<b-row class="control-unit-row">
<b-col>
<div>
<b-button
title="Start Playout Service"
class="control-button control-button-play"
:class="isPlaying"
variant="primary"
@click="controlProcess('start')"
>
<b-icon-play />
</b-button>
</div>
</b-col>
<b-col>
<div>
<b-button
title="Stop Playout Service"
class="control-button control-button-stop"
variant="primary"
@click="controlProcess('stop')"
>
<b-icon-stop />
</b-button>
</div>
</b-col>
<b-col>
<div>
<b-button
title="Restart Playout Service"
class="control-button control-button-restart"
variant="primary"
@click="controlProcess('restart')"
>
<b-icon-arrow-clockwise />
</b-button>
</div>
</b-col>
<div class="w-100" />
<b-col>
<div>
<b-button
title="Jump to last Clip"
class="control-button control-button-control"
variant="primary"
@click="controlPlayout('back')"
>
<b-icon-skip-start />
</b-button>
</div>
</b-col>
<b-col>
<div>
<b-button
title="Reset Playout State"
class="control-button control-button-control"
variant="primary"
@click="controlPlayout('reset')"
>
<b-icon-arrow-repeat />
</b-button>
</div>
</b-col>
<b-col>
<div>
<b-button
title="Jump to next Clip"
class="control-button control-button-control"
variant="primary"
@click="controlPlayout('next')"
>
<b-icon-skip-end />
</b-button>
</div>
</b-col>
</b-row>
</b-col>
</b-row>
</b-col>
</b-row>
<b-row class="date-row">
<b-col>
<b-datepicker
v-if="configPlayout.playlist.path.split('.').pop() !== 'json'"
v-model="listDate"
size="sm"
class="date-div"
offset="-35px"
/>
</b-col>
</b-row>
<splitpanes class="list-row default-theme pane-row">
<pane min-size="20" size="24">
<loading
:active.sync="browserIsLoading"
:can-cancel="false"
:is-full-page="false"
background-color="#485159"
color="#ff9c36"
/>
<div v-if="folderTree.parent" class="browser-div">
<div>
<b-breadcrumb>
<b-breadcrumb-item
v-for="(crumb, index) in crumbs"
:key="crumb.key"
:active="index === crumbs.length - 1"
@click="getPath(crumb.path)"
>
{{ crumb.text }}
</b-breadcrumb-item>
</b-breadcrumb>
</div>
<div class="player-browser-scroll">
<b-list-group>
<b-list-group-item
v-for="folder in folderTree.folders"
:key="folder.key"
class="browser-item"
>
<b-link @click="getPath(`/${folderTree.source}/${folder}`)">
<b-icon-folder-fill class="browser-icons" /> {{ folder }}
</b-link>
</b-list-group-item>
<draggable
:list="folderTree.files"
:clone="cloneClip"
:group="{ name: 'playlist', pull: 'clone', put: false }"
:sort="false"
>
<b-list-group-item
v-for="file in folderTree.files"
:key="file.name"
class="browser-item"
>
<b-row>
<b-col cols="1" class="browser-icons-col">
<b-icon-film class="browser-icons" />
</b-col>
<b-col class="browser-item-text grabbing">
{{ file.name }}
</b-col>
<b-col cols="1" class="browser-play-col">
<b-link @click="showPreviewModal(`/${folderTree.parent}/${folderTree.source}/${file.name}`)">
<b-icon-play-fill />
</b-link>
</b-col>
<b-col cols="1" class="browser-dur-col">
<span class="duration">{{ file.duration | toMin }}</span>
</b-col>
</b-row>
</b-list-group-item>
</draggable>
</b-list-group>
</div>
</div>
</pane>
<pane>
<div class="playlist-container">
<b-list-group class="list-group-header">
<b-list-group-item>
<b-row class="playlist-row">
<b-col v-if="configPlayout.playlist.day_start" cols="1" class="timecode">
Start
</b-col>
<b-col>
File
</b-col>
<b-col cols="1" class="text-center playlist-input">
Play
</b-col>
<b-col cols="1" class="timecode">
Duration
</b-col>
<b-col cols="1" class="timecode">
In
</b-col>
<b-col cols="1" class="timecode">
Out
</b-col>
<b-col cols="1" class="text-center playlist-input">
Ad
</b-col>
<b-col cols="1" class="text-center playlist-input">
Edit
</b-col>
<b-col cols="1" class="text-center playlist-input">
Delete
</b-col>
</b-row>
</b-list-group-item>
</b-list-group>
<div id="scroll-container">
<loading
:active.sync="playlistIsLoading"
:can-cancel="false"
:is-full-page="false"
background-color="#485159"
color="#ff9c36"
/>
<b-list-group class="playlist-list-group" :style="`height: ${(playlist) ? playlist.length * 52 + 52 : 300}px`">
<draggable
id="playlist-group"
v-model="playlist"
group="playlist"
@start="drag=true"
@add="scrollEnd"
@end="drag=false"
>
<b-list-group-item
v-for="(item, index) in playlist"
:id="`clip_${index}`"
:key="item.key"
class="playlist-item"
:class="index === currentClipIndex ? 'active-playlist-clip' : ''"
>
<b-row class="playlist-row">
<b-col v-if="configPlayout.playlist.day_start" cols="1" class="timecode">
{{ item.begin | secondsToTime }}
</b-col>
<b-col class="grabbing filename">
{{ item.source | filename }}
</b-col>
<b-col cols="1" class="text-center playlist-input">
<b-link @click="showPreviewModal(item.source)">
<b-icon-play-fill />
</b-link>
</b-col>
<b-col cols="1" text class="timecode">
{{ item.duration | secondsToTime }}
</b-col>
<b-col cols="1" class="timecode">
<b-form-input :value="item.in | secondsToTime" size="sm" @input="changeTime('in', index, $event)" />
</b-col>
<b-col cols="1" class="timecode">
<b-form-input :value="item.out | secondsToTime" size="sm" @input="changeTime('out', index, $event)" />
</b-col>
<b-col cols="1" class="text-center playlist-input">
<b-form-checkbox
v-model="item.category"
value="advertisement"
unchecked-value=""
/>
</b-col>
<b-col cols="1" class="text-center playlist-input">
<b-link @click="editItem(index)">
<b-icon-pencil-square />
</b-link>
</b-col>
<b-col cols="1" class="text-center playlist-input">
<b-link @click="removeItemFromPlaylist(index)">
<b-icon-x-circle-fill />
</b-link>
</b-col>
</b-row>
</b-list-group-item>
</draggable>
</b-list-group>
</div>
</div>
</pane>
</splitpanes>
<b-button-group class="media-button">
<b-button v-b-tooltip.hover title="Copy Playlist" variant="primary" @click="showCopyModal()">
<b-icon-files />
</b-button>
<b-button v-if="!configPlayout.playlist.loop" v-b-tooltip.hover title="Loop Clips in Playlist" variant="primary" @click="loopClips()">
<b-icon-view-stacked />
</b-button>
<b-button v-b-tooltip.hover title="Add (remote) Source to Playlist" variant="primary" @click="showAddSource()">
<b-icon-file-earmark-plus />
</b-button>
<b-button v-b-tooltip.hover title="Import text/m3u file" variant="primary" @click="showImport()">
<b-icon-file-text />
</b-button>
<b-button v-b-tooltip.hover title="Generate a randomized Playlist" variant="primary" @click="generatePlaylist(listDate)">
<b-icon-sort-down-alt />
</b-button>
<b-button v-b-tooltip.hover title="Reset Playlist" variant="primary" @click="resetPlaylist()">
<b-icon-arrow-counterclockwise />
</b-button>
<b-button v-b-tooltip.hover title="Save Playlist" variant="primary" @click="savePlaylist(listDate)">
<b-icon-download />
</b-button>
<b-button v-b-tooltip.hover title="Delete Playlist" variant="primary" @click="showDeleteModal()">
<b-icon-trash />
</b-button>
</b-button-group>
</b-container>
<b-modal
id="preview-modal"
ref="prev-modal"
size="xl"
centered
:title="`Preview: ${previewSource}`"
hide-footer
>
<video-player v-if="previewOptions" reference="previewPlayer" :options="previewOptions" />
</b-modal>
<b-modal
id="import-modal"
ref="import-modal"
centered
title="Import Playlist"
hide-footer
no-close-on-backdrop
>
<b-form @submit="onSubmitImport" @reset="onResetImport">
<b-form-file
v-model="textFile"
:state="Boolean(textFile)"
placeholder="Choose a file or drop it here..."
drop-placeholder="Drop file here..."
@reset="onResetImport"
/>
<div class="media-button">
<b-button type="submit" variant="primary">
Import
</b-button>
<b-button type="reset" variant="primary">
Cancel
</b-button>
</div>
</b-form>
</b-modal>
<b-modal
id="copy-modal"
ref="copy-modal"
centered
:title="`Copy Program ${listDate} to:`"
content-class="copy-program"
@ok="savePlaylist(targetDate)"
>
<b-calendar v-model="targetDate" locale="en-US" class="centered" />
</b-modal>
<b-modal
id="delete-modal"
ref="delete-modal"
centered
title="Delete Program"
content-class="copy-program"
@ok="deletePlaylist(listDate)"
>
Delete program from {{ listDate }}
</b-modal>
<b-modal
id="add-source-modal"
ref="add-source-modal"
title="Add/Edit Source"
@ok="handleSource"
>
<form ref="form" @submit.stop.prevent="addSource">
<b-form-group label="In" label-for="in-input">
<b-form-input id="in-input" v-model.number="newSource.in" type="number" inline />
</b-form-group>
<b-form-group label="Out" label-for="out-input" invalid-feedback="Out is required">
<b-form-input id="out-input" v-model.number="newSource.out" type="number" inline required />
</b-form-group>
<b-form-group label="Duration" label-for="duration-input" invalid-feedback="Out is required">
<b-form-input id="duration-input" v-model.number="newSource.duration" type="number" inline required />
</b-form-group>
<b-form-group label="Source" label-for="source-input" invalid-feedback="Source is required">
<b-form-input id="source-input" v-model="newSource.source" required />
</b-form-group>
<b-form-group label="Audio" label-for="audio-input">
<b-form-input id="audio-input" v-model="newSource.audio" />
</b-form-group>
<b-form-group label="Custom Filter" label-for="filter-input">
<b-form-input id="filter-input" v-model="newSource.custom_filter" />
</b-form-group>
<b-form-checkbox
id="ad-input"
v-model="newSource.category"
value="advertisement"
unchecked-value=""
>
Advertisement
</b-form-checkbox>
</form>
</b-modal>
</div>
</template>
<script>
import mpegts from 'mpegts.js'
/* eslint-disable vue/custom-event-name-casing */
import { mapState } from 'vuex'
import Menu from '@/components/Menu.vue'
function scrollTo (t) {
let child
if (t.currentClipIndex === null) {
child = document.getElementById('clip_0')
} else {
child = document.getElementById(`clip_${t.currentClipIndex}`)
}
if (child) {
const parent = document.getElementById('scroll-container')
const topPos = child.offsetTop
parent.scrollTop = topPos - 50
}
}
export default {
name: 'Player',
components: {
Menu
},
filters: {
secondsToTime (sec) {
return new Date(sec * 1000).toISOString().substr(11, 8)
}
},
middleware: 'auth',
data () {
return {
browserIsLoading: false,
playlistIsLoading: false,
isPlaying: '',
listDate: this.$dayjs().format('YYYY-MM-DD'),
targetDate: this.$dayjs().format('YYYY-MM-DD'),
interval: null,
videoOptions: {
liveui: true,
controls: true,
suppressNotSupportedError: true,
autoplay: false,
preload: 'auto',
sources: []
},
httpFlvSource: {
type: 'flv',
isLive: true,
url: ''
},
mpegtsOptions: {
enableWorker: true,
lazyLoadMaxDuration: 3 * 60,
seekType: 'range',
liveBufferLatencyChasing: true
},
previewOptions: {},
previewComp: null,
previewSource: '',
editId: undefined,
textFile: null,
newSource: {
begin: 0,
in: 0,
out: 0,
duration: 0,
category: '',
custom_filter: '',
source: ''
}
}
},
computed: {
...mapState('config', ['configID', 'configGui', 'configPlayout', 'utcOffset', 'startInSec']),
...mapState('media', ['crumbs', 'folderTree']),
...mapState('playlist', [
'timeStr', 'timeLeft', 'currentClip', 'progressValue', 'currentClipIndex',
'currentClipDuration', 'currentClipIn', 'currentClipOut']),
playlist: {
get () {
return this.$store.state.playlist.playlist
},
set (list) {
this.$store.commit('playlist/UPDATE_PLAYLIST', this.$processPlaylist(this.startInSec, list))
}
}
},
watch: {
listDate () {
this.playlistIsLoading = true
this.getPlaylist()
this.playlistIsLoading = false
setTimeout(() => { scrollTo(this) }, 5000)
},
configID (id) {
this.videoOptions.sources = [
{
type: 'application/x-mpegURL',
src: this.configGui[id].preview_url
}
]
this.getPath('')
this.getPlaylist()
setTimeout(() => { scrollTo(this) }, 3000)
}
},
async created () {
this.listDate = this.$dayjs().utcOffset(this.utcOffset).format('YYYY-MM-DD')
this.targetDate = this.listDate
this.videoOptions.sources = [
{
type: 'application/x-mpegURL',
src: this.configGui[this.configID].preview_url
}
]
this.getStatus()
await this.getPath('')
const timeInSec = this.$timeToSeconds(this.$dayjs().utcOffset(this.utcOffset).format('HH:mm:ss'))
const listStartSec = this.$timeToSeconds(this.configPlayout.playlist.day_start)
if (listStartSec > timeInSec) {
this.listDate = this.$dayjs(this.listDate).utcOffset(this.utcOffset).subtract(1, 'day').format('YYYY-MM-DD')
}
await this.getPlaylist()
},
mounted () {
if (process.env.NODE_ENV === 'production') {
this.interval = setInterval(() => {
this.$store.dispatch('playlist/playoutStat')
this.getStatus()
}, 5000)
this.$store.dispatch('playlist/playoutStat')
} else {
this.$store.dispatch('playlist/playoutStat')
}
const streamExtension = this.configGui[this.configID].preview_url.split('.').pop()
let player
if (streamExtension === 'flv') {
this.httpFlvSource.url = this.configGui[this.configID].preview_url
const element = this.$refs.httpStream
if (typeof player !== 'undefined') {
if (player != null) {
player.unload()
player.detachMediaElement()
player.destroy()
player = null
}
}
player = mpegts.createPlayer(this.httpFlvSource, this.mpegtsOptions)
player.attachMediaElement(element)
player.load()
}
setTimeout(() => { scrollTo(this) }, 4000)
},
beforeDestroy () {
clearInterval(this.interval)
},
methods: {
async getPath (path) {
this.browserIsLoading = true
await this.$store.dispatch('media/getTree', { path })
this.browserIsLoading = false
},
async getStatus () {
const channel = this.configGui[this.configID].id
const status = await this.$axios.post(`api/control/${channel}/process/`, { command: 'status' })
if (status.data && status.data === 'active') {
this.isPlaying = 'is-playing'
} else {
this.isPlaying = ''
}
},
async controlProcess (state) {
const channel = this.configGui[this.configID].id
await this.$axios.post(`api/control/${channel}/process/`, { command: state })
setTimeout(() => { this.getStatus() }, 1000)
},
async controlPlayout (state) {
const channel = this.configGui[this.configID].id
await this.$axios.post(`api/control/${channel}/playout/`, { command: state })
setTimeout(() => { this.getStatus() }, 1000)
},
async getPlaylist () {
await this.$store.dispatch('playlist/getPlaylist', { date: this.listDate })
},
showPreviewModal (src) {
const storagePath = this.configPlayout.storage.path
const storagePathArr = storagePath.split('/')
const storageRoot = storagePathArr.pop()
src = '/' + src.substring(src.indexOf(storageRoot))
this.previewSource = src.split('/').slice(-1)[0]
const ext = this.previewSource.split('.').slice(-1)[0]
this.previewOptions = {
liveui: false,
controls: true,
suppressNotSupportedError: true,
autoplay: false,
preload: 'auto',
sources: [
{
type: `video/${ext}`,
src: '/' + encodeURIComponent(src.replace(/^[/]+/, '').replace(/[/]+/, '/')).replace(/%2F/g, '/')
}
]
}
this.$root.$emit('bv::show::modal', 'preview-modal')
},
cloneClip ({ name, duration }) {
const storagePath = this.configPlayout.storage.path
const sourcePath = `${storagePath}/${this.folderTree.source}/${name}`.replace('//', '/')
return {
source: sourcePath,
in: 0,
out: duration,
duration
}
},
scrollEnd (event) {
if (event.newIndex + 1 === this.playlist.length) {
const objDiv = document.getElementById('scroll-container')
objDiv.scrollTop = objDiv.scrollHeight
}
},
changeTime (pos, index, input) {
if (input.match(/(?:[01]\d|2[0123]):(?:[012345]\d):(?:[012345]\d)/gm)) {
const sec = this.$timeToSeconds(input)
if (pos === 'in') {
this.playlist[index].in = sec
} else if (pos === 'out') {
this.playlist[index].out = sec
}
this.$store.commit('playlist/UPDATE_PLAYLIST', this.$processPlaylist(this.startInSec, this.playlist))
}
},
removeItemFromPlaylist (index) {
this.playlist.splice(index, 1)
this.$store.commit('playlist/UPDATE_PLAYLIST', this.$processPlaylist(this.startInSec, this.playlist))
},
async resetPlaylist () {
await this.$store.dispatch('playlist/getPlaylist', { date: this.listDate })
},
showImport () {
this.$root.$emit('bv::show::modal', 'import-modal')
},
onResetImport (evt) {
evt.preventDefault()
this.textFile = null
this.inputPlaceholder = 'Choose files or drop them here...'
this.$root.$emit('bv::hide::modal', 'import-modal')
},
async onSubmitImport (evt) {
evt.preventDefault()
if (this.textFile === null) {
this.$root.$emit('bv::hide::modal', 'import-modal')
return
}
const formData = new FormData()
formData.append(this.textFile.name, this.textFile)
const config = {
headers: { Authorization: 'Bearer ' + this.$store.state.auth.jwtToken }
}
await this.$axios.put(
`api/file/${this.configGui[this.configID].id}/import/?file=${this.textFile.name}&date=${this.listDate}`,
formData,
config
)
.catch(err => console.log(err))
this.$root.$emit('bv::hide::modal', 'import-modal')
this.textFile = null
await this.getPlaylist()
},
loopClips () {
const tempList = []
let count = 0
while (count < 86400) {
for (const item of this.playlist) {
if (count < 86400) {
tempList.push(this.$_.cloneDeep(item))
count += item.out - item.in
} else {
break
}
}
}
this.$store.commit('playlist/UPDATE_PLAYLIST', this.$processPlaylist(this.startInSec, tempList))
},
async generatePlaylist (listDate) {
this.playlistIsLoading = true
const generate = await this.$axios.get(
`api/playlist/${this.configGui[this.configID].id}/generate/${listDate}`
)
this.playlistIsLoading = false
if (generate.status === 200 || generate.status === 201) {
this.$store.commit('UPDATE_VARIANT', 'success')
this.$store.commit('UPDATE_SHOW_ERROR_ALERT', true)
this.$store.commit('UPDATE_ERROR_ALERT_MESSAGE', 'Generate Playlist done...')
this.$store.commit('playlist/UPDATE_PLAYLIST', this.$processPlaylist(this.startInSec, generate.data.program))
setTimeout(() => { this.$store.commit('UPDATE_SHOW_ERROR_ALERT', false) }, 2000)
}
},
async savePlaylist (saveDate) {
this.$store.commit('playlist/UPDATE_PLAYLIST', this.$processPlaylist(this.startInSec, this.playlist))
const saveList = this.playlist.map(({ begin, ...item }) => item)
const postSave = await this.$axios.post(
`api/playlist/${this.configGui[this.configID].id}/`,
{ channel: this.configGui[this.configID].name, date: saveDate, program: saveList }
)
if (postSave.status === 200 || postSave.status === 201) {
this.$store.commit('UPDATE_VARIANT', 'success')
this.$store.commit('UPDATE_SHOW_ERROR_ALERT', true)
this.$store.commit('UPDATE_ERROR_ALERT_MESSAGE', postSave.data)
setTimeout(() => { this.$store.commit('UPDATE_SHOW_ERROR_ALERT', false) }, 2000)
}
if (postSave.status === 409) {
this.$store.commit('UPDATE_VARIANT', 'success')
this.$store.commit('UPDATE_SHOW_ERROR_ALERT', true)
this.$store.commit('UPDATE_ERROR_ALERT_MESSAGE', postSave.data)
setTimeout(() => { this.$store.commit('UPDATE_SHOW_ERROR_ALERT', false) }, 4000)
}
},
async deletePlaylist (playlistDate) {
const postDelete = await this.$axios.delete(`api/playlist/${this.configGui[this.configID].id}/${playlistDate}`)
if (postDelete.status === 200 || postDelete.status === 201) {
this.$store.commit('playlist/UPDATE_PLAYLIST', [])
this.$store.commit('UPDATE_VARIANT', 'success')
this.$store.commit('UPDATE_SHOW_ERROR_ALERT', true)
this.$store.commit('UPDATE_ERROR_ALERT_MESSAGE', 'Playlist deleted...')
setTimeout(() => { this.$store.commit('UPDATE_SHOW_ERROR_ALERT', false) }, 2000)
}
},
showCopyModal () {
this.$root.$emit('bv::show::modal', 'copy-modal')
},
showDeleteModal () {
this.$root.$emit('bv::show::modal', 'delete-modal')
},
showAddSource () {
this.$bvModal.show('add-source-modal')
},
handleSource (bvModalEvt) {
// Prevent modal from closing
bvModalEvt.preventDefault()
// Trigger submit handler
this.addSource()
},
addSource () {
if (this.editId === undefined) {
const list = this.playlist
list.push(this.newSource)
this.$store.commit('playlist/UPDATE_PLAYLIST', this.$processPlaylist(this.startInSec, list))
} else {
this.playlist[this.editId] = this.newSource
this.editId = undefined
}
this.newSource = {
begin: 0,
in: 0,
out: 0,
duration: 0,
category: '',
custom_filter: '',
source: ''
}
this.$nextTick(() => {
this.$bvModal.hide('add-source-modal')
})
},
editItem (i) {
this.editId = i
this.newSource = {
begin: this.playlist[i].begin,
in: this.playlist[i].in,
out: this.playlist[i].out,
duration: this.playlist[i].duration,
category: this.playlist[i].category,
custom_filter: this.playlist[i].custom_filter,
source: this.playlist[i].source
}
this.$bvModal.show('add-source-modal')
}
}
}
</script>
<style lang="scss" scoped>
.control-container {
width: auto;
max-width: 100%;
height: calc(100% - 40px);
}
.control-row {
min-height: 254px;
}
.player-col {
max-width: 542px;
min-width: 380px;
}
.control-col {
height: 100%;
min-height: 254px;
}
.status-col {
padding-right: 30px;
}
.control-unit-col {
min-width: 250px;
padding: 2px 17px 2px 2px;
}
.control-unit-row {
background: #32383E;
height: 100%;
margin-right: 0;
border-radius: 0.25rem;
text-align: center;
}
.control-unit-row .col {
height: 50%;
min-height: 90px;
}
.control-unit-row .col div {
height: 80%;
margin: .6em 0;
}
.control-button {
font-size: 3em;
line-height: 0;
width: 80%;
height: 100%;
}
.control-button-control {
color: #06aad3;
}
.status-row {
height: 100%;
min-width: 325px;
}
.status-row .col {
margin: 2px;
}
.time-col {
position: relative;
background: #32383E;
padding: .5em;
text-align: center;
border-radius: .25rem;
}
.time-str {
position: relative;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
font-family: 'DigitalNumbers-Regular';
font-size: 4.5em;
letter-spacing: -.18em;
padding-right: 14px;
}
.current-clip {
background: #32383E;
padding: 10px;
border-radius: 0.25rem;
min-width: 700px;
}
.current-clip-text {
height: 40%;
padding-top: .5em;
text-align: left;
font-weight: bold;
}
.current-clip-meta {
margin-bottom: .7em;
}
.current-clip-progress {
top: 80%;
margin-top: .2em;
}
.control-button:hover {
background-image: linear-gradient(#3b4046, #2c3034 60%, #24272a) !important;
}
.control-button-play {
color: #43c32e;
}
.is-playing {
box-shadow: 0 0 15px #43c32e;
}
.control-button-stop {
color: #d01111;
}
.control-button-reload {
color: #ed7c06;
}
.control-button-restart {
color: #f6e502;
}
@media (max-width: 1555px) {
.control-row {
min-height: 200px;
}
.control-col {
height: 100%;
min-height: inherit;
}
.status-col {
padding-right: 0;
height: 100%;
flex: 0 0 60%;
max-width: 60%;
}
.current-clip {
min-width: 300px;
}
.time-str {
font-size: 3.5em;
}
.control-unit-row {
margin-right: -30px;
}
.control-unit-col {
flex: 0 0 35%;
max-width: 35%;
margin: 0 0 0 30px;
}
}
@media (max-width: 1337px) {
.status-col {
flex: 0 0 47%;
max-width: 47%;
height: 68%;
}
.control-unit-col {
flex: 0 0 47%;
max-width: 47%;
}
}
@media (max-width: 1102px) {
.control-unit-row .col {
min-height: 70px;
padding-right: 0;
padding-left: 0;
}
.control-button {
font-size: 2em;
}
}
@media (max-width: 889px) {
.control-row {
min-height: 540px;
}
.status-col {
flex: 0 0 94%;
max-width: 94%;
height: 68%;
}
.control-unit-col {
flex: 0 0 94%;
max-width: 94%;
margin: 0;
padding-left: 17px;
}
}
@media (max-width: 689px) {
.player-col {
flex: 0 0 98%;
max-width: 98%;
padding-top: 30px;
}
.control-row {
min-height: 830px;
}
.control-col {
margin: 0;
}
.control-unit-col,
.status-col {
flex: 0 0 96%;
max-width: 96%;
}
}
.list-row {
height: calc(100% - 40px - 254px - 46px - 70px);
min-height: 300px;
}
.pane-row {
margin: 0;
}
.playlist-container {
width: 100%;
height: 100%;
}
.timecode {
min-width: 56px;
max-width: 90px;
}
.playlist-input {
min-width: 35px;
max-width: 60px;
}
.timecode input {
border-color: #515763;
}
.list-group-header {
height: 47px;
}
.playlist-list-group, #playlist-group {
height: 100%;
}
#scroll-container {
height: calc(100% - 47px);
overflow: auto;
scrollbar-width: medium;
}
.playlist-item {
height: 52px;
}
.playlist-item:nth-of-type(even), .playlist-item:nth-of-type(even) div .timecode input {
background-color: #3b424a;
}
.playlist-item:nth-of-type(even):hover {
background-color: #1C1E22;
}
.clip-progress {
height: 5px;
padding-top: 3px;
}
.active-playlist-clip {
background-color: #565e6a !important;
}
.filename, .browser-item {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
</style>
<style>
.copy-program {
width: 302px !important;
}
</style>