Anthony

Results 95 issues of Anthony

I'm running into issues where the max buffer size is only ~2.1GB, so if the files I'm trying to concat end up being larger than 2.1GB it blows up with...

how are we expected to await using this api method? `concat([file1, file2, file3], outputFile)`

Would be cool if there was an option to set a certain time at which grayscale would be activated. For example I would set one for the evening.

I am trying to use this script to write out something on a photo. It's working properly, however, I can't get the font to change, even though I am using...

Hi there, great project, I'm personally looking into whether any consumer electronics can create the EDF files that you would use in the algorithm, I have a Muse headband device...

I want to proxy an entire page but when I do the static files 404. `http://localhost:8010/public/font/v1/400.woff` Is there any way to also proxy those files? Thanks

``` let arguments = []; // set the url for ytdl // verbose output arguments.push('--format=135'); console.log(arguments) const video1 = youtubedl(youtubeLink, // Optional arguments passed to youtube-dl. arguments, // Additional options...

The fix is to make the request with `secureSSL: false` , would you be willing to do that?

``` let arguments = []; arguments.push('--ffmpeg-location=' + ffmpegPath); arguments.push('-f=bestvideo[ext=mp4]+bestaudio[ext=m4a]/mp4'); arguments.push('--merge-output-format=mp4') console.log(arguments) const video1 = youtubedl(youtubeLink, // Optional arguments passed to youtube-dl. arguments, // Additional options can be given for calling...

I'm trying to secure the endpoint like such: ``` const statusMonitor = require('express-status-monitor')(); app.use(statusMonitor); app.get('/status', function(req, res, next){ console.log('running'); }, passportConfig.isAuthorized, statusMonitor.pageRoute) ``` I have a mind to think that...