Andrew Brampton

Results 232 comments of Andrew Brampton

Oh, that is a good point. So this maybe should be more like the [AUDIO_SAMPLE_* constants](https://github.com/bramp/ffmpeg-cli-wrapper/blob/faedc821e27a5c8cb00b1d96a2f6d45eac6cdd29/src/main/java/net/bramp/ffmpeg/FFmpeg.java#L55C1-L63). They are not complete, but are handy for folks use. So yes, I think...

ah yes, keeping it out of `FFmpeg` sounds good to me. We could add it to `Codec`, but I suspect we are not making a full Codec instance here. So...

The Build fails now with this error: ``` Error: /home/runner/work/ffmpeg-cli-wrapper/ffmpeg-cli-wrapper/src/main/java/net/bramp/ffmpeg/builder/AudioCodec.java:97: error: bad HTML entity Error: /**ADPCM IMA Simon & Schuster Interactive*/ ``` This seems a little strict, but I suspect...

There are a lot of Windows users of this library, so I wouldn't want to put a Linux specific fix in place. I will accept pull requests to fix this...

I just read more about the failings in how java handles character escaping. http://bugs.java.com/view_bug.do?bug_id=6468220 and http://bugs.java.com/view_bug.do?bug_id=6518827 It might be worth using https://commons.apache.org/proper/commons-exec/index.html instead of the process builder. Happy to accept...

I bumped up against this. I have a simple widget that contains AnimationContainer, and when I change the value of a knob, the widget gets rebuilt four times. I expect...

Have you tried copy and pasting the demo website? And using that as your hello world? But admittedly not updated this project in quite some time, but it's love to...

If it helps the site's source is on GitHub, so you don't have to right click save :-) https://github.com/bramp/js-sequence-diagrams/blob/gh-pages/index.html If I get a chance I will go though the readme...

I think those are both fair requirements. To clarify #2, 'matching TLS client certificate', matching meanings a valid Tesla client cert? Should we instead just reject all client certs?

To clarify, the change is just to return the name of the file type when returning a valid size. So changing https://github.com/CaiJingLong/dart_image_size_getter/blob/ef9d71e301c002d0a20bf622a176828db2e82f2f/packages/image_size_getter/lib/src/image_size_getter.dart#L120 to return `value.decoderName` in addition to the result...