Problem GifyTools solves: When trying to upload 3D Print Timelapses to Social Media they usually end up beeing to big + don't have any text on it such as channel etc... GifyTools is a simple software that converts the BambuuLab avi file to a gif. Removes Frames to reduce size (target size should be possible to make it postable on all platforms), compression, text overlay etc..
Frontend: Angular
API: C#
Processing: Processing done via library and direct process call.
-We will have workers that process the load. probably 80% CPU usage is fine, after that no more workers can be spinned up to ensure upload's still work
-Client Side video compression to have less processing in the backend
-Do not store videos delete them right after creating a gif
-Only store gifs for up to 24h and then delete them via Job.
- Create a digital ocean ubuntu droplet on the lowest of the low tiers
- sudo apt update && sudo apt upgrade -y
- sudo apt install -y ffmpeg
- which ffmpeg -> to get path of ffmpeg (put this into web config)
- Install .net runtime apt install -y aspnetcore-runtime-8.0
- sudo nano /etc/systemd/system/Gifytools.service
- systemctl start Gifytools
- systemctl enable Gifytools
GNU nano 8.1 /etc/systemd/system/Gifytools.service
[Unit]
Description=PlantMate
[Service] ExecStart=/usr/bin/dotnet /opt/dotnet/Gifytools.dll Restart=always #Restart service after 10 seconds if the dotnet service crashes: RestartSec=10 KillSignal=SIGINT SyslogIdentifier=dotnet-Gifytools User=root Environment=ASPNETCORE_ENVIRONMENT=Production Environment=FileSystemSettings__FFmpegPath=/usr/bin/ffmpeg Environment=FileSystemSettings__VideoInputPath=/opt/gifytools/videoInput Environment=FileSystemSettings__GifOutputPath=/opt/gifytools/gifOutput Environment=FileSystemSettings__Fonts__0__Name=DejaVu Sans Environment=FileSystemSettings__Fonts__0__Path=/usr/share/fonts/truetype/dejavu/DejaVuSans.ttf [Install] WantedBy=multi-user.target
- sudo apt install certbot python3-certbot-nginx -y (important you have to have set the dns records before doing this)
- sudo certbot certonly --nginx -d api.gifytools.com
- sudo certbot certonly --nginx -d www.gifytools.com
- sudo certbot certonly --nginx -d gifytools.com
- Install nginx by doing: apt install nginx -y
- sudo nano /etc/nginx/sites-available/api
- sudo nano /etc/nginx/sites-available/www
sudo ln -s /etc/nginx/sites-available/api /etc/nginx/sites-enabled/
sudo ln -s /etc/nginx/sites-available/www /etc/nginx/sites-enabled/
- sudo nginx -t
- sudo systemctl restart nginx
In order to automatically delete all videos and gifs we are going to use a very simple approach. we just delete all files older than 1h in our output folders.
- sudo nano /usr/local/bin/cleanup.sh #!/bin/bash
DIRS=( "/opt/gifytools/videoInput" "/opt/gifytools/gifOutput" )
for DIR in "${DIRS[@]}"; do if [ -d "$DIR" ]; then find "$DIR" -type f -mmin +60 -delete fi done
- sudo chmod +x /usr/local/bin/cleanup.sh
- sudo nano /etc/systemd/system/cleanup.service [Unit] Description=Cleanup old files in videoInput and gifOutput After=network.target
[Service] Type=oneshot ExecStart=/usr/local/bin/cleanup.sh User=root
[Install] WantedBy=multi-user.target
- sudo nano /etc/systemd/system/cleanup.timer [Unit] Description=Run Cleanup Service Every Minute
[Timer] OnBootSec=1min OnUnitActiveSec=1min Persistent=true
[Install] WantedBy=timers.target
sudo systemctl daemon-reload sudo systemctl enable cleanup.timer sudo systemctl start cleanup.timer
In the Backend we have a rather simple asp.net 8 API. It uses Postgres and ef. After having done a load test of our 9 USD per month server we know we should be able to have 5 workers running at the same time. We will need a process queue that will trigger the ffmpeg convert jobs.
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.0">
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.2" />
program.cs:
var appDbConnectionString = builder.Configuration.GetConnectionString("AppDbConnectionString");
builder.Services.AddDbContext<AppDbContext>(options => options.UseNpgsql(appDbConnectionString));
- ng add ngx-bootstrap
- ng add bootstrap (don't forget to add js and css in package.json)