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

     
  • 相关阅读:
    百度网盘下载太慢,试试阿里云网盘?
    linux使用过程中遇到的常见问题
    vscode设置护眼色
    为什么程序员互相之间不能透露薪水?
    机器学习:支持向量机(SVM)
    Java多线程总结(三)
    Java多线程总结(二)
    Java多线程总结(一)
    8.多线程--避免活跃性危险
    7.多线程--线程池的使用
  • 原文地址:https://www.cnblogs.com/xpylovely/p/14814314.html
Copyright © 2011-2022 走看看