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

     
  • 相关阅读:
    201. Bitwise AND of Numbers Range
    200.Number of Islands
    199. Binary Tree Right Side View
    198. House Robber
    191. Number of 1 Bits
    190. Reverse Bits
    odoo pivot filed字段设置
    postgres 实现查找所有的子记录,child_of
    postgres 查询返回记录集的函数
    python GUI编程/窗口编程之easygui
  • 原文地址:https://www.cnblogs.com/xpylovely/p/14814314.html
Copyright © 2011-2022 走看看