Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@wistia/render-pipeline-client

Package Overview
Dependencies
Maintainers
2
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@wistia/render-pipeline-client

client-side tools for working with the render-pipeline API

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
2
Created
Source

render-pipeline-client

Installation in other applications

Add it to your application's package.json.

With yarn:

yarn add render-pipeline-client

With npm:

npm install render-pipeline-client

Use the client:

import { clip, video, renderVideo } from 'render-pipeline-client';

const exampleFn = async () => {
  const myVid = video({ uri: ".../hi.mp4" });

  // Times are expected in microsecond integers.
  // That's Math.round(timeInSeconds * 1_000_000).
  const clippedVid = clip(myVid, { start: 10_000000, end: 30_000_000 });

  // TODO: update rendering so it makes more sense.
  const renderedVid = await renderVideo(clippedVid, ...);

  console.log('rendered', renderedVid);
};

See the tests or playground for more examples.

Local Setup

We assume you'll have already gone through wistia-setup.

asdf install
yarn install

Auto-build and manual testing

This will auto-compile any changes you make. You can test them manually at https://render-pipeline-client.wistia.io/test/manual/.

./run

FAQs

Package last updated on 23 May 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc