Want more timely Centmin Mod News Updates?
Become a Member

Sysadmin Help with a solution for video streaming :(

Discussion in 'System Administration' started by KinderOvO, Sep 1, 2018.

  1. eva2000

    eva2000 Administrator Staff Member

    55,805
    12,272
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,858
    Local Time:
    10:19 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    This thread has renewed my interestlearning for video encoding/streaming again - it's not something I dabble in much due to how expensive it can get at scale though. Just updated Centmin Mod 123.09beta01's addons/ffmpeg.sh installer with optional AV1 encoder support too Beta Branch - update addons/ffmpeg.sh add AV1 support. From what i read much slower encoding speeds than VP9 webm and H.264/265 but much smaller file sizes due to better compression etc. Some results on AV1 site AV1 Test Results.

    AV1 beats x264 and libvpx-vp9 in practical use case

    So if you're currently streaming H.264 mp4 videos, AV1 encoded could reduce size by upto 50% !


    Enjoy!
     
  2. gabel

    gabel Member

    68
    38
    18
    Jan 7, 2016
    Ratings:
    +64
    Local Time:
    1:19 PM
    1.9.9
    MariaDB 10
    kvs makes use of limit_rate_after , here's a post where they explain how this can be done using their script (could be applied to other scripts as well )

    Code:
    https://www.kernel-video-sharing.com/forum/forum/educational-support/educational-series/34-how-to-save-bandwidth-with-kvs-tube-script
     
    Last edited: Sep 4, 2018
  3. eva2000

    eva2000 Administrator Staff Member

    55,805
    12,272
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,858
    Local Time:
    10:19 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    Thanks @gabel definitely interesting and smart approach :)

    Module ngx_http_core_module

     
  4. KinderOvO

    KinderOvO Member

    92
    1
    8
    Jan 13, 2015
    Ratings:
    +1
    Local Time:
    10:19 PM
    1.4
    10
    Total DISK READ : 474.02 M/s | Total DISK WRITE : 3.3 M/s
    Actual DISK READ: 477.67 M/s | Actual DISK WRITE: 1.15 M/s

    Is my iotop result

    Thanks all for attention to help-me

    I am currently using 6 gbps full

    I plan to upgrade to 20gbps.

    Being that I disc rate are already high, all my discs are ssds which generates a very high cost.

    I need a lot of space, because I use videos in 3 formats, 720p, 480p and 360p

    because many visitors use 3G and a slow connection.

    What would be the best solution, since nginx is not caching the videos.

    Is there any way to cache the videos and decrease disk usage.

    I currently use 4 x 2TB SSD
    all the disks are already with 70% of use, already I am thinking how I will do to 20gbps, since with 6gbps the reading rate is very high.
     
  5. eva2000

    eva2000 Administrator Staff Member

    55,805
    12,272
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,858
    Local Time:
    10:19 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    Already mentioned in this thread with links to using nginx sliced byte range caching to cache videos :) For disk space usage, re-encode videos for smaller size I guess
     
  6. KinderOvO

    KinderOvO Member

    92
    1
    8
    Jan 13, 2015
    Ratings:
    +1
    Local Time:
    10:19 PM
    1.4
    10
    Do I need to format my current server and reinstall centmin? Could you share your vhost? and config for mp4 / webm files.
     
  7. eva2000

    eva2000 Administrator Staff Member

    55,805
    12,272
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,858
    Local Time:
    10:19 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
  8. KinderOvO

    KinderOvO Member

    92
    1
    8
    Jan 13, 2015
    Ratings:
    +1
    Local Time:
    10:19 PM
    1.4
    10
    Got it, have you ever used HLS? would it have an advantage? because I currently have to generate 3 videos, 720p, 480p, 320p - because I have a lot of visitors from areas with slower internet.

    It would be the same process, I looked into generating videos with codec AV1 for hls, but I did not find anything of the type.
     
  9. KinderOvO

    KinderOvO Member

    92
    1
    8
    Jan 13, 2015
    Ratings:
    +1
    Local Time:
    10:19 PM
    1.4
    10
  10. eva2000

    eva2000 Administrator Staff Member

    55,805
    12,272
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,858
    Local Time:
    10:19 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
  11. KinderOvO

    KinderOvO Member

    92
    1
    8
    Jan 13, 2015
    Ratings:
    +1
    Local Time:
    10:19 PM
    1.4
    10
    My problem is this directive
    limit_traffic_rate rate 1500k;

    nginx not start after add.
     
  12. eva2000

    eva2000 Administrator Staff Member

    55,805
    12,272
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,858
    Local Time:
    10:19 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    check nginx config test output
    Code (Text):
    nginx -t
    
     
  13. KinderOvO

    KinderOvO Member

    92
    1
    8
    Jan 13, 2015
    Ratings:
    +1
    Local Time:
    10:19 PM
    1.4
    10
    no cache miss or hit :(
     

    Attached Files:

  14. eva2000

    eva2000 Administrator Staff Member

    55,805
    12,272
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,858
    Local Time:
    10:19 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    Keep trying and testing. It worked for me Sysadmin - Help with a solution for video streaming :(. No free support provided from me - this is usually something my clients pay me to consult for. This is something you need to figure out on your own.

    nginx-sliced-byte-range-caching-011018-00.png

    added conditional headers to track which sliced byte chunks are sliced = 1 and sliced-cache = HIT or MISS. It will only be from cache if you skip back or forth to point in a video's playback the first time and then cached (cache HIT) for subsequent requests for however long you configured cache expiry and cache inactive time. After cache size reached or expiry/inactive time is reached, the cache is cleared so again first time request is cache = MISS

    nginx-sliced-byte-range-caching-011018-01.png

    and sliced = 1 but sliced-cache = MISS

    nginx-sliced-byte-range-caching-011018-02.png
     
    Last edited: Oct 1, 2018
  15. KinderOvO

    KinderOvO Member

    92
    1
    8
    Jan 13, 2015
    Ratings:
    +1
    Local Time:
    10:19 PM
    1.4
    10
    Thanks for the attention, I will try something different because it did not work for me, it is not caching the .mp4 files.
     
  16. KinderOvO

    KinderOvO Member

    92
    1
    8
    Jan 13, 2015
    Ratings:
    +1
    Local Time:
    10:19 PM
    1.4
    10
    Currently
    Network: 698.22 MBit/s
    Iotop: Total DISK READ : 175.79 M/s | Total DISK WRITE : 65.83 K/s
    Cpu: Average: 1.72 1.66 1.57

    When it arrives at 3gbps of use, it is super slow, load of the cpu passes of the 33%, iotop in the heights.

    So my doubt and the next, I can never have a server to stream 5gbps? because currently my hardware is good in my point of view, but I already have these problems using little traffic.
    2x2620v4 + 64GB DDR4 + 4x2TB SSD
     
  17. Kintaro

    Kintaro Member

    106
    11
    18
    Dec 2, 2016
    Italy
    Ratings:
    +30
    Local Time:
    2:19 PM
    1.15.x
    MariaDB 10
    Just use Pied Piper :whistle:


    p.s. sorry but I couldn't resist.
     
  18. KinderOvO

    KinderOvO Member

    92
    1
    8
    Jan 13, 2015
    Ratings:
    +1
    Local Time:
    10:19 PM
    1.4
    10
  19. eva2000

    eva2000 Administrator Staff Member

    55,805
    12,272
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,858
    Local Time:
    10:19 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
  20. buik

    buik “The best traveler is one without a camera.”

    2,043
    527
    113
    Apr 29, 2016
    Flanders
    Ratings:
    +1,690
    Local Time:
    2:19 PM
    @KinderOvO year plus ago when you initially launched you question about:
    'Help with a solution for video streaming'. How is it going and what solution are you using now?
    '