zoukankan      html  css  js  c++  java
  • http发送视频流

    --------------------------c->s----------------------------

    GET /media/simple?path=/home/xpy/http/example/huoyuanjia.mp4 HTTP/1.1
    Host: 192.168.233.128:8000
    Accept: */*
    Accept-Language: en_US
    User-Agent: VLC/3.0.14 LibVLC/3.0.14
    Range: bytes=0-

    --------------------------s->c----------------------------

    HTTP/1.1 206 Internal Server Error
    Accept-Ranges: bytes
    Content-Length: 15982834
    Content-Range: bytes 0-15982833/15982834
    Content-Type: video/mpeg
    Set-Cookie: id=1;path=/media/simple

    --------------------------c->s----------------------------

    GET /media/simple?path=/home/xpy/http/example/huoyuanjia.mp4 HTTP/1.1
    Host: 192.168.233.128:8000
    Accept: */*
    Accept-Language: en_US
    User-Agent: VLC/3.0.14 LibVLC/3.0.14
    Range: bytes=15634774-

    --------------------------s->c----------------------------

    HTTP/1.1 206 Internal Server Error
    Accept-Ranges: bytes
    Content-Length: 348060
    Content-Range: bytes 15634774-15982833/15982834
    Content-Type: video/mpeg
    Set-Cookie: id=2;path=/media/simple

    --------------------------c->s----------------------------

    GET /media/simple?path=/home/xpy/http/example/huoyuanjia.mp4 HTTP/1.1
    Host: 192.168.233.128:8000
    Accept: */*
    Accept-Language: en_US
    User-Agent: VLC/3.0.14 LibVLC/3.0.14
    Range: bytes=48-

    --------------------------s->c----------------------------

    HTTP/1.1 206 Internal Server Error
    Accept-Ranges: bytes
    Content-Length: 15982786
    Content-Range: bytes 48-15982833/15982834
    Content-Type: video/mpeg
    Set-Cookie: id=3;path=/media/simple

    ------------------------------------------------------

    2 c->s

    GET /media/simple?path=/home/xpy/zport/src/huoyuanjia.mp4 HTTP/1.1
    Host: 192.168.233.128:10000
    Accept: */*
    Accept-Language: en_US
    User-Agent: VLC/3.0.14 LibVLC/3.0.14
    Range: bytes=0-

    s->c

    HTTP/1.1 206 Partial Content
    Accept-Ranges: bytes
    Content-Length: 15982834
    Content-Range: bytes 0-15982833/15982834
    Content-Type: text/plain

    c->s

    GET /media/simple?path=/home/xpy/zport/src/huoyuanjia.mp4 HTTP/1.1
    Host: 192.168.233.128:10000
    Accept: */*
    Accept-Language: en_US
    User-Agent: VLC/3.0.14 LibVLC/3.0.14
    Range: bytes=15634774-

    s->c

    HTTP/1.1 206 Partial Content
    Accept-Ranges: bytes
    Content-Length: 348060
    Content-Range: bytes 15634774-15982833/15982834
    Content-Type: text/plain

    c->s

    GET /media/simple?path=/home/xpy/zport/src/huoyuanjia.mp4 HTTP/1.1
    Host: 192.168.233.128:10000
    Accept: */*
    Accept-Language: en_US
    User-Agent: VLC/3.0.14 LibVLC/3.0.14
    Range: bytes=48-

    s->c

    HTTP/1.1 206 Partial Content
    Accept-Ranges: bytes
    Content-Length: 15982786
    Content-Range: bytes 48-15982833/15982834
    Content-Type: text/plain

     
  • 相关阅读:
    Extjs4 关于设置form中所有子控件为readOnly属性的解决方案
    Chrome调试(转)
    ExtJS4 动态加载
    CSS display和visibility的用法和区别
    利用Java调用OpenCV进行人脸识别
    Mac上安装openCV(Java版本)
    关于mysql的Fetch Time 和 Duration Time
    数据库相关中间件介绍
    JVM和java应用服务器调优
    探索 ConcurrentHashMap 高并发性的实现机制
  • 原文地址:https://www.cnblogs.com/xpylovely/p/14814314.html
Copyright © 2011-2022 走看看