diff options
Diffstat (limited to 'server/helpers/ffmpeg-utils.ts')
-rw-r--r-- | server/helpers/ffmpeg-utils.ts | 33 |
1 files changed, 23 insertions, 10 deletions
diff --git a/server/helpers/ffmpeg-utils.ts b/server/helpers/ffmpeg-utils.ts index 57911bc73..b0f95797c 100644 --- a/server/helpers/ffmpeg-utils.ts +++ b/server/helpers/ffmpeg-utils.ts | |||
@@ -1,8 +1,10 @@ | |||
1 | import * as ffmpeg from 'fluent-ffmpeg' | 1 | import * as ffmpeg from 'fluent-ffmpeg' |
2 | import { join } from 'path' | ||
2 | import { VideoResolution } from '../../shared/models/videos' | 3 | import { VideoResolution } from '../../shared/models/videos' |
3 | import { CONFIG, MAX_VIDEO_TRANSCODING_FPS } from '../initializers' | 4 | import { CONFIG, MAX_VIDEO_TRANSCODING_FPS } from '../initializers' |
5 | import { unlinkPromise } from './core-utils' | ||
4 | import { processImage } from './image-utils' | 6 | import { processImage } from './image-utils' |
5 | import { join } from 'path' | 7 | import { logger } from './logger' |
6 | 8 | ||
7 | async function getVideoFileHeight (path: string) { | 9 | async function getVideoFileHeight (path: string) { |
8 | const videoStream = await getVideoFileStream(path) | 10 | const videoStream = await getVideoFileStream(path) |
@@ -45,16 +47,27 @@ async function generateImageFromVideoFile (fromPath: string, folder: string, ima | |||
45 | folder | 47 | folder |
46 | } | 48 | } |
47 | 49 | ||
48 | await new Promise<string>((res, rej) => { | ||
49 | ffmpeg(fromPath) | ||
50 | .on('error', rej) | ||
51 | .on('end', () => res(imageName)) | ||
52 | .thumbnail(options) | ||
53 | }) | ||
54 | |||
55 | const pendingImagePath = join(folder, pendingImageName) | 50 | const pendingImagePath = join(folder, pendingImageName) |
56 | const destination = join(folder, imageName) | 51 | |
57 | await processImage({ path: pendingImagePath }, destination, size) | 52 | try { |
53 | await new Promise<string>((res, rej) => { | ||
54 | ffmpeg(fromPath) | ||
55 | .on('error', rej) | ||
56 | .on('end', () => res(imageName)) | ||
57 | .thumbnail(options) | ||
58 | }) | ||
59 | |||
60 | const destination = join(folder, imageName) | ||
61 | await processImage({ path: pendingImagePath }, destination, size) | ||
62 | } catch (err) { | ||
63 | logger.error('Cannot generate image from video %s.', fromPath, err) | ||
64 | |||
65 | try { | ||
66 | await unlinkPromise(pendingImagePath) | ||
67 | } catch (err) { | ||
68 | logger.debug('Cannot remove pending image path after generation error.', err) | ||
69 | } | ||
70 | } | ||
58 | } | 71 | } |
59 | 72 | ||
60 | type TranscodeOptions = { | 73 | type TranscodeOptions = { |