npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

com.ant-automation.rtsp-video-streaming.server

v0.1.3

Published

Wraps native platform APIs for performing H.264 encoding and RTP streaming.

Downloads

2

Readme

Unity Video Streaming Server Package

Alexander Ezharjan
9th Sep, 2020

github repository

Utilization

  1. Add new Texture2D in assets whit the size equal to camera resolution (example 1920 x 1080)
  2. In Camera Gameobject set Target Texture to the new texture
  3. In Camera Gameobject add VideoStreamingServerComponent
  4. Set SourceTexture to the same camera target texture
  5. Set Port to an unused port

Streaming client

In a streaming client (example VLC Media Player) set open network streaming URL to rtsp://ip:port

Build Settings

To build an Unity application add the RGBToNV12 shader to included shaders:

  1. Select menu Edit > Project Settings...
  2. Select Graphics tab
  3. In Always Included Shaders section add new element: Video/RGBToNV12

The shader is located in tha Packages > VideoStreming Server > Shaders

RunTime Prerequisites

The H264Encoder.dll plugin must be compiled in VS 2015 x64 Release.
The H264Encode has the following dependencies:

In Windows OS:

  • ole32.dll (Windows OS)
  • KERNEL32.dll (Windows OS)
  • MFPlat.DLL (Windows OS)

Visual C++ Redistributable for Visual Studio 2015

  • MSVCP140.dll
  • VCRUNTIME140.dll

Windows SDK

  • api-ms-win-crt-runtime-l1-1-0.dll
  • api-ms-win-crt-heap-l1-1-0.dll

Tools

DUMPBIN

To check the dependencies use the Tool Command Prompt for VS 2019

> dumpbin /DEPENDENTS H264Encoder.dll
Microsoft (R) COFF/PE Dumper Version 14.29.30138.0
Copyright (C) Microsoft Corporation.  All rights reserved.


Dump of file H264Encoder.dll

File Type: DLL

  Image has the following dependencies:

    ole32.dll
    MSVCP140.dll
    MFPlat.DLL
    VCRUNTIME140.dll
    api-ms-win-crt-runtime-l1-1-0.dll
    api-ms-win-crt-heap-l1-1-0.dll
    KERNEL32.dll

  Summary

        1000 .data
        1000 .pdata
        2000 .rdata
        1000 .reloc
        1000 .rsrc
        3000 .text

Dependency Walker

Dependency Walker is a free utility that scans any 32-bit or 64-bit Windows module (exe, dll, ocx, sys, etc.) and builds a hierarchical tree diagram of all dependent modules.
No intalation is needed. https://www.dependencywalker.com/