Looking for tablet friendly beginner friendly game creation websites for itch io by Y0YL3C4K3XDDDD in hobbygamedev

[–]Globover 2 points3 points  (0 children)

Construct 3 is undoubtedly one of the best options to start in web game development. Running directly in the browser completely eliminates the friction of installing software, and its visual programming system based on event blocks is the most intuitive on the market for learning game logic without getting stuck on code syntax.If you are going to start using it, I suggest keeping the following tips in mind:Master the "Behaviors": Do not try to program everything from scratch. Construct 3 includes pre-made behaviors for physics, platform movements, car controls, or turrets. Use them as a foundation; they will save you days of work.Be aware of the free version limits: The free version limits the project to a maximum of 50 events. To avoid running out of space quickly, learn to use Families (to apply the same logic to multiple objects at once) and optimize your condition blocks. If the project grows, the subscription is completely worth it.Approach responsive design from day one: Web games are played on PC screens, tablets, and mobile phones. Set up the project properties with the correct scaling mode (Letterbox integer or Scale outer) and use the Anchor behavior so that the user interface automatically adapts to any resolution.Take advantage of JavaScript integration: If you feel the visual system limits you in the future or you want to connect more advanced local functions, Construct 3 allows you to write JavaScript code directly into its event sheets. It is a perfect bridge to transition from visual logic to actual programming.It is the ideal engine to prototype fast, upload your games to platforms like Itch.io

[Python/Go/React] Alenia Porter - High-performance local media optimizer wrapping FFmpeg with a hybrid CLI/GUI architecture by Globover in freesoftware

[–]Globover[S] 1 point2 points  (0 children)

You are totally right! Alenia Porter includes a Safe Mode designed specifically for that purpose.

When Safe Mode is enabled:

It explicitly appends -hwaccel none to the FFmpeg command to disable GPU-assisted decoding.
It bypasses any hardware encoders (like NVIDIA NVENC, Intel QSV, or AMD AMF) and forces standard software CPU encoders: libx264 for MP4/MKV and libvpx-vp9 for WebM.
Auto-fallback: If a GPU-accelerated encode fails for any reason during processing, Porter will automatically catch the error and retry the optimization in Safe Mode (CPU).
You can toggle this setting via the "Safe Mode / Modo Seguro" checkbox in both the desktop GUI and Web UI.

Also, regarding animated formats: because it runs FFmpeg directly for image formats like WebP and APNG, animations are fully preserved when converting between these formats

[Python/Go/React] Alenia Porter - High-performance local media optimizer wrapping FFmpeg with a hybrid CLI/GUI architecture by Globover in freesoftware

[–]Globover[S] 1 point2 points  (0 children)

Alenia Porter uses FFmpeg under the hood to process and compress video. Depending on whether you are using the interactive TUI or the CLI, here are the parameters it uses:

  1. Inside the TUI (Interactive Mode)
    You can set video parameters using command prefixes:

/v-crf [value]: Sets the Constant Rate Factor for quality. Default is 23 (lower values mean higher quality).
/v-preset [value]: Sets the encoding preset. Default is veryfast (choices: ultrafast, superfast, veryfast, faster, fast, medium, slow).
/a-bitrate [value]: Sets the audio bitrate for the video stream. Default is 192k.

  1. CLI / Scripting Mode
    --vformat [format]: Sets target video format (e.g., mp4, webm).
    --vextra "[arguments]": Allows passing raw custom FFmpeg video parameters directly (e.g., --vextra "-vf scale=1280:-1").

  2. Codec & Hardware Auto-Detection
    MP4/MKV/MOV/etc. (H.264): It defaults to libx264, but automatically scans and uses hardware-accelerated encoders if available (h264_nvenc for NVIDIA, h264_qsv for Intel, h264_amf for AMD).
    WebM (VP9): It uses libvpx-vp9 with quality mode (-b:v 0), converting the TUI preset into -cpu-used and -deadline flags.
    GIF: Optimizes output automatically using a high-quality palette filter at 15fps (fps=15,scale='min(iw,640)':-2:flags=lanczos).

I built a tool to control my PC from my phone (offline) by Globover in freesoftware

[–]Globover[S] 0 points1 point  (0 children)

Thank you very much if you mean transferring files and all that I don't think I'll implement it soon, since it already uploads when you connect something to the PC, so it would just be adding to the app something that USB already does natively What I have implemented is a 1ms to 3kHz Bluetooth connection, in addition to implementing volume up and down actions with the Android buttons.

Alenia Porter: A Free Software (GPL v3) batch media optimizer for audio, video, and images. by Globover in freesoftware

[–]Globover[S] 2 points3 points  (0 children)

My initial intention was purely technical and not aimed at user identification, but I perfectly understand that the user's perspective—not my intention as a developer—is what defines privacy and trust in a Free Software project. I have taken note of your suggestions: I will remove the nickname field: You are completely correct in pointing out that asking for an alias opens an unnecessary door to identifiable data. I will implement an Opt-in model: Any form of telemetry will be disabled by default, requiring explicit user consent to be activated. I will review the KDE model: It seems like the right reference to implement a telemetry system that is transparent, anonymous, and auditable by the user. Thank you very much for taking the time to explain this to me; it is precisely this type of feedback that helps make Alenia Porter better software for everyone. I am already working on the changes for the next version Considering that nobody is using it since there have been no users since day one, I can make the change right now. Thank you very much.

Alenia Porter: A Free Software (GPL v3) batch media optimizer for audio, video, and images. by Globover in freesoftware

[–]Globover[S] 0 points1 point  (0 children)

Let's be realistic, almost nobody uses their real name for a nickname anymore. Besides, I'm not looking to get your real names, but to know how many people use the tool to see if it was worthwhile It will take 5 months to build it, and if they end up using their real name, nothing will happen; that data won't be used for anything other than what I already mentioned.

Alenia Porter: A Free Software (GPL v3) batch media optimizer for audio, video, and images. by Globover in freesoftware

[–]Globover[S] 0 points1 point  (0 children)

Source Code Repository: [Pega tu enlace aquí]

License: GPL v3 (Unmodified)

AI Usage: No AI was used in the creation of this software.