Don't process live when moving to external storage
This commit is contained in:
parent
f967d8be4d
commit
9c84bf5156
|
@ -72,6 +72,8 @@ async function run () {
|
||||||
for (const id of ids) {
|
for (const id of ids) {
|
||||||
const videoFull = await VideoModel.loadFull(id)
|
const videoFull = await VideoModel.loadFull(id)
|
||||||
|
|
||||||
|
if (videoFull.isLive) continue
|
||||||
|
|
||||||
const files = videoFull.VideoFiles || []
|
const files = videoFull.VideoFiles || []
|
||||||
const hls = videoFull.getHLSPlaylist()
|
const hls = videoFull.getHLSPlaylist()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue