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

batchedffmpeg

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

batchedffmpeg

Process multiple videos with one line of ffmpeg command.

  • 0.0.0.5
  • PyPI
  • Socket score

Maintainers
1

BatchedFFmpeg

Process multiple videos with one line of ffmpeg command.

ezgif-1-b9b482fb9e6f ezgif-2-4ce90071b4cd

Requirements

  • ffmpeg

Install

pip install batchedffmpeg

Usage

batchedffmpeg [options] [[infile options] -i infile]… {[outfile options] outfile}…

Usage for command is the same with original ffmpeg besides infile.

infile can be a video file or folder(=directory) where the video files are saved. If infile is a folder, program will search all video files in a folder including subfolders and then those files will be processed under the same command.

The output file is saved differently depending on the extension of outfile.

if outfile == video:

  input/
    hi.mp4
    bye.mp4

After running command(outfile=./output/out.avi)...

  output/
    hi_out.avi
    bye_out.avi

elif outfile == img:

  input/
    hi.mp4
    bye.mp4

After running command(outfile=./output/out%4d.jpg)...

  output/
    hi/
      hi_out0001.jpg
      hi_out0002.jpg
      ...
    bye/
      bye_out0001.jpg
      bye_out0002.jpg
      ...

Keywords

FAQs


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