How I Built Videly Ei8, Video Hosting Platform on a Shoestring Budget
Source: Dev.to

Introduction
Hey everyone! 👋 Today I want to share my journey of building Videly Ei8, a video hosting and sharing platform I recently launched on Google Play.
As a solo developer with limited funds, building a video platform is a massive challenge. Server processing and storage costs can skyrocket quickly. However, I found an architectural “hack” that allows the platform to run incredibly fast, efficiently, and support uploads of up to 2 GB per file.
🛠️ The Tech Stack
- Web Frontend & Backend: Pure PHP scripts, HTML/CSS, and vanilla JavaScript.
- Android App: Native Android app utilizing an optimized WebView.
- Video Processing: FFmpeg (embedded directly inside the APK).
- Storage & Delivery: AWS S3.
💡 The Architecture Challenge: Web vs. App
If you try the web version at , you can use it completely for free. However, this web version has a deliberate limitation: videos don’t undergo metadata optimization. The raw video from your device is uploaded as‑is.
Why didn’t I integrate video processing on the web backend?
If I did, the upload pipeline would look like this:
- User uploads the video.
- My main server receives the file and processes/optimizes the video.
- Once done, the server sends it to AWS S3.
This flow requires a double upload process, which heavily wastes the user’s time and drains my limited server resources.
⚡ The Solution: Client‑Side FFmpeg Processing on Android
This is where the Videly Ei8 Android app shines. Even though the UI is essentially a WebView of the main site, I embedded and integrated FFmpeg natively within the app itself.
The upload flow on the app is drastically more efficient:
- The user selects a video.
- The app instantly optimizes the video metadata locally on the user’s device.
- The optimized video is uploaded directly from the device to AWS S3 (completely bypassing my PHP backend).
The Results
- Maximum Upload Speed: Direct upload to S3 via pre‑signed URLs or SDK lets users upload massive files up to 2 GB extremely fast.
- Instant, Lag‑Free Playback: Client‑side metadata optimization ensures the video streams instantly without buffering, regardless of size.
🎯 Conclusion & Future Plans
I’m always looking for the best, most cost‑effective ways to build powerful platforms on a reasonable budget. For now, Videly Ei8 is focused on the MP4 format with a 2 GB per‑file upload limit. This is just the beginning, and massive updates are on the horizon.
I would be absolutely thrilled if you tried the platform and shared your feedback from a developer’s perspective!
- 🌐 Try the Web version:
- 📱 Download the Android App: Videly Ei8 on Google Play
Thanks for reading, and let me know what you think in the comments! 👇