ffmpeg_web_local_app/readme.md
# Crow single page app for desktop
The idea would be to build desktop apps without having to worry about graphical toolkits or web views.
A small security system has also been implemented. The server listens only on localhost and requires the client to provide a PIN.
Static build:
```
meson setup build --wipe --wrap-mode=forcefallback
cd build
ninja
./crow
```
Build and link with system libraries:
```
meson setup build
cd build
ninja
./crow
```