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

     
  • 相关阅读:
    2019.9.4 二维树状数组
    2019.9.4 简单题
    0052-YH的计算器
    0051-打乱顺序的三位数
    0050-计算天数
    0049-学校的上网费
    0048-三角形的判断
    0047-月份转换
    0046-简单的分段函数(二)
    0045-简单的分段函数(一)
  • 原文地址:https://www.cnblogs.com/xpylovely/p/14814314.html
Copyright © 2011-2022 走看看