1.7.0 • Published 7 months ago

kimchord-fastforward v1.7.0

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

🚧 Currently under construction 🚧

Kimchord Fast Forward is a simple npm package that allows you to manipulate audio and video files by skipping a specified number of seconds. It's a wrapper for ffmpeg-static with a simpler interface.

Example Usage

async function fast() {
  const ff = new fastForward();

  ff.setFileName("example.mp3"); // File name with extension
  ff.setSkipTo(50); // Set the number of seconds to skip

  const tempPath = path.join(__dirname, "./temp"); // Path example
  ff.setInputFolder(tempPath); // Absolute path
  ff.setOutputFolder(tempPath); // Absolute path

  ff.setDefaultConfig(); // ff.addConfig(option: <array>|<string>)
  
  const res = await ff.run(); // Run the Fast Forward process
  console.log(res);
}
1.7.0

7 months ago

1.6.0

7 months ago

1.5.0

7 months ago

1.4.2

7 months ago

1.4.1

7 months ago

1.4.0

7 months ago

1.3.1

8 months ago

1.3.0

8 months ago

1.2.0

8 months ago

1.1.8

8 months ago

1.1.7

8 months ago