You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RunTask.Cancel($"Error: {line}\n\nMake sure you have an NVENC-capable Nvidia GPU.");
59
55
return;
60
56
}
61
57
62
-
if(line.Contains("not currently supported in container")||line.Contains("Unsupported codec id"))
58
+
if(lineWithoutPath.Contains("not currently supported in container")||lineWithoutPath.Contains("Unsupported codec id"))
63
59
{
64
60
RunTask.Cancel($"Error: {line}\n\nIt looks like you are trying to copy a stream into a container that doesn't support this codec.");
65
61
return;
66
62
}
67
63
68
-
if(line.Contains("Subtitle encoding currently only possible from text to text or bitmap to bitmap"))
64
+
if(lineWithoutPath.Contains("Subtitle encoding currently only possible from text to text or bitmap to bitmap"))
69
65
{
70
66
RunTask.Cancel($"Error: {line}\n\nYou cannot encode image-based subtitles into text-based subtitles. Please use the Copy Subtitles option instead, with a compatible container.");
71
67
return;
72
68
}
73
69
74
-
if(line.Contains("Only VP8 or VP9 or AV1 video and Vorbis or Opus audio and WebVTT subtitles are supported for WebM"))
70
+
if(lineWithoutPath.Contains("Only VP8 or VP9 or AV1 video and Vorbis or Opus audio and WebVTT subtitles are supported for WebM"))
75
71
{
76
72
RunTask.Cancel($"Error: {line}\n\nIt looks like you are trying to copy an unsupported stream into WEBM!");
0 commit comments