Graphic 3D
2D, 3D, game, games, online game, game development, game engine, programming, OpenGL, Open AI, math, graphics, design, graphic, graphics, game development, game engine, programming, web development, web art, web graphic, arts, tutorial, tutorials,
marți, 15 septembrie 2026
News : Dev snapshot: Godot 4.8 dev 6.
Indeed, this is much sooner than usual. Even when taking into consideration how development snapshots become more frequent at their tail-end in preparation of feature freeze, less than a week means that exceptional circumstances were at play. Specifically: our previous development snapshot had multiple startup crash reports on macOS and failed to upload to the Google Play Store, which have both been rectified by GH-123439 and GH-123474 respectively.
See the official blog.
Google Apps Script : show tags videos from youtube playlist.
Today marks the first part of managing tags for uploaded YouTube videos. Assigning the right tags to every video is challenging and time-consuming; plus, if you rush, you might lose track of what you’ve uploaded. This Google Apps Script displays the tags for the videos in a playlist. While it is possible to use a script to automatically check and modify them, that process is more complex. Here is the initial, simple script for my main playlist on the @catafest YouTube channel.
function showAllVideoTagsFromPlaylist() {
const playlistId = "PLIDHlEkMih2OssDFquu0iWSNOTsFeuk8v";
let pageToken = null;
do {
const playlistResponse =
YouTube.PlaylistItems.list(
"snippet",
{
playlistId: playlistId,
maxResults: 50,
pageToken: pageToken
}
);
playlistResponse.items.forEach(item => {
const videoId =
item.snippet.resourceId.videoId;
const videoResponse =
YouTube.Videos.list(
"snippet",
{
id: videoId
}
);
if (!videoResponse.items.length) {
return;
}
const video =
videoResponse.items[0];
const tags =
video.snippet.tags || [];
Logger.log("====================================");
Logger.log("TITLE: " + video.snippet.title);
Logger.log("VIDEO ID: " + videoId);
Logger.log("TAGS: " + tags.join(", "));
});
pageToken = playlistResponse.nextPageToken;
} while (pageToken);
}
Posted by
Cătălin George Feștilă
Labels:
2026,
demo,
development,
google,
Google Apps Script,
open source,
programming,
source code,
tutorial,
tutorials,
youtube
duminică, 13 septembrie 2026
Abonați-vă la:
Postări (Atom)