diff options
Diffstat (limited to 'shared/extra-utils')
-rw-r--r-- | shared/extra-utils/ffprobe.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/shared/extra-utils/ffprobe.ts b/shared/extra-utils/ffprobe.ts index b8e9f4c18..7efc58a0d 100644 --- a/shared/extra-utils/ffprobe.ts +++ b/shared/extra-utils/ffprobe.ts | |||
@@ -1,4 +1,5 @@ | |||
1 | import { ffprobe, FfprobeData } from 'fluent-ffmpeg' | 1 | import { ffprobe, FfprobeData } from 'fluent-ffmpeg' |
2 | import { forceNumber } from '@shared/core-utils' | ||
2 | import { VideoFileMetadata, VideoResolution } from '@shared/models/videos' | 3 | import { VideoFileMetadata, VideoResolution } from '@shared/models/videos' |
3 | 4 | ||
4 | /** | 5 | /** |
@@ -55,7 +56,7 @@ async function getAudioStream (videoPath: string, existingProbe?: FfprobeData) { | |||
55 | return { | 56 | return { |
56 | absolutePath: data.format.filename, | 57 | absolutePath: data.format.filename, |
57 | audioStream, | 58 | audioStream, |
58 | bitrate: parseInt(audioStream['bit_rate'] + '', 10) | 59 | bitrate: forceNumber(audioStream['bit_rate']) |
59 | } | 60 | } |
60 | } | 61 | } |
61 | } | 62 | } |