fix: fps not being displayed in some cases
This commit is contained in:
parent
0282ef2223
commit
681f006b35
|
|
@ -186,7 +186,7 @@ export async function processMediaAssets({
|
|||
width = videoInfo.width;
|
||||
height = videoInfo.height;
|
||||
fps = Number.isFinite(videoInfo.fps)
|
||||
? Math.round(videoInfo.fps * 1000) / 1000
|
||||
? Math.round(videoInfo.fps)
|
||||
: undefined;
|
||||
|
||||
thumbnailUrl = await generateThumbnail({
|
||||
|
|
|
|||
Loading…
Reference in New Issue