Loading...
Answers
MenuBootstrapping what it could be the best & cheapest way to build a scalable web platform for video streaming(hosting, CMS, etc..)? not using wordpress
This question has no further details.
Answers
Microsoft Azure. For startups they give you a ton of stuff for free, and if you talk to someone there you can probably get even more. And when you're eventually ready to pay, you can just continue with them.
Google's cloud offering is also free or cheap, but it's unclear what the future of that is, and it's much more limiting.
If you don't want to be a member of any special programs, then design your system to be deployed directly to S3 so you can serve from there. That's cheap, and you get arbitrary scale built-in, and you can add "speed" to that by fronting with a CDN when you're ready to pay a little more.
In general, though, video-streaming is NOT FREE. You should design for the video-streaming part to be hosted by someone else -- YouTube, Vimeo, anything. That's a whole business in itself, and bandwidth is expensive until you're very large (and even then...).
You could deploy on cloud servers such as Amazon EC2, Rackspace cloud or Liquidweb StormOnDemand.
Choose a framework that will server you well such as Symfony2 (PHP).
Make sure your code is source controlled (git).
Make sure you have deployment tools to keep your production site up to date (capistrano/capifony).
If you want anything to scale, you can't use WordPress. Which is probably why you said not using WordPress...I imagine you tried or were told. You can count out many other CMS' as well to be frank. Especially if they use MySQL. You'll run into absolutely too many bottlenecks that can only be solved by pouring money on the fire in hopes to extinguish it.
You'll need something custom built using a rapid application development framework. Language? Up to you really, take your pick. For PHP you have The Lithium Framework (not to be confused with Lithium period), Symony2, and a few others. For Node.js you have Sails and Express.
Use these with a database like MongoDB, Couchbase, etc. Anything NoSQL because you'll likely want high read performance and a schemaless database is just awesome for build speed (again taking into consideration your cost requirements).
That should take care of your CMS needs and using technology like listed above (though not limited to what I listed) will allow your application/platform to not only be built fast, but also scale to handle a lot of traffic. Further, it makes maintenance easy. Don't forget that once you build an app or website, that you need to maintain it. It's rarely ever a "done" thing. Various bugs, new features, tweaks, etc. When your codebase is very well organized and fast to work with, you win.
I'd also think about utilizing Amazon Web Services...They have a new one that does video transcoding on demand. You also will want to host the actual video files and I think Amazon provides the cheapest way to do that too.
That's how I'd build a video platform to be honest. Everything for development speed and mass read performance. Uploading is a bear and you will need powerful servers for video, but the more you can offload onto "cloud" services, the better off you'll be. The faster you can build and maintain your code, the less money you'll be spending.
Of course it should be noted that having some guy (or girl) install WordPress for you will, initially, be cheaper than a custom build...But over time your custom solution will pay off.
Related Questions
-
What are the key accomplishments for the first year of a startup?
A generalized question can only get a generalized answer. The most significant accomplishment is validating that the product you have built is a fit with your target market. This is demonstrated primarily by engagement (the people who sign-up or who previously visited, continue to return) and secondarily by growth, ideally based on word-of-mouth or viral growth but effectively converting paid traffic is a great second prize. Other significant accomplishments include: Not running out of money Recruiting and retaining great talent who believe in the founders' vision. Your loved ones not thinking you're as crazy as they thought you were a year ago. I'm happy to talk to you in a call to give you more specifics about what you want to set as your goals more specific to your startup.TW
-
Does Wix.com support an API from Booking.com or other API for B2B Travel Agency?
Yes Wix supports a mulitude of APIs to used for various fetch calls for your web pages. If you already have to API's in mind you can venture off within you WIX code to integrate within your application's processes. There shouldn't be any complications getting this done. Please see the link below for more information https://www.wix.com/code/home/apiAB
-
What is the best way to do a permissions system for a low traffic administration system, PHP preferred, but general suggestion is also valuable.
Hi, I have been a PHP developer for 13 years and have experience building enterprise applications. What framework are you using? Most PHP frameworks have a built in authentication and authorization mechanism. For example, Yii has a builtin RBAC system that allow you to define a hierarchical permission system. If you're not using a framework or you just want to implement your own system for whatever reason then you can utilize Object Oriented Design and implement a Base controller (if MVC) that checks the permission for each request. That won't use a lot of if statements. Probably need more info, to give definitive guidance. Hope that helps.AP
-
How much should I charge to develop a WordPress site?
Take the # of hours it takes you to do it and charge $50/hour. That's the price. Eventually you can charge $100/hour but that will require a bigger customer. If the customer is small < $1M in gross sales per year - charge $50/hour If the customer id medium < $1-5M / sales - charge $75 Over $5M - charge $100 The challenge you'll face is clearly defining the expectations and handoff so that you're not stuck doing stuff that you can charge for and always getting interrupted from past customers.DM
-
How do you manage a developer who's slow, especially when you have a small budget and you don't feel like you'll get things done in time?
Usually Programmers are only slow when they don't know how to solve a particular problem. So they will spend a lot of time researching and a lot of trial & errors to solve a problem. It is important that before you engage a programmer on a project, you break down the entire project into simple, easy to understand modules. Let him give you an estimate of how many hours he will require to complete each of the modules. Example: a typical site will have a login module, registration, My account, profile etc. So let him estimate how much he will require to do the login. You can go even detail here. (e.g. how much extra time if you were to implement Facebook/Twitter Login?). Once he start developing, track his progress closely and make sure he is following his given timeline. If he goes over his budgeted time on a module, talk with him and see what went wrong. It is often seen that they may be wasting their time on something very insignificant that you may have asked him to implement, but you can totally go by without it too. So by understanding what is taking longer time, you will be able to prioritise things better. You definitely need some tools to get this done. Google Spreadsheet or Excel works just fine. But if you don't mind spending a few bucks there are many agile project management tools that you might look into. Here is a list, google them all and sign up for trials: * AgileZen * Agile Bench * Assembla * AssiTrack * Blossom * Basecamp * Breeze * DoneDone * Eidos * Fogbugz * GreenHopper * Jugggla * Kanbanpad * Pivotal Tracker Or the reason why he is slow can be purely non-technical. Sometime your developer may don't share the same level of enthusiasm as you about the idea that you are working on. They often don't often see the "bigger picture" (since you don't share everything with them explicitly). If you can somehow get them excited about what he is a part of, it will work like a drug :) He will work day and night without questioning you. But you need to work equally as hard as him. The moment he sees that you are the boss and he is just the guy doing work for you -- his mentality will shift from being part of something to being the low paid developer. Ultimately its all about motivation and making him a part of your venture. After all he deserves it, if he is really playing a crucial role in the entire development.SK
the startups.com platform
Copyright © 2025 Startups.com. All rights reserved.