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

convert-png-sequence-to-transparent-video

Package Overview
Dependencies
Maintainers
0
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

convert-png-sequence-to-transparent-video

This tool convert a .png sequence (e.g. render.1.png, render.2.png, ...) to a transparent video (.mov + .webm) with alpha channel, for use in all modern web browsers.

  • 1.0.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-50%
Maintainers
0
Weekly downloads
 
Created
Source

Convert PNG Sequence to Transparent Video

This tool convert a .png sequence (e.g. render.1.png, render.2.png, ...) to a transparent video (.mov + .webm) with alpha channel, for use in all modern web browsers.

Usage

$ npx convert-png-sequence-to-transparent-video

Usage: convert-png-sequence-to-transparent-video -i pattern [-o directory] [-f fps] [-h height]

Required:
  -i pattern    Input file pattern (e.g., 'sequence.%d.png')

Optional:
  -o directory  Output directory (defaults to current directory)
  -f fps        Framerate (default: 24)
  -h height     Output height in pixels (width scales automatically)

Example:
  convert-png-sequence-to-transparent-video -i 'sequence.%d.png' -o ~/Desktop/output -f 30 -h 720

Creates both .webm (Chrome/Firefox) and .mov (Safari) with transparency

Example

Convert

Let's see we have a directory ~/Desktop/pngs/ with the following files:

my_render.1.png
my_render.2.png
...
my_render.200.png

Then run the tool as follows:

$ npx convert-png-sequence-to-transparent-video \
  -i "~/Desktop/pngs/my_render.%1.png" \
  -o "~/Desktop/" \
  -f 30 \
  -h 720

This will create two files, my_render.webm and my_render.mov in ~/Desktop. Both with 30 frames per second, and a height of 720 pixels.

HTML

<video>
  <source src="output.mov"  type='video/mp4; codecs="hvc1"'> <!-- Safari on macOS & iOS -->
  <source src="output.webm" type="video/webm"> <!-- Chrome, Firefox -->
</video>

FAQs

Package last updated on 28 Nov 2024

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