1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-11-25 12:13:00 +01:00

Change preview image size to a fixed width of 320. Also helps with loading many installed list items

This commit is contained in:
Elias Steurer 2019-12-23 15:41:17 +01:00
parent d01d329747
commit eb1b7b65f3

View File

@ -360,6 +360,8 @@ bool CreateImportVideo::createWallpaperImagePreview()
args.append("1");
args.append("-q:v");
args.append("2");
args.append("-vf");
args.append("scale=320:-1");
args.append(m_exportPath + "/preview.jpg");
emit processOutput("ffmpeg " + Util::toString(args));