Posts

Showing posts from March, 2025

Program to change video resolution using node.js / CURSOR AI Coding Review

Image
  I kept putting off the cursor... I was using Shana Encoder, but I was too lazy to touch the UI, There was a condition that anything larger than 720p should be converted to 720p, and anything smaller than 720p should be converted to 480p, so I thought it was possible with a program, so I asked them to do it using CURSOR. And I succeeded. It works well (shock) If I were to find this myself and go through trial and error, it would take hours or days, but it was done in 10 minutes. It's amazing that I didn't have to learn anything. MODULE INSTALL npm i fluent-ffmpeg index.js CODE const ffmpeg = require('fluent-ffmpeg'); const path = require('path'); // input params const inputFile = process.argv[2] || 'input.mp4'; const outputFile = path.join('output', `resized_${path.basename(inputFile)}`); const targetWidth = process.argv[3] || 1280; // 기본 해상도 1280x720 const targetHeight = process.argv[4] || 720; // create output dir const fs = require('fs...

Unity web version released / No need to worry about web traffic.

Image
  result page: unity play link Unity Play's basic function seems to be a service that helps you watch learning videos and share the results. However, Unity is not a traffic that an individual can handle because the build is large. That's why you can actively use this free service and brag about it. upload page: link The icon part in the middle is a button. When you press it, it asks you to upload a zip file. When you build a web, these files will appear and you can compress them to create a  result.zip file. When uploading, - Build file.zip - Icon image - If you have a video (optional) - Title - Description You can write these. If you are already preparing to upload to the app store, it will be easy. This is a good service.

v30 update released

Image
- Changed life deduction method - Fixed GameOver bug - Added skill icon It has been released in many countries including the US.

Let's deploy express with vercel / Let's create a page that supports unity webgl compression

Image
  new possibilities After looking into it, I found out that I can distribute express. There are so many things you can do with Express. Among them, it can handle compression of unity webgl builds, reducing the result from around 50mb to around 15mb. In other words, you can have a website that runs entirely on webgl. So I tried it and it worked. Demo:  Unity Web Player | Add Force 1 I think I should praise vercel now. Follow along video :   https://www.youtube.com/watch?v=3IV60HVsW2M&t=17s This video was the most accurate of all the others. This channel seems to be inactive with only 7 subscribers....

Add Force 1 Releaseddd / Play Store

Image