ICode9

精准搜索请尝试: 精确搜索
  • javascript – 如何将Firefox连接到Chrome以通过WebRTC传输h264?2019-07-06 08:33:02

    我尝试将Firefox 45连接到Chrome 51dev以传输h264视频. Firefox到Firefox和Chrome到Chrome的效果非常好.但即使我设置优先级h264,Firefox到Chrome也会传输vp8视频. 要设置编解码器优先级,我使用了以下链接:https://miguelpdl.github.io/WebRTC-codelab/session06/lab/html/step03.ht

  • rtp(h264,ts,ps)流的播放小技巧2019-07-05 19:03:19

    使用ffmpeg以下指令,即可分析出sdp ffmpeg -re -i test.264 -f rtp rtp://127.0.0.1:20001>test.sdp ffmpeg -re -i test.ts -f rtp rtp://127.0.0.1:20002>test.sdp ffmpeg -re -i test.ps -f rtp rtp://127.0.0.1:20003>test.sdp         本地调试,利用ffmpeg 推送及播放udp rt

  • vue实现获取内网ip和外网ip2019-06-26 10:43:03

    1.内网IP 注意:有的浏览器获取到的是IPv4地址,有的是IPv6地址  <template> <section class="p-10"> <h1>{{ ip }}</h1> </section></template><script> export default { data() { return { ip: '' };

  • 获取ip2019-06-01 14:50:26

    /**  * Get the user IP throught the webkitRTCPeerConnection  * @param onNewIP {Function} listener function to expose the IP locally  * @return undefined  */ function getUserIP(onNewIP) { //  onNewIp - your listener function for new IPs     //compati

  • 【做题】ZJOI2017仙人掌——组合计数2019-03-06 23:03:45

    原文链接 https://www.cnblogs.com/cly-none/p/ZJOI2017cactus.html 给出一个\(n\)个点\(m\)条边的无向连通图,求有多少种加边方案,使得加完后得到一个仙人掌。 \(n \leq 5 \times 10^5, \ m \leq 10^6\) 首先,判定无解后,我们可以把每个环删掉,那么答案就是剩下的若干树的加边方案的

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有