Your Guide to setting up a video streaming server

As of January 2018, 85% of U.S. internet users watch online video. As time goes by, more and more of your users will expect your website to provide streaming video alongside text content.

You can host your video on sites like YouTube and Vimeo, but you’ll be at their mercy. They’ll show ads alongside your videos that could be from your competitors, you have no control over the other “related” videos they show besides yours, and they could take your video down with no warning.

Plus, you can’t have an actual video streaming business without your own servers dedicated to streaming video.

Running your own video streaming server gives you complete control over your content so your visitors will experience it the way you want. Let’s look at how to set up your own streaming server.

What You Need for a Streaming Server

A streaming server delivers video content to your site’s visitors by sending a continuous “stream” of information. This is in contrast to a typical web page that has a fixed amount of information to be delivered.

Your Dedicated Server & Geographic Location

Not surprisingly, the most important piece of your video streaming server is the actual server.

We recommend choosing a dedicated server that is physically located in the region where most of your users will be viewing content. Choosing a dedicated servers in The Netherlands is a good idea if a large percentage of your users are in the European Union or if you’re trying to have a global reach to both Europe and North America.

When it comes to picking the right hosting provider, we recommend avoiding cheap dedicated servers (also known as budget dedicated servers). As with most things in life, you get what you pay for. So don’t be tempted to buy a server that will result in lag, poor performance, and lots of buffering.

Unmetered Bandwidth

In web hosting, bandwidth is the amount of transferable data within a given amount of time. In web servers, it also refers to the included amount of data transfer. Click here to learn more about Bandwidth.

One of the most important things to consider when choosing your streaming server is the amount of bandwidth (data transfer) your hosting plan provides. Streaming media can use a lot of bandwidth. If your plan has a transfer cap, you could find yourself facing some hefty overage charges.

The best solution is to get an unmetered server. Unmetered means there is no limit on the amount of data you can transfer every month. Maple-Hosting’s unmetered dedicated servers are perfect for a video streaming server. There’s no transfer limit, and we don’t slow down your transfer speeds if you hit a certain amount like some hosting companies.

If you’re creating a new streaming website, we recommend that you start small with a True-Unmetered 100 Mbps port. This is the most affordable unmetered port you could get. Here is an estimate of the number of concurrent streams a 100 Mbps port can offer you:

~100 Concurrent Streams @ 0.5 MBPS: LOW MOVEMENT VIDEO, LOW QUALITY TELECONFERENCING
~50 Concurrent Streams @ 1 MBPS: LOW TO MEDIUM QUALITY VIDEO, HIGH QUALITY TELECONFERENCING
~20 Concurrent Streams @ 2.5 MBPS: MEDIUM TO HIGH QUALITY VIDEO AT HD RESOLUTION
~12 Concurrent Streams @ 4 MBPS: VERY HIGH QUALITY VIDEO, PEAK RATE FOR MOST UGC
~5 Concurrent Streams @ 10 MBPS: NEAR-LOSSLESS CONTENT STREAMING

Once you grow the True-Unmetered 100 Mbps port, you’ll be able to easily upgrade to a True-Unmetered 1 Gbps port which will be able to handle roughly 10 times the concurrent streams a 100 Mbps port can.

Streaming Software

The same way that websites require webserver software to allow users to see the website, video streaming websites require a software that allows your users to see the videos you’re streaming.

Here are some of the software options you can choose from:

Ant Media

Ant Media offers Scalable, Ultra-Low Latency & Adaptive WebRTC Streaming with support for CMAF, HLS, RTMP, RTSP and much more.

Ant Media Server is highly scalable both horizontally and vertically. They even have a free Community Edition License and their Enterprise licenses are rather affordable.

We can install the Ant Media Streaming Engine Marketplace App on any Maple-Hosting server. Simply select it under “Marketplace Apps”.

Ant Media Dedicated Server for Video Streaming
When customizing your dedicated server, select Ant Media Streaming Engine as your Marketplace App.

Other Streaming Platforms

Other streaming platforms include Owncast, Wowza, Red5, Janus, Jitsi, and more.

In our experience, customers prefer the ease of use that Ant Media provides which is why that is our recommended video streaming engine.

Other Things to Consider

You also need to consider a few additional factors:

  • The quality of your stream (standard def, high def, 4K, etc.)
  • The number of viewers at any given time
  • Storage required for your media content
  • Access – private or open to the world

Stream quality and the number of viewers will determine how much bandwidth you need in terms of the port size. Maple-Hosting’s unmetered servers are available with port sizes from 1Gbps to 20Gbps. A larger port means your server will support higher quality and more simultaneous viewers.

Our Server Recommendation Wizard Can Help You Find Your Streaming Server

We make it really easy to calculate your bandwidth requirements. We’ve created a one-of-a-kind server recommendation wizard.

This wizard will ask you a few simple questions and will then calculate the amount of bandwidth and RAM you need, as well as provide a dedicated server recommendation so you can get started right away.

Setting Up A Simple Video Stream Server using Nginx

To install the streaming packages that we’re going to cover here, your server will need to be up and running with the Linux operating system. Maple-Hosting offers various distributions and versions of Linux.

We’re going to cover the steps to set up your server using Ubuntu Linux. Ubuntu is based on Debian, so this process should work similarly with any Debian-based distribution. If you’re using a distribution that uses a different package manager, such as Red Hat’s RPM, you’ll need to adjust the commands to suit.

Install & Configure Nginx

You’ll be using the terminal to install the various packages needed to stream video so you’ll want to have SSH configured and be able to log in to your server. Maple-Hosting provides full root access to your server, so you’ll be able to set things the way you want.

First, install the Nginx web server. Nginx is a web server that runs on your server and serves up the web pages your visitors see when they land on your site.

sudo apt install nginx

Next, install the RTMP module that lets Nginx handle media streams. A typical web page loads a fixed amount of information then waits until your visitor clicks another link. Streaming video is a different beast because it needs to send information non-stop. This package adds that ability to the webserver.

sudo add-apt-repository universe

sudo apt install libnginx-mod-rtmp

Edit the web server’s config file so it can work with your stream:

sudo nano /etc/nginx/nginx.conf

At the bottom of that file, add the following lines:

rtmp {
server {
listen 1935;
chunk_size 4096;
application live {
live on;
record off; } } }

Save the changes using Ctrl-X, Y, then press Enter.

This configuration gives you a simple starting point. It doesn’t record your live stream and just offers basic functionality, but you can always add to it later, once you know it’s working and you decide exactly what features you want.

Once you’ve updated the configuration file, restart Nginx to have the changes take effect:

sudo systemctl restart nginx

Next, you’ll need to have something to stream. We’re going to go through the steps for installing software on your local PC to live stream to your viewers.

Install & Configure OBS

Open Broadcast Studio, or OBS, is a powerful application for supplying your server with the video for it to stream. You can download and install the version for your particular operating system from the OBS website.

When you launch OBS, you’ll get a wizard that will walk you through the setup. After the wizard finishes, you’ll need to give OBS a video source to send to your server.

For now, we’ll stream your desktop so click the + button under “Source”, choose “Screen Capture”, and pick the desktop you want to use. When you click OK, OBS should show your desktop.

Now that you have a “video” stream set up, you need to send it to your server. Click on File then Settings in OBS and click on the Stream section. Set the Stream Type to Customer Streaming Server.

In the URL field, enter the following:

rtmp:///live

For example, if your IP address is 1.2.3.4 you would enter rtmp://1.2.3.4/live.

Limiting Who Can View Your Stream

A stream key lets you restrict the streaming to only people who have the key. To set it up, enter your key in the “Stream key” box. It can anything you want but make sure it’s something you’ll remember.

Click Apply, then OK to save the changes. OBS is ready to send the stream to your server so you can click Start Streaming. To stop streaming, click the Stop Streaming button.

If you get any errors, go back and check all your entries in OBS to make sure there aren’t any typos.

Viewing Your Stream

To test your streaming video, you’ll need a media player that supports the RTMP protocol. The VLC media player is one of the best, so if you don’t already have it installed, you can download it from the VLC website.

Click on the Media menu then Open Network Stream and enter the path to your streaming server, with the Streaming Key added to the end if you set one up.

rtmp:///live/Streaming-Key

You should see the desktop you chose during the OBS setup, but this one is streaming from your server.

Alternative Streaming Options

There are other streaming options beside the one we’ve outlined here including Wowza Streaming Engine and Ant Media Server. Both of these alternatives offer some advantages.

Wowza is a commercial tool, meaning you have to pay for it. On the surface, that might seem like a disadvantage compared to a free option like OBS but part of what you’re paying for is the support behind the product. You’ll have access to tech support for assistance with any questions you have about the tool along with powerful features like on-the-fly transcoding that lets you stream almost any video format.

Ant Media Server offers the best of both worlds. It’s an open-source product, which means it’s available for free, but they also offer paid plans that provide technical support along with some extra features like live streaming to Facebook and YouTube.

Where to Go from Here

You might want to record live streams for people to watch later. Or maybe your company creates videos that you want your customers to be able to access through your website. Once your server is up and running, you can configure it to suit your needs by making changes to the RTMP configuration file.

If you’d rather not have to dig into the technical details of setting up your streaming server, Maple-Hosting can help. With our unmetered dedicated servers, you get a premium truly unmetered dedicated port on a dedicated server that was built for content streaming. Get in touch with us today, and we’ll help you get started.

Award-Winning Dedicated Servers

Please select the dedicated server type that best matches your needs:

Netherlands Dedicated Servers

NETHERLANDS DEDICATED SERVERS All of our dedicated servers are hosted in The Netherlands. Build the right dedicated server for your needs.
View All Servers ›

Unmetered Dedicated Servers

UNMETERED DEDICATED SERVERS Designed for high-bandwidth use cases. Experience truly unmetered premium bandwidth from 100 Mbps to 20+ Gbps.
View Unmetered Servers ›

Server Recommendation Wizard

SERVER RECOMMENDATION WIZARD Building the right server for your needs has never been easier. Use our one-of-a-kind wizard to get the right server for you.
Start Recommendation Wizard ›

2 responses to “Your Guide To Setting Up A Video Streaming Server”

  1. […] you’re setting up a video streaming server, you’ll probably need 1 Gbps at a minimum, but as you grow, you’ll need bigger and […]

  2. […] you’ll be able to better meet the ever-changing demands of your audience. You could offer live streaming, online games, apps, and other services on your website to boost user […]

Leave a comment about this article

This site uses Akismet to reduce spam. Learn how your comment data is processed.