zoukankan      html  css  js  c++  java
  • windows平台最简单的rtmp/hls流媒体服务器

    feature:

    rtmp/hls live server for windows, double click to run,don't need config.
    

    run and quit:

    double click bin/liveserver.bat to run,press ctrl-c to quit.
    

    use:

    default:
    1、rtmp publish:rtmp://127.0.0.1/live/[streamname]
    2、rtmp play:rtmp://127.0.0.1/live/[streamname]
    3、hls play:http://127.0.0.1/hls/[streamname].m3u8
    4、live stat;http://127.0.0.1/stat
    custom:
    1、config file:/usr/local/nginx/conf/nginx.conf
    

    Depand:

    1、use open source project:cygwin nginx-1.6.2 nginx-rtmp-module-1.1.4 (all project use origin code)
    2、nginx's configure param:--with-http_dav_module --with-http_flv_module --with-http_stub_status_module --without-http_scgi_module --without-http_uwsgi_module --without-http_gz ip_module --without-http_ssi_module --without-http_proxy_module --without-http_memcached_module --without-http_empty_gif_module --without-mail_pop3_module --without-mail_imap_module --without-mail_smtp_module --with-pcre=$PWD/../pcre-8.36 --add-module=$PWD/../nginx-rtmp-module-master
    

    Why make it:

    I want a live server with one command or double click to run. 
    Rtmplite has the feature with pool compatibility. This liveserver
    with double click to run and needn't config. It has good 
    compatibility and support 64 clients. it's efficiency is poor 
    than linux server but enough for personal application.
    

    Site:

    www.github.com/langsim/liveserver


    from:https://blog.csdn.net/langsim/article/details/49398457
  • 相关阅读:
    Python 基础知识----数据类型
    drf 之序列化组件
    Django Rest framework 框架之解析器
    css选择器
    Python 爬虫 解析库的使用 --- Beautiful Soup
    Python 爬虫 解析库的使用 --- XPath
    动态渲染页面爬取(Python 网络爬虫) ---Selenium的使用
    HDU 1014(互质数 **)
    HDU 6432(不连续环排列 ~)
    HDU 6433(2的n次方 **)
  • 原文地址:https://www.cnblogs.com/lidabo/p/9015484.html
Copyright © 2011-2022 走看看