Splitting up the mjpg stream is very simple.
I will implement a small widget for this...
Search found 232 matches
- Thu Aug 01, 2019 5:26 pm
- Forum: Compiler / Linking / IDE Related
- Topic: wxWebView and Windows
- Replies: 32
- Views: 3616
- Thu Aug 01, 2019 1:09 pm
- Forum: Compiler / Linking / IDE Related
- Topic: wxWebView and Windows
- Replies: 32
- Views: 3616
Re: wxWebView and Windows
There seems to be work arounds for IE:
https://www.yawcam.com/forum/viewtopic.php?t=3592
But unfortunately this does not work. I also tested it directly with the MS InternetExplorer.
https://www.yawcam.com/forum/viewtopic.php?t=3592
But unfortunately this does not work. I also tested it directly with the MS InternetExplorer.
- Thu Aug 01, 2019 8:50 am
- Forum: Compiler / Linking / IDE Related
- Topic: wxWebView and Windows
- Replies: 32
- Views: 3616
Re: wxWebView and Windows
The link is not public.
Edge under Windows 10 does support *.mjpg, so if webview.exe is told to emulate IE11 I would suspect it works with wxWebView too.
Should I open a Bug? wxWebView works out of the box under macOS and Linux-GTK.
Edge under Windows 10 does support *.mjpg, so if webview.exe is told to emulate IE11 I would suspect it works with wxWebView too.
Should I open a Bug? wxWebView works out of the box under macOS and Linux-GTK.
- Thu Aug 01, 2019 8:32 am
- Forum: Compiler / Linking / IDE Related
- Topic: wxWebView and Windows
- Replies: 32
- Views: 3616
Re: wxWebView and Windows
I add following line: #ifdef __WXMSW__ { wxLogNull nolog; // suppress error messages wxRegKey rk( wxT("HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_BROWSER_EMULATION") ); rk.Create(); rk.SetValue( wxT("webview.exe"), 11001); } #endif No error popups, but t...
- Thu Aug 01, 2019 8:24 am
- Forum: Compiler / Linking / IDE Related
- Topic: wxWebView and Windows
- Replies: 32
- Views: 3616
Re: wxWebView and Windows
this part exists:
But should the rest of the path not be created by a function call first? (Create?)
Code: Select all
HKCU\Software\Microsoft\Internet Explorer\Main
- Thu Aug 01, 2019 8:19 am
- Forum: Compiler / Linking / IDE Related
- Topic: wxWebView and Windows
- Replies: 32
- Views: 3616
Re: wxWebView and Windows
Hi,
the path does not exist in the registry.
In the log you see HKCU instead of HKEY_CURRENT_USER...
the path does not exist in the registry.
In the log you see HKCU instead of HKEY_CURRENT_USER...
- Thu Aug 01, 2019 8:09 am
- Forum: Compiler / Linking / IDE Related
- Topic: wxWebView and Windows
- Replies: 32
- Views: 3616
Re: wxWebView and Windows
OK, commented it out, but the following error pops up: 10:07:08: Can't open registry key 'HKCU\Software\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_BROWSER_EMULATION' (error 2: Das System kann die angegebene Datei nicht finden.) 10:07:08: Can't set value of 'HKCU\Software\Microsoft\Inter...
- Thu Aug 01, 2019 8:02 am
- Forum: Compiler / Linking / IDE Related
- Topic: wxWebView and Windows
- Replies: 32
- Views: 3616
Re: wxWebView and Windows
Here the error logging after I commented out the wxLogNull code line: 10:00:12: Can't open registry key 'HKCU\Software\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_BROWSER_EMULATION' (error 2: Das System kann die angegebene Datei nicht finden.) 10:00:12: Can't set value of 'HKCU\Software\...
- Thu Aug 01, 2019 7:46 am
- Forum: Compiler / Linking / IDE Related
- Topic: wxWebView and Windows
- Replies: 32
- Views: 3616
Re: wxWebView and Windows
OK, I did so.
But the popup still shows up...
But the popup still shows up...
- Thu Aug 01, 2019 6:04 am
- Forum: Compiler / Linking / IDE Related
- Topic: wxWebView and Windows
- Replies: 32
- Views: 3616
Re: wxWebView and Windows
I did give it a try, but at startup a warning pops up: Failed to find web view emulation level in the registry This popup comes for both MSWSetEmulationLevel and MSWSetModernEmulationLevel. The registry item where wxWidgets is looking for does not exist under Windows 10: Its not in CURRENT_USER but ...
- Wed Jul 31, 2019 8:28 pm
- Forum: Compiler / Linking / IDE Related
- Topic: wxWebView and Windows
- Replies: 32
- Views: 3616
Re: wxWebView and Windows
Could this call help?
wxWebView::MSWSetEmulationLevel ( wxWebViewIE_EmulationLevel level = wxWEBVIEWIE_EMU_IE11 )
https://docs.wxwidgets.org/trunk/classw ... c8d9b67f8c
wxWebView::MSWSetEmulationLevel ( wxWebViewIE_EmulationLevel level = wxWEBVIEWIE_EMU_IE11 )
https://docs.wxwidgets.org/trunk/classw ... c8d9b67f8c
- Wed Jul 31, 2019 8:10 pm
- Forum: Compiler / Linking / IDE Related
- Topic: wxWebView and Windows
- Replies: 32
- Views: 3616
Re: wxWebView and Windows
OK, I solved it by adding -static in the link command. Now minimal.exe and webview.exe do run on a native Windows 10 64bit computer. But... It does n ot support *mjpg, video streaming, which works fine under macOS and Linux. Also the standard browser of Windows 10 does support this format. I used --...
- Wed Jul 31, 2019 5:53 pm
- Forum: Compiler / Linking / IDE Related
- Topic: wxWebView and Windows
- Replies: 32
- Views: 3616
Re: wxWebView and Windows
Hi, The Windows builds are always cross compiled, and this works very good for years on a Raspberry Pi. Because I want to use wxWebView in my application, I looking for a way to get this also working under Windows. Which configure options should be set, and which should be left out? My latest cross ...
- Wed Jul 31, 2019 3:39 pm
- Forum: Compiler / Linking / IDE Related
- Topic: wxWebView and Windows
- Replies: 32
- Views: 3616
Re: wxWebView and Windows
The compiler works; Daily builds are made for Windows 32 and 64bit. But since I try to include the wxWebView into the wxWidgets library, it comes to those errors. The extra configure options I added are for webview and webkit... The build process is OK, but the wx sample, webview, does report the li...
- Wed Jul 31, 2019 3:15 pm
- Forum: Compiler / Linking / IDE Related
- Topic: wxWebView and Windows
- Replies: 32
- Views: 3616
Re: wxWebView and Windows
The uuid.c is not include as source but as library: libuuid.a
I'm not planing to build MINGW from source.
The supplied MINGW version is 6.30...
I'm not planing to build MINGW from source.
The supplied MINGW version is 6.30...