-
Notifications
You must be signed in to change notification settings - Fork 2k
feat: add Live Stream API channel clip samples and tests #3903
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
irataxy
wants to merge
4
commits into
main
Choose a base branch
from
clips
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from 2 commits
Commits
Show all changes
4 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
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,91 @@ | ||
/** | ||
* Copyright 2024 Google LLC | ||
* | ||
* 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 | ||
* | ||
* https://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, channelId, clipId, outputUri) { | ||
// [START livestream_create_channel_clip] | ||
/** | ||
* TODO(developer): Uncomment these variables before running the sample. | ||
*/ | ||
// projectId = 'my-project-id'; | ||
// location = 'us-central1'; | ||
// channelId = 'my-channel'; | ||
// clipId = 'my-channel-clip'; | ||
// outputUri = 'gs://my-bucket/my-output-folder'; | ||
|
||
// Imports the Livestream library | ||
const {LivestreamServiceClient} = require('@google-cloud/livestream').v1; | ||
|
||
// Instantiates a client | ||
const livestreamServiceClient = new LivestreamServiceClient(); | ||
|
||
async function createChannelClip() { | ||
// Create a 20 second clip starting 40 seconds ago | ||
const recent = new Date(); | ||
recent.setSeconds(recent.getSeconds() - 20); | ||
const earlier = new Date(); | ||
earlier.setSeconds(earlier.getSeconds() - 40); | ||
|
||
// Construct request | ||
const request = { | ||
parent: livestreamServiceClient.channelPath( | ||
projectId, | ||
location, | ||
channelId | ||
), | ||
clipId: clipId, | ||
clip: { | ||
outputUri: outputUri, | ||
slices: [ | ||
{ | ||
timeSlice: { | ||
markinTime: { | ||
seconds: Math.floor(earlier.getTime() / 1000), | ||
nanos: earlier.getMilliseconds() * 1000000, | ||
}, | ||
markoutTime: { | ||
seconds: Math.floor(recent.getTime() / 1000), | ||
nanos: recent.getMilliseconds() * 1000000, | ||
}, | ||
}, | ||
}, | ||
], | ||
clipManifests: [ | ||
{ | ||
manifestKey: 'manifest_hls', | ||
}, | ||
], | ||
}, | ||
}; | ||
|
||
// Run request | ||
const [operation] = await livestreamServiceClient.createClip(request); | ||
const response = await operation.promise(); | ||
const [clip] = response; | ||
console.log(`Channel clip: ${clip.name}`); | ||
} | ||
|
||
createChannelClip(); | ||
// [END livestream_create_channel_clip] | ||
} | ||
|
||
// node createChannelClip.js <projectId> <location> <channelId> <clipId> <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
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,61 @@ | ||
/** | ||
* Copyright 2024 Google LLC | ||
* | ||
* 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 | ||
* | ||
* https://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, channelId, clipId) { | ||
// [START livestream_delete_channel_clip] | ||
/** | ||
* TODO(developer): Uncomment these variables before running the sample. | ||
*/ | ||
// projectId = 'my-project-id'; | ||
// location = 'us-central1'; | ||
// channelId = 'my-channel'; | ||
// clipId = 'my-channel-clip'; | ||
|
||
// Imports the Livestream library | ||
const {LivestreamServiceClient} = require('@google-cloud/livestream').v1; | ||
|
||
// Instantiates a client | ||
const livestreamServiceClient = new LivestreamServiceClient(); | ||
|
||
async function deleteChannelClip() { | ||
// Construct request | ||
const request = { | ||
name: livestreamServiceClient.clipPath( | ||
projectId, | ||
location, | ||
channelId, | ||
clipId | ||
), | ||
}; | ||
|
||
// Run request | ||
const [operation] = await livestreamServiceClient.deleteClip(request); | ||
await operation.promise(); | ||
console.log('Deleted channel clip'); | ||
} | ||
|
||
deleteChannelClip(); | ||
// [END livestream_delete_channel_clip] | ||
} | ||
|
||
// node deleteChannelClip.js <projectId> <location> <channelId> <clipId> | ||
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,58 @@ | ||
/** | ||
* Copyright 2024 Google LLC | ||
* | ||
* 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 | ||
* | ||
* https://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, channelId, clipId) { | ||
// [START livestream_get_channel_clip] | ||
/** | ||
* TODO(developer): Uncomment these variables before running the sample. | ||
*/ | ||
// projectId = 'my-project-id'; | ||
// location = 'us-central1'; | ||
// channelId = 'my-channel'; | ||
// clipId = 'my-channel-clip'; | ||
|
||
// Imports the Livestream library | ||
const {LivestreamServiceClient} = require('@google-cloud/livestream').v1; | ||
|
||
// Instantiates a client | ||
const livestreamServiceClient = new LivestreamServiceClient(); | ||
|
||
async function getChannelClip() { | ||
// Construct request | ||
const request = { | ||
name: livestreamServiceClient.clipPath( | ||
projectId, | ||
location, | ||
channelId, | ||
clipId | ||
), | ||
}; | ||
const [clip] = await livestreamServiceClient.getClip(request); | ||
console.log(`Channel clip: ${clip.name}`); | ||
} | ||
|
||
getChannelClip(); | ||
// [END livestream_get_channel_clip] | ||
} | ||
|
||
// node getChannelClip.js <projectId> <location> <channelId> <clipId> | ||
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,57 @@ | ||
/** | ||
* Copyright 2024 Google LLC | ||
* | ||
* 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 | ||
* | ||
* https://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, channelId) { | ||
// [START livestream_list_channel_clips] | ||
/** | ||
* TODO(developer): Uncomment these variables before running the sample. | ||
*/ | ||
// projectId = 'my-project-id'; | ||
// location = 'us-central1'; | ||
// channelId = 'my-channel'; | ||
|
||
// Imports the Livestream library | ||
const {LivestreamServiceClient} = require('@google-cloud/livestream').v1; | ||
|
||
// Instantiates a client | ||
const livestreamServiceClient = new LivestreamServiceClient(); | ||
|
||
async function listChannelClips() { | ||
const iterable = await livestreamServiceClient.listClipsAsync({ | ||
parent: livestreamServiceClient.channelPath( | ||
projectId, | ||
location, | ||
channelId | ||
), | ||
}); | ||
console.info('Channel clips:'); | ||
for await (const response of iterable) { | ||
console.log(response.name); | ||
} | ||
} | ||
|
||
listChannelClips(); | ||
// [END livestream_list_channel_clips] | ||
} | ||
|
||
// node listChannelClips.js <projectId> <location> <channelId> | ||
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
Oops, something went wrong.
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.