Yuichiro Tachibana (Tsuchiya)

Results 387 comments of Yuichiro Tachibana (Tsuchiya)

Found that the `requestAnimationFrame` trick is still needed because the timing of `connectedCallback` called may not be specified in the [spec](https://html.spec.whatwg.org/multipage/custom-elements.html#custom-element-conformance) and we still need to care the case where...

Found this bug still exists in 5.0. Reopen this to track it

@abidlabs @freddyaboulton This is a bug on `Dropdown` existing even on normal Gradio where the initial value is set as `[]` even though `multiselect=False` so the sample app above goes...

@abidlabs oops sorry I tested it on the tone sample in the playground and happened to find another problem -> https://github.com/gradio-app/gradio/pull/9526. ~~This issue itself has a different cause and will...

* Can you show the entire `package.json`? Does it contain the "build" field as [the example](https://github.com/whitphx/stlite/blob/main/packages/desktop/README.md#how-to-create-a-streamlit-desktop-app)? * Can you provide the file tree in the `build` directory, e.g. the result...

Thank you, I could reproduce the error. Looks like this happens if the NodeJS worker mode is enabled and at least one of `st_files_connection`, `PyYAML`, and `streamlit-tags` is installed. Let...

A quick workaround is to add `"asar": false` to the `"build"` field in your `package.json` and run `yarn dist` again, while it's [not recommended](https://github.com/electron-userland/electron-builder/issues/428#issuecomment-220817175) in general. As a dev note,...

Another situation where ffmpeg is used in Gradio is to upload an audio file other than `.wav`. `pydub` offloads file loading to `ffmpeg` internally. https://github.com/gradio-app/gradio/blob/cccf0fe20834d2ce4f63659b520d27d1f651d08c/gradio/processing_utils.py#L536 https://github.com/jiaaro/pydub/blob/996cec42e9621701edb83354232b2c0ca0121560/pydub/audio_segment.py#L766