Please note that all submissions to the site are subject to the wiki's licence, CC 4.0 BY-SA, as found here
Canon EOS Webcam Utility Patch Guide: Difference between revisions
add category |
Formatting fix |
||
Line 63: | Line 63: | ||
12. edit <code>appunpk/package.json</code> by removing the line: <code>"eos-addon": "file:./build",</code> | 12. edit <code>appunpk/package.json</code> by removing the line: <code>"eos-addon": "file:./build",</code> | ||
13. Run <code>npm install</code> | 13. Run <code>npm install</code> | ||
14. Reverse the change from step 12. | 14. Reverse the change from step 12. | ||
15. Ensure you are in the <code>EOS Webcam Utility Pro.app/Contents/Resources</code> directory before running: <code>asar p appunpk app.asar</code> | 15. Ensure you are in the <code>EOS Webcam Utility Pro.app/Contents/Resources</code> directory before running: <code>asar p appunpk app.asar</code> | ||
You <I>should</I> now have a patched Canon EOS Webcam Utility application that does not require a subscription to use. | You <I>should</I> now have a patched Canon EOS Webcam Utility application that does not require a subscription to use. |
Revision as of 01:11, 21 January 2025
This article will instruct how to remove the subscription requirement from the Canon EOS Webcam Utility.
Disclaimer
This method has not been tested thoroughly, and technical expertise may be required.
For macOS
- Install the PKG from https://www.usa.canon.com/cameras/eos-webcam-utility
- When finished installing, navigate to
/Applications/EOS Webcam Utility/EOS Webcam Utility Pro.app
- Right click > "Show package contents"
- Right click "Contents" > "Get info", and give your user read and write permission over the directory (ensure you click "..." > "Apply to enclosed items")
- Install the
asar
CLI utility. - Open a terminal inside of
EOS Webcam Utility Pro.app/Contents/Resources
- Extract the application by running:
asar e app.asar appunpk
- Open
appunpk/eos-webcam-utility/main.<abunchofnumbers>.js
- Find the constructor for
class t
by looking for the instance ofthis.selectMode$
- In the class, define the function
getValue()
as follows...
class t extends d1 { constructor(e, n) { ... } getValue() { return { "entities":{}, "ids":[], "loading":true, "error":null, "mode":"PAID", "username": "consumer_rights", "profile": { "nickname": "consumer_rights" }, "uuid": "1234567890", "active": 1, "isPro": true, "subscription": { "val": { "status": { "displayStatus": "ACTIVE" } } }, "keyAuth": "1234567890" } } }
11. Now, search for checkAuthUser() {
, and replace the contents of the .subscribe(n => {
call such that it looks something like this:
this.event$.pipe(ql(2e3)).subscribe(n => { this.changeToPaidMode() }) // below the above call, there will be code that handles the "get-authen-user" event. // replace the ternary expression: h ? e.subscriptionRegister(c, f, m) : e.subscriptionUnregister(), with: e.subscriptionRegister(c, f, m)
12. edit appunpk/package.json
by removing the line: "eos-addon": "file:./build",
13. Run npm install
14. Reverse the change from step 12.
15. Ensure you are in the EOS Webcam Utility Pro.app/Contents/Resources
directory before running: asar p appunpk app.asar
You should now have a patched Canon EOS Webcam Utility application that does not require a subscription to use.