Yi Xie

Results 44 comments of Yi Xie

I have figured out a way to dump process state while the app is running normally. I'd appreciate if any of you can provide a "crash" report while the app...

> Is this crash report enough? Maybe. At least it can tell where exactly is the app stuck at. > Do you also want memory dump and/or spindump? If you...

Yes. Please use this email to send the files.

After analyzing your files it looks like [AVAssetWriter.finishWriting](https://developer.apple.com/documentation/avfoundation/avassetwriter) never calls the completionHandler. It's likely due to an internal deadlock inside AVAssetWriter. Since the writer encodes video asynchronously, I guess adding...

Thank all of you for providing crash logs and spindumps. The new 6.2.4 version no longer waits for [AVAssetWriter.finishWriting](https://developer.apple.com/documentation/avfoundation/avassetwriter) callback but instead polls the status with a timeout. It should...

Can you provide the original image?

>This offshoot is missing several significant features compared to Waifu2x-Extension-GUI This is not an offshoot of any other project. It was written completely from scratch with macOS native APIs. As...

> Remove the -i prefix for the input Adding `-i` makes it much easier to parse arguments. I don't think it is worth removing this considering that it doesn't affect...

1.5x in waifu2x-caffe is achieved by scaled up to 2x then down to 1.5x. You can use other programs (e.g. ImageMagick) in a chain to achieve this.

Unfortunately building from source is not possible because Xcode is not allowed to download dependencies in Homebrew sandbox. I tried to create a formulae installing from compiled binary. You can...