
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
✨ Glorious media processing right in your browser with Typescript support ✨
Explore the docs »
Framo aims to provide advanced media features on the browser itself without having to configure or setup multiple dependencies. It does all the hard work for you by using the best configurations for FFmpeg and only exposing the necessary options. See the full list of features.
Framo is made using:
To use Framo in your project
npm install framo
Initialize framo with initializeFramo() before using any of its features
const framo = new Framo();
await framo.initializeFramo();
...
OR
framo.initializeFramo().then(() => {
...
})
Alternatively, you can initialize framo asynchronously by subscribing to the ready
observable.
const framo = new Framo();
framo.ready.subscribe(() => {
...
});
framo.initializeFramo();
makeFilmstrip()
Make a filmstrip using frames at regular intervals.
const config: FilmstripRequestConfig = {
file: <File>,
filename: 'input.mp4',
timeInterval: 1,
outputExtension: FramoImageExtension.JPG,
orientation: FilmstripOrientation.VERTICAL,
/** Optional */
resolution: {
height: 150,
},
margin: 5,
padding: 5,
color: '#ff0000',
}
const filmstrip = await framo.makeFilmstrip(config);
stitchFrames()
Stitch frames together to make a video.
const config: StitchFramesRequestConfig = {
files: <Files>,
inputExtension: FramoImageExtension.JPG,
videoExtension: FramoVideoExtension.MP4;
/** Optional */
frameDuration: 1,
};
const frames = await framo.stitchFrames(config);
extractFrames()
Extract frames from videos at specific time points or at regular intervals.
const config: ExtractFramesRequestConfig = {
file: <File>,
filename: 'input.mp4',
timeInterval: 5,
outputExtension: FramoImageExtension.JPG,
};
const frames = await framo.extractFrames(config);
More features coming soon...
ready
is triggered when framo is ready for operations.
framo.ready.subscribe(() => {
...
});
Subscribe to the progress
observable to monitor operation progress.
framo.progress.subscribe((progress: Progress) => {
...
});
For more details, please refer to the Documentation
Distributed under the MIT License. See LICENSE
for more information.
FAQs
Glorious media processing right in your browser with Typescript support
The npm package framo receives a total of 12 weekly downloads. As such, framo popularity was classified as not popular.
We found that framo demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.