From 605ae2b28d866a2148ff78c432d1825a50d0f93a Mon Sep 17 00:00:00 2001 From: Mikael Finstad Date: Fri, 6 Mar 2020 14:04:55 +0800 Subject: [PATCH] improve message --- src/App.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.jsx b/src/App.jsx index 71f4b5cb..8ee6e507 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -888,7 +888,7 @@ const App = memo(() => { } } - toast.fire({ timer: 5000, icon: 'success', title: `Export completed! Go to settings to view the ffmpeg commands that were executed. Output file(s) can be found at: ${outputDir}.${exportExtraStreams ? ' Extra unprocessable streams were exported to separate files.' : ''}` }); + toast.fire({ timer: 10000, icon: 'success', title: `Export completed! Go to settings to view the ffmpeg commands that were executed. If output does not look right, try to toggle "Keyframe cut" or try a different output format (e.g. matroska). Output file(s) can be found at: ${outputDir}.${exportExtraStreams ? ' Extra unprocessable streams were exported to separate files.' : ''}` }); } catch (err) { console.error('stdout:', err.stdout); console.error('stderr:', err.stderr);