emscripten
Here are 443 public repositories matching this topic...
Using Gstreamer isPlaying() always returns true even when paused and using plain ofVideoPlayer it returns false when paused. It would be great to have a standard behavior.
see:
arturoc/ofxGStreamer#27
The on-line demo at http://kripken.github.io/sql.js/examples/GUI/ does not give error messages (for wrong SQL or missing tables or attributes).
The version of @lovasoa does: http://lovasoa.github.io/sql.js/GUI/
The issue came up on spectrum that we don't document how to run tests, for example, or how to deal with our release process in general.
We should create a small document and link to it in visible places (possibly by updating the issue filing template) that explain
Hi!
I am using the wasm2js tool on a WebAssembly module written in Rust using wasm-bindgen(no emscripten involved) to generate code that works on Internet Explorer. However, since I added a new library which internally makes use of i64, this import has been added to the wasm2js output:
import { getTempRet0 } from 'env';From what I understand, this method is used by
-
Updated
Jan 26, 2019 - JavaScript
MDN docs: clientWidth, clientHeight
These properties are useful for getting the actual width and height of an element as it is displayed on the webpage, and it is the [recommended way](https://webglfundamentals.org/webgl/lessons/webgl-anti-patt
Currently, the glDrawRangeElements() WebGL 2 function is not implemented in Firefox (38) and causes "Not Implemented." assertion. It is also not yet implemented in Emscripten, but I have a patch that adds it.
Rela
I'm getting this error on an application which is scanning multiple QR codes over long periods
Failed to read QR code. Finished up all reserved function pointers. Use a higher value for RESERVED_FUNCTION_POINTERS.
@schmich could you please recompile the script with more pointers as described [here](https://kripken.github.io/emscripten-site/docs/porting/connecting_cpp_and_javascript/Interacti
emcc-path on Windows gives (PROJECT DIRECTORY)\node_modules\nbind\bin\emcc. It should give the path of a bat file if on Windows instead of a bash script.
-
Updated
Nov 15, 2019 - JavaScript
I built a custom FFMPEG following the README instructions, adding the filter setpts to the Makefile. I managed to build successfully, and I managed to create a MP4 video with only MP3 audio.
I'm using ffmpeg-worker-mp4.js.
As soon as I try to add an input image, the program exits with code 1, with not much information.
Here's the console log (scriptfinal.js is the file where I handle al
Wiki and guides
-
Updated
Apr 25, 2020
-
Updated
Oct 20, 2019 - JavaScript
emscripten-core/emscripten#10148 is a report from a cargo-web user whose Emscripten installation is managed by cargo-web but is invalid. I took a look at the cargo-web source, and noticed a few issues:
- The help messages with instructions for installing Emscripten should probably recommend using emsdk regardless of the platform, since that's the only distribution met
-
Updated
May 9, 2020 - WebAssembly
-
Updated
Jul 27, 2018 - C
-
Updated
Apr 19, 2020 - C
-
Updated
May 8, 2020 - C++
-
Updated
Mar 18, 2020 - JavaScript
-
Updated
Mar 21, 2019 - C
Hello Folks,
sorry to bug, but I ran into a super odd problem. I have created a small server/client demo based on Emscripten, and run it in Chrome. Sadly, communication always terminates with a failed assert.
First of all, the server:
#include "humblenet.h"
#include "humblenet_p2p.h"
#include <stdio.h>
#include <emscripten.h>
#define CHANNEL 0
char buff[22222];
PeerId myPeer=
-
Updated
May 9, 2020 - C++
-
Updated
Aug 29, 2019 - JavaScript
-
Updated
Apr 18, 2020 - Rust
Improve this page
Add a description, image, and links to the emscripten topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the emscripten topic, visit your repo's landing page and select "manage topics."

Problem
Void elements (
<input>,<br>, etc) cannot have children but the yew macro allows them to.Proposed Solution
Blacklist void elements from having children. This should be checked at compile time with the procedural macro (yew-macro) and output a nice error message when this happens.