
Product
Socket Now Supports pylock.toml Files
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
awscdk-construct-hls-session-runner
Advanced tools
AWS CDK construct for deploying a Lambda function and SFN state machines to fetch an HLS manifest
AWS CDK construct for deploying a Lambda function and SFN state machines to fetch an HLS manifest
import { SessionRunner } from 'awscdk-construct-hls-session-runner';
export class MyStack extends Stack {
constructor(scope: Construct, id: string, props: StackProps = {}) {
super(scope, id, props);
const eventStartTime = new Date('2025-03-26T00:00:00Z');
const eventEndTime = new Date('2025-03-26T00:30:00Z');
const graph = [
{ pointInSeconds: 0 * 60, sessionVolume: 10 },
{ pointInSeconds: 5 * 60, sessionVolume: 30 },
{ pointInSeconds: 10 * 60, sessionVolume: 50 }, // 50 viewers join 10 minutes after the event start
{ pointInSeconds: 20 * 60, sessionVolume: 50 },
{ pointInSeconds: 25 * 60, sessionVolume: 30 },
{ pointInSeconds: 30 * 60, sessionVolume: 10 },
];
const hlsEndpointUrl = 'https://example.com/live/index.m3u8';
// Create a session runner
new SessionRunner(this, 'SessionRunner', {
eventStartTime,
eventEndTime,
intervalInSeconds: 2,
sessionRequirements: {
growthPattern: 'LINEAR',
graph,
},
hlsEndpointUrl,
concurrency: 10, // Requests will be made by 10 different SFN state machines
});
}
}
FAQs
AWS CDK construct for deploying a Lambda function and SFN state machines to fetch an HLS manifest
The npm package awscdk-construct-hls-session-runner receives a total of 4 weekly downloads. As such, awscdk-construct-hls-session-runner popularity was classified as not popular.
We found that awscdk-construct-hls-session-runner demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.
Research
Security News
Malicious Ruby gems typosquat Fastlane plugins to steal Telegram bot tokens, messages, and files, exploiting demand after Vietnam’s Telegram ban.