How to make video streaming server

judasx

Newbie
Joined
Aug 29, 2022
Messages
4
Reaction score
0
Hi guys. Sorry for noobie question.

I have a DMCA ignored storage VDS for my adult tube. So I need to turn VDS to video streaming server.

How to do this properly? Any tut link or keyword for research?
 
Hi there,

Depending on how complex of a solution you’d need, there are a couple of ways you could approach this problem.

In the past, I made a script for one of my projects which automatically converted the uploaded files different dimensions and finally the HLS (we didn’t do mpeg dash as our choice of player worked well with HLS format)

That’s the backend, now for the frontend we used Plyr with HLS.js and a custom made bridge.

This is sufficient for most cases but maintaining it and connecting it to your workflows require some consideration.

Alternatively, you can look into premade solutions and try integrating them into your workflows. They’re usually less flexible but might do the job.
 
Hi there,

Depending on how complex of a solution you’d need, there are a couple of ways you could approach this problem.

In the past, I made a script for one of my projects which automatically converted the uploaded files different dimensions and finally the HLS (we didn’t do mpeg dash as our choice of player worked well with HLS format)

That’s the backend, now for the frontend we used Plyr with HLS.js and a custom made bridge.

This is sufficient for most cases but maintaining it and connecting it to your workflows require some consideration.

Alternatively, you can look into premade solutions and try integrating them into your workflows. They’re usually less flexible but might do the job.
Is there perhaps a wordpress solution that could achieve this? Simply installing the CMS and managing it through it?
 
Unfortunately, there’s no single plugin that can achieve this in WordPress directly.

There’s a third party plugin called transcoder which works with a remote server and I’m not certain if they support HLS.
 
Hi there,

Depending on how complex of a solution you’d need, there are a couple of ways you could approach this problem.

In the past, I made a script for one of my projects which automatically converted the uploaded files different dimensions and finally the HLS (we didn’t do mpeg dash as our choice of player worked well with HLS format)

That’s the backend, now for the frontend we used Plyr with HLS.js and a custom made bridge.

This is sufficient for most cases but maintaining it and connecting it to your workflows require some consideration.

Alternatively, you can look into premade solutions and try integrating them into your workflows. They’re usually less flexible but might do the job.
Ant tutorial for this?
 
You should search a little to find the proper ones, as it's mostly technical, It'd take more than a simple message to get to what exactly you require. This is for converting .mp4 files to m3u8 (HLS), and you can find more snippets around the web. To ensure it's working to your exact needs, you can further wrap this using a script to get it going.
ffmpeg -i filename.mp4 -codec: copy -start_number 0 -hls_time 10 -hls_list_size 0 -f hls filename.m3u8
 
Back
Top