- Automate image changes using custom data fields, datasets and asset lists
- FSDImages changes will automatically update live in an OBS scene
Important
The primary directory FSDImages cannot be renamed. FSDImages does not use Apache and therefore has no hierarchical method to manage data paths. The directory named FSDImages is used for relative pathing.
Important
When the application is chosen to run on external IPv4, all incoming requests will be subject to whitelisted IP address checks. This list can be modified from the local machine application file > Whitelisted IP Addresses
- Download and extract from: https://firststepdesign.co/file/FSDImages.zip (35.7 MB)
- Launch
FSDImages.hta - Select
Start Applicationfrom the application launcher. ChooseLocalhostthen clickAPP: localhost:8000to open the application in a browser!- If the application fails to launch, please check the
output.logfile. The most likely culprit is an outdated C++ windows library for running PHP Windows Latest C++ Redistributable.
- If the application fails to launch, please check the
- Websocket server can be initialized from the launcher or within the application itself
The windows download includes an example project by default. Check it out to learn how the application works!
The base code does not include an example project by default, download and import it from: https://firststepdesign.co/file/Example.fsdi (220.3 KB)
-
Install PHP (will vary depending on your distro)
sudo apt install php
-
Update your php.ini config file to allow large image uploads and project imports.
- Enter the following console command to locate your config file
php --ini
- (e.g. result): Loaded Configuration File: /etc/php/8.3/cli/php.ini
- change the following configuration properties:
upload_max_filesize=8M->upload_max_filesize=2Gpost_max_size=8M->post_max_size=2Gmemory_limit=128M->memory_limit=2Gmax_input_vars=1000->max_input_vars=10000- ensure the php_zip extension is enabled
extension=zip, no;preceding it - ensure the php_sockets extension is enabled
extension=sockets, no;preceding it
-
Clone or Download and extract the repository
-
Rename the primary directory to
FSDImagesNOTFSDImages-main -
Navigate to the FSDImages primary directory and launch the application using:
php start.php
- or
php start.php external all
- to start the websocket search during launch using
alland start the application on your external ipv4 rather than localhost usingexternal
-
Close the application with
php stop.php
- or
php stop.php all
- to stop the application and websocket server
-
Visit
localhost:8000(or external IPv4:8000) in your web browser to start using the application! -
Websockets works for Linux and Windows ... no test case for Mac available so either donate one to me or commit a change for all files under
/api/
FEATURES:
-
Ajax
- ajax should take all incoming requests and place them in a queue. This prevents any disconnect between API and Controller under intense use moments during a broadcast
-
Switchboard
- allow multiple pages
- offer search option for select list dropdowns
- allow duplicating fields and sections
-
Dataset
- allow sorting and manual movement
- allow key structure movement (key up or down in list)
- allow api creation and deletion of dataset entries
-
Assets
- allow api to create assets and return their system reference slug, also allow deletion
-
Overlay editor features
- global copy and paste layer between overlays
- add border radius option to individual points on custom path, or all points for either square or custom path
- stash start drag point of clip path individual point as to allow x / y lock drag during move event
- when adding a new layer during the active selection of a group layer, add new layer within the group layer rather than adjacent
- ctrl + z, ctrl + y: undo and redo
- allow image rotation
- allow text to overflow when prompted and provide a new height dimension, with that allow vertical positioning, default top but allow center and bottom, update flipLayer function with new positioning possibilities
- ctrl + t for a new UI to control rotation and dimensions of layer object
Tutorial
- Video Tutorial
