Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
awscdk-construct-live-channel-from-mp4-file
Advanced tools
CDK Construct for setting up a simple live channel for testing
CDK Construct for setting up a simple live channel for testing
import * as cdk from 'aws-cdk-lib';
import { Construct } from 'constructs';
import { LiveChannelFromMp4 } from 'awscdk-construct-live-channel-from-mp4-file';
export class ExampleStack extends cdk.Stack {
constructor(scope: Construct, id: string, props?: cdk.StackProps) {
super(scope, id, props);
// Create a MediaLive channel with MediaPackage V1/V2 endpoints
const { eml, empv1, empv2 } = new LiveChannelFromMp4(this, 'LiveChannelFromMp4', {
sourceUrl: 'https://example.com/test.mp4',
channelClass: 'STANDARD', // optional: default = 'SINGLE_PIPELINE'
gopLengthInSeconds: 2, // optional: default = 3
segmentDurationSeconds: 4, // optional: default = 6
manifestWindowSeconds: 20, // optional: default = 60
timecodeBurninPrefix: 'Ch1', // optional: default = no timecode overlay
hlsAdMarkers: 'SCTE_ENHANCED', // optional: default = DATERANGE
autoStart: true, // optional: default = false
startoverWindowSeconds: 1209600, // optional: default = V1: 0, V2: 60
separateAudioRendition: true, // optional: default = false
mediaPackageV2ChannelGroupName: 'my-first-channel-group', // optional: default = a new channel group will be created with a random UUID
mediaPackageVersionSpec: 'V1_ONLY', // optional: default = 'V1_AND_V2'
});
// You can access MediaLive channel attributes via `eml.channel`
new cdk.CfnOutput(this, "MediaLiveChannelId", {
value: eml.channel.ref,
exportName: cdk.Aws.STACK_NAME + "MediaLiveChannelId",
description: "MediaLive channel ID",
});
// You can access MediaPackage_v1 endpoints attributes via `empv1.endpoints`
if (empv1) {
new cdk.CfnOutput(this, "MediaPackageV1HlsEndpoint", {
value: empv1.endpoints.hls.attrUrl,
exportName: cdk.Aws.STACK_NAME + "MediaPackageV1HlsEndpoint",
description: "MediaPackage V1 HLS endpoint URL",
});
}
// You can access MediaPackage_v2 endpoint URLs via `empv2.endpointUrls`
if (empv2) {
const {hls, llHls} = empv2.endpointUrls;
new cdk.CfnOutput(this, "MediaPackageV2HlsEndpoint", {
value: hls,
exportName: cdk.Aws.STACK_NAME + "MediaPackageV2HlsEndpoint",
description: "MediaPackage V2 HLS endpoint URL",
});
new cdk.CfnOutput(this, "MediaPackageV2LlHlsEndpoint", {
value: llHls,
exportName: cdk.Aws.STACK_NAME + "MediaPackageV2LlHlsEndpoint",
description: "MediaPackage V2 LL-HLS endpoint URL",
});
}
}
}
FAQs
CDK Construct for setting up a simple live channel for testing
The npm package awscdk-construct-live-channel-from-mp4-file receives a total of 3 weekly downloads. As such, awscdk-construct-live-channel-from-mp4-file popularity was classified as not popular.
We found that awscdk-construct-live-channel-from-mp4-file demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.