Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(3 edits)

This is only if you want to do it now, by yourself. I will publish the update next week.

Open a terminal. (cmd or powershell)
Type cd "path/of/your/video/folder"  For exemple : cd C:\Users\me\Videos  (if your video.mp4 is in the Videos folder)
Paste the command ffmpeg -i video.mp4  -vf "scale=720:720:force_original_aspect_ratio=decrease,fps=25" -q:v 6 -q:a 6 output.ogv
You can replace :

  • video.mp4 is the name of your video you want to convert
  • 720:720 are the max width and height that you desire.
  • fps=25 will be the the frame per second of the converted video
  • -q:v 6 and  -q:a 6 are the quality of video and audio
  • output.ogv is the name of the converted video, in a format usable by Hotscreen. (.ogv)

Appreciate it, looking forward to the update!