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
Please check out this code in /base/transcoder.ts.
Lines 105 --
As using pipe() involves run() it is called twice spawning the process twice and producing 2 output streams which mess the resulting video in gliches.
So, a good solution is to put that part of code inside the else { } block when there is no custom output function.
this._promise = new Promise((resolve) => {
this._command.on('end', resolve).run();
});
The text was updated successfully, but these errors were encountered:
Please check out this code in /base/transcoder.ts.
Lines 105 --
As using pipe() involves run() it is called twice spawning the process twice and producing 2 output streams which mess the resulting video in gliches.
So, a good solution is to put that part of code inside the else { } block when there is no custom output function.
this._promise = new Promise((resolve) => {
this._command.on('end', resolve).run();
});
The text was updated successfully, but these errors were encountered: