Tim Brandin
Tim Brandin
@EdoGp alright, then I'm guessing they were loading all the bytes into memory before generating thumbnails, I'm also guessing one might need a larger machine to run this on as...
As a note: regarding mp4 to animated gif I found this: https://www.imagemagick.org/discourse-server/viewtopic.php?t=34512
Cool idea, does imagemagick support this or do we need to add another tool?
btw, did you mean svg > svg? or any > svg?
Strange, aren't they being caught over here: https://github.com/spacechop/spacechop/blob/a7d5598258eb67f40c30c788e38e01d1a31a987f/src/spacechop.ts#L141
> > Strange, aren't they being caught over here: > > [spacechop/src/spacechop.ts](https://github.com/spacechop/spacechop/blob/a7d5598258eb67f40c30c788e38e01d1a31a987f/src/spacechop.ts#L141) > > Line 141 in [a7d5598](/spacechop/spacechop/commit/a7d5598258eb67f40c30c788e38e01d1a31a987f) > > trace.warn('error', err); > > No, errors thrown inside `stream.on('error', ...)`...
ah now I see, it is because we have already returned with the stream before any error is thrown
I found a case in the logs where we have caught a stream error: ``` { "level":"warn", "label":"error", "message":"[{\"errno\":\"ENOMEM\",\"code\":\"ENOMEM\",\"syscall\":\"spawn\"}]", "data":[ { "errno":"ENOMEM", "code":"ENOMEM", "syscall":"spawn" } ], "uuid":"226b3b60-e4d5-11e8-9c8e-2532f4c49e6b", "timestamp":"2018-11-10T10:41:10.869Z" } ```
I have the same problem. I'm curious if this have to do with the fact that node 8 supports import and export natively? And meteor removed Reify that made it...
https://github.com/nathantreid/meteor-css-modules/issues/106#issuecomment-341252464 works for me, and using sass/scss. 💃 in case you have multiple imports just: ``` import { styles } from './styles.scss'; import { styles as table } from './table.scss';...