-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error: stdOut maxBuffer exceeded #12
Comments
ghost
mentioned this issue
Jul 27, 2016
Sorry for not getting back sooner. Looks like we have to start using |
Closed
would this be a possible work around?
|
Closed by #22. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
I'm getting the error in the title when
play-sound
uses something likemplayer
to play. The error is defined a bit here: robrich/gulp-exec#27 (not sure ifplay-sound
uses that module or not).My guess is that the "progress bar" (not really, just a count of the elapsed time) that
mplayer
generates is filling the output buffer for the process. Using something likeafplay
(which doesn't output anything at all) works perfectly.Not sure how to fix it, but if possible, piping all the output of the commands to something like
/dev/null
(for UNIX systems, obviously :D) should fix the issue (or adding a parameter to every supported player to work in silent mode, but I'm not sure that's possible for all of them :P)The text was updated successfully, but these errors were encountered: