This repository was archived by the owner on Jul 20, 2023. It is now read-only.
- Notifications
You must be signed in to change notification settings - Fork 2
feat: add code samples and tests for overlay creation #39
Merged
+355 −8
Merged
Changes from all commits
Commits
Show all changes
3 commits Select commit Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,131 @@ | ||
/** | ||
* Copyright 2021, Google, Inc. | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
| ||
'use strict'; | ||
| ||
function main(projectId, location, inputUri, overlayImageUri, outputUri) { | ||
// [START transcoder_create_job_with_animated_overlay] | ||
/** | ||
* TODO(developer): Uncomment these variables before running the sample. | ||
*/ | ||
// projectId = 'my-project-id'; | ||
// location = 'us-central1'; | ||
// inputUri = 'gs://my-bucket/my-video-file'; | ||
// overlayImageUri = 'gs://my-bucket/my-overlay-image-file'; // Must be a JPEG | ||
// outputUri = 'gs://my-bucket/my-output-folder/'; | ||
| ||
// Imports the Transcoder library | ||
const {TranscoderServiceClient} = require('@google-cloud/video-transcoder'); | ||
| ||
// Instantiates a client | ||
const transcoderServiceClient = new TranscoderServiceClient(); | ||
| ||
async function createJobFromAnimatedOverlay() { | ||
// Construct request | ||
const request = { | ||
parent: transcoderServiceClient.locationPath(projectId, location), | ||
job: { | ||
inputUri: inputUri, | ||
outputUri: outputUri, | ||
config: { | ||
elementaryStreams: [ | ||
{ | ||
key: 'video-stream0', | ||
videoStream: { | ||
codec: 'h264', | ||
heightPixels: 360, | ||
widthPixels: 640, | ||
bitrateBps: 550000, | ||
frameRate: 60, | ||
}, | ||
}, | ||
{ | ||
key: 'audio-stream0', | ||
audioStream: { | ||
codec: 'aac', | ||
bitrateBps: 64000, | ||
}, | ||
}, | ||
], | ||
muxStreams: [ | ||
{ | ||
key: 'sd', | ||
container: 'mp4', | ||
elementaryStreams: ['video-stream0', 'audio-stream0'], | ||
}, | ||
], | ||
overlays: [ | ||
{ | ||
image: { | ||
uri: overlayImageUri, | ||
resolution: { | ||
x: 0, | ||
y: 0, | ||
}, | ||
alpha: 1.0, | ||
}, | ||
animations: [ | ||
{ | ||
animationFade: { | ||
fadeType: 'FADE_IN', | ||
xy: { | ||
x: 0.5, | ||
y: 0.5, | ||
}, | ||
startTimeOffset: { | ||
seconds: 5, | ||
}, | ||
endTimeOffset: { | ||
seconds: 10, | ||
}, | ||
}, | ||
}, | ||
{ | ||
animationFade: { | ||
fadeType: 'FADE_OUT', | ||
xy: { | ||
x: 0.5, | ||
y: 0.5, | ||
}, | ||
startTimeOffset: { | ||
seconds: 12, | ||
}, | ||
endTimeOffset: { | ||
seconds: 15, | ||
}, | ||
}, | ||
}, | ||
], | ||
}, | ||
], | ||
}, | ||
}, | ||
}; | ||
| ||
// Run request | ||
const [response] = await transcoderServiceClient.createJob(request); | ||
console.log(`Job: ${response.name}`); | ||
} | ||
| ||
createJobFromAnimatedOverlay(); | ||
// [END transcoder_create_job_with_animated_overlay] | ||
} | ||
| ||
// node createJobFromAnimatedOverlay.js <projectId> <location> <inputUri> <overlayImageUri> <outputUri> | ||
process.on('unhandledRejection', err => { | ||
console.error(err.message); | ||
process.exitCode = 1; | ||
}); | ||
main(...process.argv.slice(2)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
/** | ||
* Copyright 2021, Google, Inc. | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: we usually hyphen case our Node.js samples. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ack. Do I need to change this? I will then have to rename every .js file in the samples. | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
| ||
'use strict'; | ||
| ||
function main(projectId, location, inputUri, overlayImageUri, outputUri) { | ||
// [START transcoder_create_job_with_static_overlay] | ||
/** | ||
* TODO(developer): Uncomment these variables before running the sample. | ||
*/ | ||
// projectId = 'my-project-id'; | ||
// location = 'us-central1'; | ||
// inputUri = 'gs://my-bucket/my-video-file'; | ||
// overlayImageUri = 'gs://my-bucket/my-overlay-image-file'; // Must be a JPEG | ||
// outputUri = 'gs://my-bucket/my-output-folder/'; | ||
| ||
// Imports the Transcoder library | ||
const {TranscoderServiceClient} = require('@google-cloud/video-transcoder'); | ||
| ||
// Instantiates a client | ||
const transcoderServiceClient = new TranscoderServiceClient(); | ||
| ||
async function createJobFromStaticOverlay() { | ||
// Construct request | ||
const request = { | ||
parent: transcoderServiceClient.locationPath(projectId, location), | ||
job: { | ||
inputUri: inputUri, | ||
outputUri: outputUri, | ||
config: { | ||
elementaryStreams: [ | ||
{ | ||
key: 'video-stream0', | ||
videoStream: { | ||
codec: 'h264', | ||
heightPixels: 360, | ||
widthPixels: 640, | ||
bitrateBps: 550000, | ||
frameRate: 60, | ||
}, | ||
}, | ||
{ | ||
key: 'audio-stream0', | ||
audioStream: { | ||
codec: 'aac', | ||
bitrateBps: 64000, | ||
}, | ||
}, | ||
], | ||
muxStreams: [ | ||
{ | ||
key: 'sd', | ||
container: 'mp4', | ||
elementaryStreams: ['video-stream0', 'audio-stream0'], | ||
}, | ||
], | ||
overlays: [ | ||
{ | ||
image: { | ||
uri: overlayImageUri, | ||
resolution: { | ||
x: 1, | ||
y: 0.5, | ||
}, | ||
alpha: 1.0, | ||
}, | ||
animations: [ | ||
{ | ||
animationStatic: { | ||
xy: { | ||
x: 0, | ||
y: 0, | ||
}, | ||
startTimeOffset: { | ||
seconds: 0, | ||
}, | ||
}, | ||
}, | ||
{ | ||
animationEnd: { | ||
startTimeOffset: { | ||
seconds: 10, | ||
}, | ||
}, | ||
}, | ||
], | ||
}, | ||
], | ||
}, | ||
}, | ||
}; | ||
| ||
// Run request | ||
const [response] = await transcoderServiceClient.createJob(request); | ||
console.log(`Job: ${response.name}`); | ||
} | ||
| ||
createJobFromStaticOverlay(); | ||
// [END transcoder_create_job_with_static_overlay] | ||
} | ||
| ||
// node createJobFromStaticOverlay.js <projectId> <location> <inputUri> <overlayImageUri> <outputUri> | ||
process.on('unhandledRejection', err => { | ||
console.error(err.message); | ||
process.exitCode = 1; | ||
}); | ||
main(...process.argv.slice(2)); |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit. This suggestion is invalid because no changes were made to the code. Suggestions cannot be applied while the pull request is closed. Suggestions cannot be applied while viewing a subset of changes. Only one suggestion per line can be applied in a batch. Add this suggestion to a batch that can be applied as a single commit. Applying suggestions on deleted lines is not supported. You must change the existing code in this line in order to create a valid suggestion. Outdated suggestions cannot be applied. This suggestion has been applied or marked resolved. Suggestions cannot be applied from pending reviews. Suggestions cannot be applied on multi-line comments. Suggestions cannot be applied while the pull request is queued to merge. Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.