after some time it became important to know how to get the updated file from snapcraft.io
the list of current chromium packages is fetched with a curl command
Code: Select all
curl -H 'Snap-Device-Series: 16' http://api.snapcraft.io/v2/snaps/info/chromium >> chromium.info
This creates a file chromium.info in the root directory of your device.
From within that file it is possible to determine that the base of the url is the same, only the extension at the end changes...
The current version (124.0.6367.60) has nothing to do with the # needed, so you have to download the file to find out what # is currently being used.
therefor change
XKEcBqPM06H1Z7zGOdG5fbICuf8NWK5R_2498.snap
to
XKEcBqPM06H1Z7zGOdG5fbICuf8NWK5R_2822.snap
making the current command:
Code: Select all
wget https://api.snapcraft.io/api/v1/snaps/download/XKEcBqPM06H1Z7zGOdG5fbICuf8NWK5R_2822.snap
and the current extraction:
Code: Select all
unsquashfs -d chr-114-arm64-ffmpeg XKEcBqPM06H1Z7zGOdG5fbICuf8NWK5R_2822.snap /usr/lib/chromium-browser/libffmpeg.so
But
don't forget to change the name of the old folder created at the root of your drive.
Then deliver the file to the devices that need it.