------------------------------------------------------------
commit 67838031f25adc03e931dd0a9c4191e30cdd587e
Author: Breck Yunits <breck7@gmail.com>
Date: Fri Nov 22 19:34:48 2024 -0800
diff --git a/style.css b/style.css
index fe0f41e..00a2217 100644
--- a/style.css
+++ b/style.css
@@ -192,7 +192,7 @@ body {
}
}
-.volume-indicator, .channel-name {
+.indicator, .channel-name {
font-size: 2rem;
color: #00ff22;
text-transform: uppercase;
diff --git a/togger.js b/togger.js
index f6ebb67..c641a8c 100644
--- a/togger.js
+++ b/togger.js
@@ -19,7 +19,8 @@ const collections = {
class Togger {
constructor() {
- this.loadStreams(new URLSearchParams(window.location.search).get("p"))
+ const params = new URLSearchParams(window.location.search)
+ this.loadStreams(params.get("collection") || params.get("p"))
this.currentIndex = this.getInitialIndex()
this.isPoweredOn = true
this.isMuted = true
@@ -48,6 +49,7 @@ class Togger {
collectionNames[(collectionIndex + 1) % collectionNames.length]
this.loadStreams(collectionName)
this.nextChannel()
+ this.showIndicator(collectionName)
}
previousCollection() {
@@ -58,6 +60,7 @@ class Togger {
]
this.loadStreams(collectionName)
this.previousChannel()
+ this.showIndicator(collectionName)
}
loadStreams(collectionName) {
@@ -84,7 +87,7 @@ class Togger {
getInitialIndex() {
const params = new URLSearchParams(window.location.search)
- const deepLink = params.get("c")
+ const deepLink = params.get("channel") || params.get("c")
if (!deepLink) return 0
const hit = this.streams.findIndex((stream) => stream.deepLink === deepLink)
@@ -150,20 +153,21 @@ class Togger {
}
showVolumeIndicator() {
- const volume = this.volume
- const isMuted = this.isMuted
-
- const volumeIndicator = document.querySelector(".volume-indicator")
+ const { volume, isMuted } = this
+ this.showIndicator(isMuted ? "MUTED" : `Volume: ${volume}%`)
+ }
- volumeIndicator.textContent = isMuted ? "MUTED" : `Volume: ${volume}%`
- volumeIndicator.style.display = "block"
+ showIndicator(message) {
+ const indicator = document.querySelector(".indicator")
+ indicator.textContent = message
+ indicator.style.display = "block"
- if (this.volumeTimeout) clearTimeout(this.volumeTimeout)
+ if (this.indicatorTimeout) clearTimeout(this.indicatorTimeout)
- // Hide the indicator after 2 seconds
- this.volumeTimeout = setTimeout(() => {
- volumeIndicator.style.display = "none"
- }, 2000)
+ // Hide the indicator after 3 seconds
+ this.indicatorTimeout = setTimeout(() => {
+ indicator.style.display = "none"
+ }, 3000)
}
increaseVolume() {
@@ -214,8 +218,11 @@ class Togger {
// Get current URL parameters
const params = new URLSearchParams(window.location.search)
// Update the channel parameter
- params.set("c", current.deepLink)
- params.set("p", this.collectionName)
+ params.delete("c")
+ params.delete("p")
+ params.set("channel", current.deepLink)
+ params.set("collection", this.collectionName)
+
// Replace state with all parameters
window.history.replaceState({}, "", `?${params.toString()}`)
}
@@ -309,7 +316,7 @@ class Togger {
addVolumeIndicator() {
// Create volume indicator element
const volumeIndicator = document.createElement("div")
- volumeIndicator.className = "volume-indicator"
+ volumeIndicator.className = "indicator"
volumeIndicator.style.cssText = `
position: fixed;
top: 20px;
@@ -450,8 +457,8 @@ class Togger {
// Add volume buttons
const volumeRow = createButtonRow([
- createButton("VOL-", "ArrowDown"),
- createButton("VOL+", "ArrowUp"),
+ createButton("COL-", "ArrowDown"),
+ createButton("COL+", "ArrowUp"),
])
remote.appendChild(volumeRow)
------------------------------------------------------------
commit 712571e20c719ef52337779164af44064efc3d07
Author: Breck Yunits <breck7@gmail.com>
Date: Fri Nov 22 19:26:44 2024 -0800
diff --git a/togger.js b/togger.js
index e09c01c..f6ebb67 100644
--- a/togger.js
+++ b/togger.js
@@ -35,7 +35,7 @@ class Togger {
}
get collectionIndex() {
- return Object.keys(collections).indexOf(this.collectionName)
+ return this.collectionNames.indexOf(this.collectionName)
}
get collectionNames() {
@@ -43,17 +43,19 @@ class Togger {
}
nextCollection() {
- const { collectionNames } = this
+ const { collectionNames, collectionIndex } = this
const collectionName =
- collectionNames[(this.collectionIndex + 1) % collectionNames.length]
+ collectionNames[(collectionIndex + 1) % collectionNames.length]
this.loadStreams(collectionName)
this.nextChannel()
}
previousCollection() {
- const { collectionNames } = this
+ const { collectionNames, collectionIndex } = this
const collectionName =
- collectionNames[(this.collectionIndex - 1) % collectionNames.length]
+ collectionNames[
+ (collectionIndex - 1 + collectionNames.length) % collectionNames.length
+ ]
this.loadStreams(collectionName)
this.previousChannel()
}
------------------------------------------------------------
commit 06ea1fd11b4651b289c893aadbae13c92ea74466
Author: Breck Yunits <breck7@gmail.com>
Date: Fri Nov 22 19:21:56 2024 -0800
diff --git a/togger.js b/togger.js
index 7ae6ddc..e09c01c 100644
--- a/togger.js
+++ b/togger.js
@@ -50,6 +50,14 @@ class Togger {
this.nextChannel()
}
+ previousCollection() {
+ const { collectionNames } = this
+ const collectionName =
+ collectionNames[(this.collectionIndex - 1) % collectionNames.length]
+ this.loadStreams(collectionName)
+ this.previousChannel()
+ }
+
loadStreams(collectionName) {
const streams = this.getCollection(collectionName)
this.streams = streams.map((item) => {
@@ -106,17 +114,14 @@ class Togger {
this.nextChannel()
break
case "arrowup":
- this.increaseVolume()
+ this.nextCollection()
break
case "arrowdown":
- this.decreaseVolume()
+ this.previousCollection()
break
case "m":
this.toggleMute()
break
- case "c":
- this.nextCollection()
- break
case "p":
this.togglePower()
break
------------------------------------------------------------
commit 5001d55392622e7f30626e821471f8e8fc2f0370
Author: Breck Yunits <breck7@gmail.com>
Date: Fri Nov 22 18:28:31 2024 -0800
diff --git a/collections/warpcastCollection.json b/collections/warpcastCollection.json
index 7359419..301dd01 100644
--- a/collections/warpcastCollection.json
+++ b/collections/warpcastCollection.json
@@ -35,36 +35,36 @@
},
{
"kind": "youtube#searchResult",
- "etag": "RxGOMDLLgVwC__QsVBxnjzDalCs",
+ "etag": "roe90KXZwMTE2ifZkRgj9AS3OBc",
"id": {
"kind": "youtube#video",
- "videoId": "i2HNF5KmkvE"
+ "videoId": "-o_cmWez244"
},
"snippet": {
- "publishedAt": "2024-11-22T23:35:07Z",
+ "publishedAt": "2024-11-23T02:23:49Z",
"channelId": "UChEEElYETR8gpc_RL0GGJng",
- "title": "GM Farcaster ep185 Friday November 22, 2024 with @stoic and @voteforpedro",
- "description": "GM Farcaster ep185 Friday November 22, 2024 with @stoic and @voteforpedro Thanks to @stoic and @voteforpedro from the ...",
+ "title": "GM Farcaster ep185 Friday November 22, 2024 with guest @stoic",
+ "description": "",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/i2HNF5KmkvE/default.jpg",
+ "url": "https://i.ytimg.com/vi/-o_cmWez244/default.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/i2HNF5KmkvE/mqdefault.jpg",
+ "url": "https://i.ytimg.com/vi/-o_cmWez244/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/i2HNF5KmkvE/hqdefault.jpg",
+ "url": "https://i.ytimg.com/vi/-o_cmWez244/hqdefault.jpg",
"width": 480,
"height": 360
}
},
"channelTitle": "GM Farcaster",
"liveBroadcastContent": "none",
- "publishTime": "2024-11-22T23:35:07Z"
+ "publishTime": "2024-11-23T02:23:49Z"
}
},
{
@@ -236,5 +236,39 @@
"liveBroadcastContent": "none",
"publishTime": "2024-10-07T16:33:32Z"
}
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "c4o1VtqQ0up0cY3tJTOYLzMha7s",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "MA35mi7OiSg"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-23T02:13:41Z",
+ "channelId": "UCfRAJMeyZKLiwue1J4J6DAQ",
+ "title": "Solving for Network Cold Start Problem - Dan Romero",
+ "description": "In this episode we have Dan Romero, founder/CEO of Farcaster - a decentralized social network. We discuss what is Farcaster, ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/MA35mi7OiSg/default.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/MA35mi7OiSg/mqdefault.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/MA35mi7OiSg/hqdefault.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Wolf of Baystreet",
+ "liveBroadcastContent": "none",
+ "publishTime": "2024-11-23T02:13:41Z"
+ }
}
]
\ No newline at end of file
diff --git a/fetch.mjs b/fetch.mjs
index e4e8a0e..4ca5ec5 100644
--- a/fetch.mjs
+++ b/fetch.mjs
@@ -19,7 +19,7 @@ const channelUrls = [
"https://www.youtube.com/@wolfofbaystreet",
// Add more channel URLs here
]
-// yt.channelsToCollection(channelUrls, "warpcast")
+yt.channelsToCollection(channelUrls, "warpcast")
const codingChannels = `https://www.youtube.com/@theprimeagen
https://www.youtube.com/@CodeWithChris
@@ -35,4 +35,4 @@ https://www.youtube.com/@JomaTech
https://www.youtube.com/@CleverProgrammer
https://www.youtube.com/@NickWhite
https://www.youtube.com/@CodingPhase`.split(" ")
-yt.channelsToCollection(codingChannels, "coding")
+// yt.channelsToCollection(codingChannels, "coding")
------------------------------------------------------------
commit 5529eeb5f478f70dc7256a2676e70b2cb9851c9e
Author: Breck Yunits <breck7@gmail.com>
Date: Fri Nov 22 18:27:24 2024 -0800
diff --git a/fetch.mjs b/fetch.mjs
index 106b373..e4e8a0e 100644
--- a/fetch.mjs
+++ b/fetch.mjs
@@ -16,6 +16,7 @@ const channelUrls = [
"https://www.youtube.com/channel/UCZ8MI1slzXKUv9fb0I9Ho2A",
"https://www.youtube.com/@LosFomos",
"https://www.youtube.com/@chrisgo",
+ "https://www.youtube.com/@wolfofbaystreet",
// Add more channel URLs here
]
// yt.channelsToCollection(channelUrls, "warpcast")
------------------------------------------------------------
commit a069e987fd174c4fc3365928af826a1c4c590717
Author: Breck Yunits <breck7@gmail.com>
Date: Fri Nov 22 17:59:38 2024 -0800
diff --git a/collections/codingCollection.json b/collections/codingCollection.json
index d079003..5dd8873 100644
--- a/collections/codingCollection.json
+++ b/collections/codingCollection.json
@@ -1,1022 +1,444 @@
[
{
"kind": "youtube#searchResult",
- "etag": "A47qNZ-8pM7aGaIHqkrgZJsPtyQ",
+ "etag": "cUI6IBtKQvM7dIXK_x_HKegmeHc",
"id": {
"kind": "youtube#video",
- "videoId": "MXH_s0mOiSg"
+ "videoId": "A_XGsAl-LqY"
},
"snippet": {
- "publishedAt": "2023-12-22T12:49:41Z",
- "channelId": "UCfYshLRgkyTUZqc3pLUG45A",
- "title": "PSN / XBOX / STEAM CARD GIVEAWAY - FREE PSN CODES GIVEAWAY LIVE",
- "description": "PSN / XBOX / STEAM CARD GIVEAWAY - FREE PSN CODES GIVEAWAY LIVE --RULES-- 1. Subscribe to my channel 2. Like this ...",
+ "publishedAt": "2024-10-23T12:00:12Z",
+ "channelId": "UC8ENHE5xdFSwx71u3fDH5Xw",
+ "title": "the worst man in tech",
+ "description": "Twitch : https://twitch.tv/ThePrimeagen Discord: https://discord.gg/ThePrimeagen Support me (by becoming a backend dev): ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/MXH_s0mOiSg/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/A_XGsAl-LqY/default.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/MXH_s0mOiSg/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/A_XGsAl-LqY/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/MXH_s0mOiSg/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/A_XGsAl-LqY/hqdefault.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "OyunDünyasıTR",
- "liveBroadcastContent": "live",
- "publishTime": "2023-12-22T12:49:41Z"
+ "channelTitle": "ThePrimeagen",
+ "liveBroadcastContent": "none",
+ "publishTime": "2024-10-23T12:00:12Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "-sIJ6KnezTyA5V5OUhpUB1LxVEA",
+ "etag": "362LOKGeZiQuCgPuwIg8VY6SbHc",
"id": {
"kind": "youtube#video",
- "videoId": "gRFHIzCiZmU"
+ "videoId": "YmXMCTsn3xQ"
},
"snippet": {
- "publishedAt": "2024-11-22T20:12:49Z",
- "channelId": "UCysVK648GqOjs54HWyXyBuA",
- "title": "🔴 Live POCKET OPTION TRADING | Pocket Option App | Pocket Option | Binary Options #livetrading",
- "description": "Hi! This is my binary options video. I will show you how I trade on the binary options strategy on the pocket option. Binary options ...",
+ "publishedAt": "2024-11-21T14:15:04Z",
+ "channelId": "UC2D6eRvCeMtcF5OGHf1-trw",
+ "title": "Build a War Card Game App (Xcode 16 Updated)",
+ "description": "Let's build the UI for the War Card Game. This is the app we'll be working on for the rest of the video series. Through building this ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/gRFHIzCiZmU/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/YmXMCTsn3xQ/default.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/gRFHIzCiZmU/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/YmXMCTsn3xQ/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/gRFHIzCiZmU/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/YmXMCTsn3xQ/hqdefault.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Lady Trader",
- "liveBroadcastContent": "live",
- "publishTime": "2024-11-22T20:12:49Z"
+ "channelTitle": "CodeWithChris",
+ "liveBroadcastContent": "none",
+ "publishTime": "2024-11-21T14:15:04Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "rvKBnACHYcj8_0Iu0jr2k-eBxIc",
+ "etag": "KF69MJ26lJ7hZTx7w8ZBdJPMZaE",
"id": {
"kind": "youtube#video",
- "videoId": "whRX3CJ5ZCk"
+ "videoId": "uMVWD46apEc"
},
"snippet": {
- "publishedAt": "2024-08-26T06:36:48Z",
- "channelId": "UC9gGtOmBQQd1NOXVcnadVZQ",
- "title": "FREE FIRE LIVE 10,000 DIAMOND GIVEAWAY | TEAM CODE GIVEAWAY #freefirelive #lokeshgamer #gyangaming",
- "description": "1.Garena Free Fire Indonesia Live 2.Garena Free Fire Brazil Live 3.Garena Free Fire Brasil Live 4.Garena Free Fire India Live 5.",
+ "publishedAt": "2024-11-08T14:44:04Z",
+ "channelId": "UCLNgu_OupwoeESgtab33CCw",
+ "title": "Early Career Shapes Your Opinions and Way of Doing Things #vuejs #react #webdevelopment",
+ "description": "From my chat with @TheAlexLichter on @DejaVueFm - I have AngularJS to thank for my love of Vue and my constant searching ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/whRX3CJ5ZCk/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/uMVWD46apEc/default.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/whRX3CJ5ZCk/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/uMVWD46apEc/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/whRX3CJ5ZCk/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/uMVWD46apEc/hqdefault.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Pikachu FF",
- "liveBroadcastContent": "live",
- "publishTime": "2024-08-26T06:36:48Z"
+ "channelTitle": "Coding Garden",
+ "liveBroadcastContent": "none",
+ "publishTime": "2024-11-08T14:44:04Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "Sep9WvfhRa32-T3w1Zv7iL8OuMM",
+ "etag": "Z6vX7J3MGlCkgzF5pxS9eQmUgTQ",
"id": {
"kind": "youtube#video",
- "videoId": "3Yu1yymncOs"
+ "videoId": "V3554BmwV1E"
},
"snippet": {
- "publishedAt": "2024-10-10T10:14:28Z",
- "channelId": "UC2oaqitUiwcbYPnh9zLR50g",
- "title": "🔴LIVE : DARSHAN - VADTALDHAM 01",
- "description": "Website:- https://www.vadtalmandir.org Youtube :- https://www.youtube.com/vadtalmandir Facebook ...",
+ "publishedAt": "2024-11-20T20:17:34Z",
+ "channelId": "UCsBjURrPoezykLs9EqgamOA",
+ "title": "The plan to break apart Google... RIP Chrome",
+ "description": "Get 40% Fireship PRO with code BLACKFIRE at https://fireship.io/pro The US Dept of Justice wants to break apart Google's ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/3Yu1yymncOs/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/V3554BmwV1E/default.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/3Yu1yymncOs/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/V3554BmwV1E/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/3Yu1yymncOs/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/V3554BmwV1E/hqdefault.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "VADTAL MANDIR",
- "liveBroadcastContent": "live",
- "publishTime": "2024-10-10T10:14:28Z"
+ "channelTitle": "Fireship",
+ "liveBroadcastContent": "none",
+ "publishTime": "2024-11-20T20:17:34Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "qVMN9ZEcRvuKk-cKqlYo5dmnw_s",
+ "etag": "W4TF_k3N62BtXHU3ubBoOAEb1Gs",
"id": {
"kind": "youtube#video",
- "videoId": "xbe2UMVofAU"
+ "videoId": "ui0PmJtKGhQ"
},
"snippet": {
- "publishedAt": "2024-11-05T05:51:08Z",
- "channelId": "UCRWWzoOrQLPGJLKs1gAf2yA",
- "title": "FREE FIRE LIVE CUSTOM ROOM GIVEAWAY FF LIVE TEAM CODE GIVEAWAY|#freefirelive #giveaway #nawabislive",
- "description": "YOUR SEARCH TERMS 1.ff live redeem code 2.ff giveaway diomond 3.ff giveaway live custom winner 4.ff live giveaway custom ...",
+ "publishedAt": "2024-10-29T14:41:08Z",
+ "channelId": "UC29ju8bIPH5as8OGnQzwJyA",
+ "title": "Build A Tesla Car Configurator | Tailwind & Vanilla JavaScript",
+ "description": "Build a Tesla Model Y Configurator interface using nothing but HTML, Tailwind CSS and JavaScript.",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/xbe2UMVofAU/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/ui0PmJtKGhQ/default.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/xbe2UMVofAU/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/ui0PmJtKGhQ/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/xbe2UMVofAU/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/ui0PmJtKGhQ/hqdefault.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "NAWABISLIVE",
- "liveBroadcastContent": "live",
- "publishTime": "2024-11-05T05:51:08Z"
+ "channelTitle": "Traversy Media",
+ "liveBroadcastContent": "none",
+ "publishTime": "2024-10-29T14:41:08Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "bS3c65Shvx12jWF7mQUoTYePIa4",
+ "etag": "O4pvC0MtkuUMruLkN9Uf9_q4o_s",
"id": {
"kind": "youtube#video",
- "videoId": "TeZxmCWS9Io"
+ "videoId": "qNs0Dxs5JVI"
},
"snippet": {
- "publishedAt": "2024-09-11T15:58:58Z",
- "channelId": "UCQLEbraENUGWh6p1Rv664rQ",
- "title": "PTC News LIVE | ਵੇਖੋ ਪੰਜਾਬ ਨਾਲ ਜੁੜੀ ਹਰ ਵੱਡੀ ਖ਼ਬਰ, PTC News 'ਤੇ",
- "description": "ਵੇਖੋ ਪੰਜਾਬ ਨਾਲ ਜੁੜੀ ਹਰ ਵੱਡੀ ਖ਼ਬਰ,ਪੀਟੀਸੀ ਨਿਊਜ਼ 'ਤੇ #punjabnews #latestnews ...",
+ "publishedAt": "2024-10-29T16:00:52Z",
+ "channelId": "UCSJbGtTlrDami-tDGPUV9-w",
+ "title": "Don't avoid AI as a developer - embrace it!",
+ "description": "I got a new course! A course where I share my personal tips & tricks for using AI tools like GitHub Copilot and Cursor AI (IDE) ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/TeZxmCWS9Io/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/qNs0Dxs5JVI/default.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/TeZxmCWS9Io/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/qNs0Dxs5JVI/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/TeZxmCWS9Io/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/qNs0Dxs5JVI/hqdefault.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "PTC NEWS",
- "liveBroadcastContent": "live",
- "publishTime": "2024-09-11T15:58:58Z"
+ "channelTitle": "Academind",
+ "liveBroadcastContent": "none",
+ "publishTime": "2024-10-29T16:00:52Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "l13UCu-zsFHAyTFvLPcl8I89j4I",
+ "etag": "a-XSD0TH_fxorbIz0QOIYzVo9ek",
"id": {
"kind": "youtube#video",
- "videoId": "a0EwGJwicXc"
+ "videoId": "zogxGGDJ2Ok"
},
"snippet": {
- "publishedAt": "2024-08-12T15:46:32Z",
- "channelId": "UCwKS2U-DwjPZZvM6mSXPKgA",
- "title": "بث مباشر | قناة المغاربية Almagharibia TV Live Stream",
- "description": "LIVE تابع البث المباشر لقناة المغاربية بث مباشر | قناة المغاربية Almagharibia TV Live Stream --------------- تعمل ...",
+ "publishedAt": "2024-10-29T21:59:24Z",
+ "channelId": "UC9Yp2yz6-pwhQuPlIDV_mjA",
+ "title": "Create a Legend of Zelda Style Game with JavaScript",
+ "description": "The first 500 people to use my link https://skl.sh/chriscourses10241 will get a 1 month free trial of Skillshare premium! GitHub ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/a0EwGJwicXc/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/zogxGGDJ2Ok/default.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/a0EwGJwicXc/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/zogxGGDJ2Ok/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/a0EwGJwicXc/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/zogxGGDJ2Ok/hqdefault.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Almagharibia TV قناة المغاربية",
- "liveBroadcastContent": "live",
- "publishTime": "2024-08-12T15:46:32Z"
+ "channelTitle": "Chris Courses",
+ "liveBroadcastContent": "none",
+ "publishTime": "2024-10-29T21:59:24Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "iE0Xw9BnSk5ajJq4WTD8gxhIwgc",
+ "etag": "aKOHzx_dChInabyLHMpjInEDX90",
"id": {
"kind": "youtube#video",
- "videoId": "8N8rMHjVwNc"
+ "videoId": "FMAsMNIdTdc"
},
"snippet": {
- "publishedAt": "2024-08-20T17:19:28Z",
- "channelId": "UCSVSJ1OCSv5ClFgKFTHIDew",
- "title": "🔴 PAW Patrol BIG Truck Pups, Cat Pack, and more rescue episodes! - Cartoons for Kids Live Stream!",
- "description": "In this PAW Patrol rescue episode live stream, enjoy your favorite rescue episodes with Al and the Big Truck Pups, Wild Cat and ...",
- "thumbnails": {
- "default": {
- "url": "https://i.ytimg.com/vi/8N8rMHjVwNc/default_live.jpg",
- "width": 120,
- "height": 90
- },
- "medium": {
- "url": "https://i.ytimg.com/vi/8N8rMHjVwNc/mqdefault_live.jpg",
- "width": 320,
- "height": 180
- },
- "high": {
- "url": "https://i.ytimg.com/vi/8N8rMHjVwNc/hqdefault_live.jpg",
- "width": 480,
- "height": 360
- }
- },
- "channelTitle": "PAW Patrol Official & Friends",
- "liveBroadcastContent": "live",
- "publishTime": "2024-08-20T17:19:28Z"
- }
- },
- {
- "kind": "youtube#searchResult",
- "etag": "0ufO0GZ5XhGZS90hn_qaS2Rfzyw",
- "id": {
- "kind": "youtube#video",
- "videoId": "SlpTSiNv-m4"
- },
- "snippet": {
- "publishedAt": "2024-01-23T14:10:44Z",
- "channelId": "UC_vFLohxs5PkAxlk7Y6jEtw",
- "title": "LIVE: ABC7 Chicago Eyewitness News",
- "description": "Watch ABC7 Chicago for live news and updates on what's happening in your community. Click the subscribe button to be notified ...",
- "thumbnails": {
- "default": {
- "url": "https://i.ytimg.com/vi/SlpTSiNv-m4/default_live.jpg",
- "width": 120,
- "height": 90
- },
- "medium": {
- "url": "https://i.ytimg.com/vi/SlpTSiNv-m4/mqdefault_live.jpg",
- "width": 320,
- "height": 180
- },
- "high": {
- "url": "https://i.ytimg.com/vi/SlpTSiNv-m4/hqdefault_live.jpg",
- "width": 480,
- "height": 360
- }
- },
- "channelTitle": "ABC 7 Chicago",
- "liveBroadcastContent": "live",
- "publishTime": "2024-01-23T14:10:44Z"
- }
- },
- {
- "kind": "youtube#searchResult",
- "etag": "dXUBybrdObdgt7uMIsFC94eB38o",
- "id": {
- "kind": "youtube#video",
- "videoId": "yMxD3gdeXmk"
- },
- "snippet": {
- "publishedAt": "2023-04-06T16:29:25Z",
- "channelId": "UCKAtPxfE2RAHSCwDABMMeAg",
- "title": "Jasna Góra Klasztor Ojców Paulinów – transmisja na żywo, ON-LINE, msza święta na żywo",
- "description": "Wspomóż transmisje z Jasnej Góry wpłacając dobrowolną kwotę przez TPay lub PayPal: https://tpay.jasnagora.pl/ ...",
- "thumbnails": {
- "default": {
- "url": "https://i.ytimg.com/vi/yMxD3gdeXmk/default_live.jpg",
- "width": 120,
- "height": 90
- },
- "medium": {
- "url": "https://i.ytimg.com/vi/yMxD3gdeXmk/mqdefault_live.jpg",
- "width": 320,
- "height": 180
- },
- "high": {
- "url": "https://i.ytimg.com/vi/yMxD3gdeXmk/hqdefault_live.jpg",
- "width": 480,
- "height": 360
- }
- },
- "channelTitle": "Jasna Góra Klasztor Ojców Paulinów",
- "liveBroadcastContent": "live",
- "publishTime": "2023-04-06T16:29:25Z"
- }
- },
- {
- "kind": "youtube#searchResult",
- "etag": "rn9joLSJ6-6C9wft2QrLhYnDiq8",
- "id": {
- "kind": "youtube#video",
- "videoId": "ydiWklMUhcQ"
- },
- "snippet": {
- "publishedAt": "2024-05-23T01:24:48Z",
- "channelId": "UC3uJIdRFTGgLWrUziaHbzrg",
- "title": "NDTV Profit LIVE TV | Business News LIVE | Share Market LIVE Updates | Stock Market Trading LIVE",
- "description": "Stock Market LIVE News: Watch the live stream of NDTV Profit on your favourite digital channels. #ndtv #business #stockmarket ...",
- "thumbnails": {
- "default": {
- "url": "https://i.ytimg.com/vi/ydiWklMUhcQ/default_live.jpg",
- "width": 120,
- "height": 90
- },
- "medium": {
- "url": "https://i.ytimg.com/vi/ydiWklMUhcQ/mqdefault_live.jpg",
- "width": 320,
- "height": 180
- },
- "high": {
- "url": "https://i.ytimg.com/vi/ydiWklMUhcQ/hqdefault_live.jpg",
- "width": 480,
- "height": 360
- }
- },
- "channelTitle": "NDTV Profit",
- "liveBroadcastContent": "live",
- "publishTime": "2024-05-23T01:24:48Z"
- }
- },
- {
- "kind": "youtube#searchResult",
- "etag": "dSRsMoSUIY593RzFpUYRLyAj13Q",
- "id": {
- "kind": "youtube#video",
- "videoId": "dUs4JqnWixw"
- },
- "snippet": {
- "publishedAt": "2024-10-21T13:09:37Z",
- "channelId": "UCU31-9qcY1RDuMad67dbuhw",
- "title": "HENFLIX - LIVE Chickens - Feed the chickens online!",
- "description": "Please LIKE & SHARE our highlights videos and SUBSCRIBE to our channel, so you won't miss anything. You can find all of our ...",
- "thumbnails": {
- "default": {
- "url": "https://i.ytimg.com/vi/dUs4JqnWixw/default_live.jpg",
- "width": 120,
- "height": 90
- },
- "medium": {
- "url": "https://i.ytimg.com/vi/dUs4JqnWixw/mqdefault_live.jpg",
- "width": 320,
- "height": 180
- },
- "high": {
- "url": "https://i.ytimg.com/vi/dUs4JqnWixw/hqdefault_live.jpg",
- "width": 480,
- "height": 360
- }
- },
- "channelTitle": "Madarles - Live Bird Cams",
- "liveBroadcastContent": "live",
- "publishTime": "2024-10-21T13:09:37Z"
- }
- },
- {
- "kind": "youtube#searchResult",
- "etag": "z3V-2q-MBbHYqrt49hWAADf1Sno",
- "id": {
- "kind": "youtube#video",
- "videoId": "XcftFX_Cwy4"
- },
- "snippet": {
- "publishedAt": "2021-01-19T12:35:11Z",
- "channelId": "UCagckRRHeGkG7iwPl91hUpg",
- "title": "Bud og Hustadvika Live",
- "description": "",
- "thumbnails": {
- "default": {
- "url": "https://i.ytimg.com/vi/XcftFX_Cwy4/default_live.jpg",
- "width": 120,
- "height": 90
- },
- "medium": {
- "url": "https://i.ytimg.com/vi/XcftFX_Cwy4/mqdefault_live.jpg",
- "width": 320,
- "height": 180
- },
- "high": {
- "url": "https://i.ytimg.com/vi/XcftFX_Cwy4/hqdefault_live.jpg",
- "width": 480,
- "height": 360
- }
- },
- "channelTitle": "Live Norway",
- "liveBroadcastContent": "live",
- "publishTime": "2021-01-19T12:35:11Z"
- }
- },
- {
- "kind": "youtube#searchResult",
- "etag": "a4OUUDAsUP2NRrDn3SMAdT0dL6c",
- "id": {
- "kind": "youtube#video",
- "videoId": "bn1yqLI9U3Q"
- },
- "snippet": {
- "publishedAt": "2024-06-26T13:17:39Z",
- "channelId": "UCP_T_GqYquLmsIpmDpJvULw",
- "title": "Shop LC LIVE",
- "description": "Thanks for watching Shop LC Live, where our purpose is Delivering Joy 24/7/365! Shop LC is your home for amazing jewelry, ...",
- "thumbnails": {
- "default": {
- "url": "https://i.ytimg.com/vi/bn1yqLI9U3Q/default_live.jpg",
- "width": 120,
- "height": 90
- },
- "medium": {
- "url": "https://i.ytimg.com/vi/bn1yqLI9U3Q/mqdefault_live.jpg",
- "width": 320,
- "height": 180
- },
- "high": {
- "url": "https://i.ytimg.com/vi/bn1yqLI9U3Q/hqdefault_live.jpg",
- "width": 480,
- "height": 360
- }
- },
- "channelTitle": "Shop LC",
- "liveBroadcastContent": "live",
- "publishTime": "2024-06-26T13:17:39Z"
- }
- },
- {
- "kind": "youtube#searchResult",
- "etag": "N8kVIpEV3OV8yn3hpZm7SV_QHa4",
- "id": {
- "kind": "youtube#video",
- "videoId": "iUqUGVpRDIc"
- },
- "snippet": {
- "publishedAt": "2024-07-15T06:15:50Z",
- "channelId": "UCSCMDOZrz_4-1dtnXsp8M7Q",
- "title": "THIKANA MANDIR SHREE GOVIND DEVJI Live Darshan",
- "description": "राधे राधे , निम्न सेवा लिखवाने के लिए मंदिर Whatsapp - 9462647452 पर आरक्षित ...",
- "thumbnails": {
- "default": {
- "url": "https://i.ytimg.com/vi/iUqUGVpRDIc/default_live.jpg",
- "width": 120,
- "height": 90
- },
- "medium": {
- "url": "https://i.ytimg.com/vi/iUqUGVpRDIc/mqdefault_live.jpg",
- "width": 320,
- "height": 180
- },
- "high": {
- "url": "https://i.ytimg.com/vi/iUqUGVpRDIc/hqdefault_live.jpg",
- "width": 480,
- "height": 360
- }
- },
- "channelTitle": "Thikana Mandir Shri Govind Devji",
- "liveBroadcastContent": "live",
- "publishTime": "2024-07-15T06:15:50Z"
- }
- },
- {
- "kind": "youtube#searchResult",
- "etag": "2WhUUNIJg1lWmvsOWsWwUsgHptY",
- "id": {
- "kind": "youtube#video",
- "videoId": "BksBvkNuZxU"
- },
- "snippet": {
- "publishedAt": "2024-09-06T22:56:04Z",
- "channelId": "UC_Kteu5qFnOQhmfcIa9VpAw",
- "title": "Live Global Seismic Activity Map Views using SeisComP and GlobalQuake.",
- "description": "These maps are from our local installations of SeisComP and GlobalQuake. These software packages are ingesting data from ...",
- "thumbnails": {
- "default": {
- "url": "https://i.ytimg.com/vi/BksBvkNuZxU/default_live.jpg",
- "width": 120,
- "height": 90
- },
- "medium": {
- "url": "https://i.ytimg.com/vi/BksBvkNuZxU/mqdefault_live.jpg",
- "width": 320,
- "height": 180
- },
- "high": {
- "url": "https://i.ytimg.com/vi/BksBvkNuZxU/hqdefault_live.jpg",
- "width": 480,
- "height": 360
- }
- },
- "channelTitle": "Tracy CA Seismograph",
- "liveBroadcastContent": "live",
- "publishTime": "2024-09-06T22:56:04Z"
- }
- },
- {
- "kind": "youtube#searchResult",
- "etag": "wqDjx4r7ri8wdbR1n-YqMn1t8_g",
- "id": {
- "kind": "youtube#video",
- "videoId": "cGIM7WWPWcY"
- },
- "snippet": {
- "publishedAt": "2024-06-12T18:29:54Z",
- "channelId": "UCJBVNt_BTTl2v4qtLScyxpw",
- "title": "News On 6 NOW",
- "description": "Welcome to the News On 6 NOW on YouTube. Join us here for continuous coverage of breaking weather events in Tulsa and the ...",
- "thumbnails": {
- "default": {
- "url": "https://i.ytimg.com/vi/cGIM7WWPWcY/default_live.jpg",
- "width": 120,
- "height": 90
- },
- "medium": {
- "url": "https://i.ytimg.com/vi/cGIM7WWPWcY/mqdefault_live.jpg",
- "width": 320,
- "height": 180
- },
- "high": {
- "url": "https://i.ytimg.com/vi/cGIM7WWPWcY/hqdefault_live.jpg",
- "width": 480,
- "height": 360
- }
- },
- "channelTitle": "News On 6/KOTV",
- "liveBroadcastContent": "live",
- "publishTime": "2024-06-12T18:29:54Z"
- }
- },
- {
- "kind": "youtube#searchResult",
- "etag": "bnutxmX4pZWYuOX_qE-ohnH5vmY",
- "id": {
- "kind": "youtube#video",
- "videoId": "CjhDe-aAh1U"
- },
- "snippet": {
- "publishedAt": "2023-09-10T11:52:58Z",
- "channelId": "UCCCVkU6r9ZTD8E4z7AtuOIw",
- "title": "KATHMANDU - NEPAL - LIVE",
- "description": "Please enjoy the views of Kathmandu - the capital city of Nepal. Webcam Nepal Live is a cutting-edge online platform that brings ...",
- "thumbnails": {
- "default": {
- "url": "https://i.ytimg.com/vi/CjhDe-aAh1U/default_live.jpg",
- "width": 120,
- "height": 90
- },
- "medium": {
- "url": "https://i.ytimg.com/vi/CjhDe-aAh1U/mqdefault_live.jpg",
- "width": 320,
- "height": 180
- },
- "high": {
- "url": "https://i.ytimg.com/vi/CjhDe-aAh1U/hqdefault_live.jpg",
- "width": 480,
- "height": 360
- }
- },
- "channelTitle": "WEBCAM NEPAL LIVE",
- "liveBroadcastContent": "live",
- "publishTime": "2023-09-10T11:52:58Z"
- }
- },
- {
- "kind": "youtube#searchResult",
- "etag": "lXWUm3ydgo5KXgfrwVdvp9qk1PE",
- "id": {
- "kind": "youtube#video",
- "videoId": "CC0Of4wMwnk"
- },
- "snippet": {
- "publishedAt": "2024-08-03T06:52:59Z",
- "channelId": "UCpzi8BbsXCUoSlfbTBDMRKA",
- "title": "Medjugorje LIVE 24/7 - St. James Church - Crkva sv. Jakova",
- "description": "medjugorje #medjugorjelive #queenofpeace #church #stjames #gospintrg #svjakov #crkvasvjakova #medjugorjeenvivo Dear ...",
- "thumbnails": {
- "default": {
- "url": "https://i.ytimg.com/vi/CC0Of4wMwnk/default_live.jpg",
- "width": 120,
- "height": 90
- },
- "medium": {
- "url": "https://i.ytimg.com/vi/CC0Of4wMwnk/mqdefault_live.jpg",
- "width": 320,
- "height": 180
- },
- "high": {
- "url": "https://i.ytimg.com/vi/CC0Of4wMwnk/hqdefault_live.jpg",
- "width": 480,
- "height": 360
- }
- },
- "channelTitle": "Medjugorje Today Live",
- "liveBroadcastContent": "live",
- "publishTime": "2024-08-03T06:52:59Z"
- }
- },
- {
- "kind": "youtube#searchResult",
- "etag": "oQ-8JtTGUBGwqcEtdSKHwwoX5u4",
- "id": {
- "kind": "youtube#video",
- "videoId": "CYdUKfJAYNo"
- },
- "snippet": {
- "publishedAt": "2024-07-21T00:36:38Z",
- "channelId": "UC3ACLDxuy75577-GDItIgNA",
- "title": "LIVE HORA CERTA 24/7 | RELÓGIO AO VIVO UTC-3 (HORÁRIO DE BRASÍLIA) HORA OFICIAL DE BRASÍLIA Ao Vivo",
- "description": "LIVE HORA CERTA 24/7 | RELÓGIO AO VIVO UTC-3 (HORÁRIO DE BRASÍLIA) HORA OFICIAL DE BRASÍLIA Ao Vivo \"HORA ...",
- "thumbnails": {
- "default": {
- "url": "https://i.ytimg.com/vi/CYdUKfJAYNo/default_live.jpg",
- "width": 120,
- "height": 90
- },
- "medium": {
- "url": "https://i.ytimg.com/vi/CYdUKfJAYNo/mqdefault_live.jpg",
- "width": 320,
- "height": 180
- },
- "high": {
- "url": "https://i.ytimg.com/vi/CYdUKfJAYNo/hqdefault_live.jpg",
- "width": 480,
- "height": 360
- }
- },
- "channelTitle": "Canal Sr. Vaquinha",
- "liveBroadcastContent": "live",
- "publishTime": "2024-07-21T00:36:38Z"
- }
- },
- {
- "kind": "youtube#searchResult",
- "etag": "5AsIEqvjrN7pjfcxGWnf-iNR75s",
- "id": {
- "kind": "youtube#video",
- "videoId": "zpVRx505C9w"
- },
- "snippet": {
- "publishedAt": "2022-07-26T01:28:54Z",
- "channelId": "UCAhqlmltCW94ipicG8X-oLw",
- "title": "Live Earthquake Information - RaspberryShake 4D Seismograph RD29A - Chino Hills, Southern California",
- "description": "Live earthquake stream from a RaspberryShake 4D seismograph in Chino Hills, Ca (Southern California) Guide to this stream ...",
- "thumbnails": {
- "default": {
- "url": "https://i.ytimg.com/vi/zpVRx505C9w/default_live.jpg",
- "width": 120,
- "height": 90
- },
- "medium": {
- "url": "https://i.ytimg.com/vi/zpVRx505C9w/mqdefault_live.jpg",
- "width": 320,
- "height": 180
- },
- "high": {
- "url": "https://i.ytimg.com/vi/zpVRx505C9w/hqdefault_live.jpg",
- "width": 480,
- "height": 360
- }
- },
- "channelTitle": "Steve Caron",
- "liveBroadcastContent": "live",
- "publishTime": "2022-07-26T01:28:54Z"
- }
- },
- {
- "kind": "youtube#searchResult",
- "etag": "ejVOHZfSKsJH-4X3Zto5wkwuIy4",
- "id": {
- "kind": "youtube#video",
- "videoId": "sdbSN8kpu68"
- },
- "snippet": {
- "publishedAt": "2024-11-22T15:50:08Z",
- "channelId": "UCKt7TllYnUsCkocpzeX7Tfw",
- "title": "World Today: Quick Take On #globalnews | #trump #putin #ukraine #modi #jaishankar #atacms #russia",
- "description": "A quick round-up of global developments, only on StratNews Global ...",
- "thumbnails": {
- "default": {
- "url": "https://i.ytimg.com/vi/sdbSN8kpu68/default_live.jpg",
- "width": 120,
- "height": 90
- },
- "medium": {
- "url": "https://i.ytimg.com/vi/sdbSN8kpu68/mqdefault_live.jpg",
- "width": 320,
- "height": 180
- },
- "high": {
- "url": "https://i.ytimg.com/vi/sdbSN8kpu68/hqdefault_live.jpg",
- "width": 480,
- "height": 360
- }
- },
- "channelTitle": "StratNewsGlobal",
- "liveBroadcastContent": "live",
- "publishTime": "2024-11-22T15:50:08Z"
- }
- },
- {
- "kind": "youtube#searchResult",
- "etag": "di6890Kml9D1-KXy5FmEPJk71qg",
- "id": {
- "kind": "youtube#video",
- "videoId": "SsPEnGjk-SU"
- },
- "snippet": {
- "publishedAt": "2022-09-27T01:14:36Z",
- "channelId": "UCw8RanrPpHhB42ffMvOtTJw",
- "title": "Detroit Lakes Cam LIVE NOW | BNSF Staples Sub | @NTR-OTC | MP 210.1",
- "description": "Live BNSF Staples Sub | Detroit Lakes Live Train Cam | Northern Transcon Railcams | MP 210.1 Welcome to our premier Detroit ...",
- "thumbnails": {
- "default": {
- "url": "https://i.ytimg.com/vi/SsPEnGjk-SU/default_live.jpg",
- "width": 120,
- "height": 90
- },
- "medium": {
- "url": "https://i.ytimg.com/vi/SsPEnGjk-SU/mqdefault_live.jpg",
- "width": 320,
- "height": 180
- },
- "high": {
- "url": "https://i.ytimg.com/vi/SsPEnGjk-SU/hqdefault_live.jpg",
- "width": 480,
- "height": 360
- }
- },
- "channelTitle": "Northern Transcon Railcams - Otter Tail Channel",
- "liveBroadcastContent": "live",
- "publishTime": "2022-09-27T01:14:36Z"
- }
- },
- {
- "kind": "youtube#searchResult",
- "etag": "5rQsqUW2X37zRXlHX6blNQ0P-1A",
- "id": {
- "kind": "youtube#video",
- "videoId": "rs2be3mqryo"
- },
- "snippet": {
- "publishedAt": "2023-01-06T12:14:57Z",
- "channelId": "UCXj6ROnZkzqgq6eYeoflO6A",
- "title": "www.ultravisionconsult.com",
+ "publishedAt": "2024-11-22T17:11:25Z",
+ "channelId": "UC4JX40jDee_tINbkjycV4Sg",
+ "title": "Chatted about coding, passion, and why I chose this path 10 years ago. 🎙️",
"description": "",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/rs2be3mqryo/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/FMAsMNIdTdc/default.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/rs2be3mqryo/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/FMAsMNIdTdc/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/rs2be3mqryo/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/FMAsMNIdTdc/hqdefault.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "ULTRAVISION CONSULT",
- "liveBroadcastContent": "live",
- "publishTime": "2023-01-06T12:14:57Z"
+ "channelTitle": "Tech With Tim",
+ "liveBroadcastContent": "none",
+ "publishTime": "2024-11-22T17:11:25Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "TJbTqIJ5ghkXqW8mQPvqMWP1fjA",
+ "etag": "uDADg8NF3Ebe_tCsOT91gjuRmS8",
"id": {
"kind": "youtube#video",
- "videoId": "8OAlZPKNiM4"
+ "videoId": "SCUu4xlZZgc"
},
"snippet": {
- "publishedAt": "2021-04-19T16:40:22Z",
- "channelId": "UCpmA9exJCBn9LoxXt87URtQ",
- "title": "TechWorks Cam01",
- "description": "This robot is located in TechWorks at CCA, but you can visit https://tinyurl.com/TechWorksRobot on a PC, Mac, or Chromebook to ...",
+ "publishedAt": "2024-11-04T06:30:08Z",
+ "channelId": "UC0e3QhIYukixgh5VVpKHH9Q",
+ "title": "😲Recreating Pikmin in 24 hours",
+ "description": "Recreating Pikmin in 24 hours #challenge #gamedev #24hour.",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/8OAlZPKNiM4/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/SCUu4xlZZgc/default.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/8OAlZPKNiM4/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/SCUu4xlZZgc/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/8OAlZPKNiM4/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/SCUu4xlZZgc/hqdefault.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "CCA LIVE STREAM",
- "liveBroadcastContent": "live",
- "publishTime": "2021-04-19T16:40:22Z"
+ "channelTitle": "Code Bullet",
+ "liveBroadcastContent": "none",
+ "publishTime": "2024-11-04T06:30:08Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "DmCOkhGjrAveEFtPRVXI4XyM6eA",
+ "etag": "XC4R28FGwDr2BMNe4cHU9wJ__6E",
"id": {
"kind": "youtube#video",
- "videoId": "OYIQcaNdBc4"
+ "videoId": "5MoZ1hJuvqM"
},
"snippet": {
- "publishedAt": "2024-11-22T04:42:53Z",
- "channelId": "UCzraw3sKtfg1KiEHEJvr2zg",
- "title": "🛑LIVE🛑 STUMBLE GUYS | STREAM EUROPE SERVER | BLOCK DASH ENDLESS MAP",
- "description": "Use Shop Creator Code : FANTO FANTO STREAMING SETUP DEVICE'S Iqoo neo 9 pro : https://amzn.to/3SowHIq Lenovo ...",
- "thumbnails": {
- "default": {
- "url": "https://i.ytimg.com/vi/OYIQcaNdBc4/default_live.jpg",
- "width": 120,
- "height": 90
- },
- "medium": {
- "url": "https://i.ytimg.com/vi/OYIQcaNdBc4/mqdefault_live.jpg",
- "width": 320,
- "height": 180
- },
- "high": {
- "url": "https://i.ytimg.com/vi/OYIQcaNdBc4/hqdefault_live.jpg",
- "width": 480,
- "height": 360
- }
- },
- "channelTitle": "fanto Gaming",
- "liveBroadcastContent": "live",
- "publishTime": "2024-11-22T04:42:53Z"
- }
- },
- {
- "kind": "youtube#searchResult",
- "etag": "dOdfG_aBXHHV1QHjzf7pJsQvIkI",
- "id": {
- "kind": "youtube#video",
- "videoId": "WQLKeRyi-zM"
- },
- "snippet": {
- "publishedAt": "2022-10-19T19:49:00Z",
- "channelId": "UCrSH94MuqGyNxezgVOPqqaw",
- "title": "Landing 3 - On Bigfoot Island!",
- "description": "",
+ "publishedAt": "2024-11-22T15:00:13Z",
+ "channelId": "UC8butISFwT-Wl7EV0hUK0BQ",
+ "title": "Automating a coffee shop chain using self-taught coding skills with Eamonn Cottrell [Interview #151]",
+ "description": "On this week's episode of the podcast, freeCodeCamp founder Quincy Larson interviews Eamonn Cottrell. He's a software ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/WQLKeRyi-zM/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/5MoZ1hJuvqM/default.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/WQLKeRyi-zM/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/5MoZ1hJuvqM/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/WQLKeRyi-zM/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/5MoZ1hJuvqM/hqdefault.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Bigfoot Zipline Tours",
- "liveBroadcastContent": "live",
- "publishTime": "2022-10-19T19:49:00Z"
+ "channelTitle": "freeCodeCamp.org",
+ "liveBroadcastContent": "none",
+ "publishTime": "2024-11-22T15:00:13Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "WX_WFRqW8N5h6mg3GGkKhxuEH8k",
+ "etag": "tnyE4dn8T2T8Ex5KBOSrg41q1rY",
"id": {
"kind": "youtube#video",
- "videoId": "2DOFmnxa5co"
+ "videoId": "em6lrjGagOY"
},
"snippet": {
- "publishedAt": "2024-11-22T07:41:42Z",
- "channelId": "UCoDrjL4eWVbmuZWCoFu76wA",
- "title": "Dubai Live 24/7 🇦🇪 Deep House & Dubai Marina [ 4K ] Walking Tour Compilation",
- "description": "During our program, we wander through the vibrant Dubai Marina, soaking in the atmospheric deep house tunes that lend a ...",
+ "publishedAt": "2024-11-11T23:17:58Z",
+ "channelId": "UCqrILQNl5Ed9Dz6CGMyvMTQ",
+ "title": "Google Wrote 25% of It's Code with AI",
+ "description": "Want to Learn Coding 10x Faster with AI? https://start.getpoppy.ai/join?ref=yt-qazi-google-ai-jobs.",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/2DOFmnxa5co/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/em6lrjGagOY/default.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/2DOFmnxa5co/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/em6lrjGagOY/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/2DOFmnxa5co/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/em6lrjGagOY/hqdefault.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "CitiesTouch",
- "liveBroadcastContent": "live",
- "publishTime": "2024-11-22T07:41:42Z"
+ "channelTitle": "Clever Programmer",
+ "liveBroadcastContent": "none",
+ "publishTime": "2024-11-11T23:17:58Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "_JZ8_3398PpHMj0PzbgXmKLfSkQ",
+ "etag": "TEJoSWbOvfC97tkplPnaPrg6Wno",
"id": {
"kind": "youtube#video",
- "videoId": "VMYfBN89Sz4"
+ "videoId": "YsCHobUSaLw"
},
"snippet": {
- "publishedAt": "2024-11-22T22:06:24Z",
- "channelId": "UCcE5z1HBSdD9tZx5EMTjvZQ",
- "title": "LIVESTREAM: PYRO 4.0 (expect bugs!) in the EPTU with Seksi_Snipes and Friends",
- "description": "Join Emily ( Seksi_Snipes ) and her crew as we attempt to play test EPTU 4.0 to Pyro again!! EXPECT bugs, crashes, etc. Join the ...",
+ "publishedAt": "2024-02-09T13:00:34Z",
+ "channelId": "UC1fLEeYICmo3O9cUsqIi7HA",
+ "title": "Coding Is Changing...Here Is What You NEED To Know",
+ "description": "Join over 1 million people learning to code with Zero To Mastery: https://links.zerotomastery.io/ZTM-NW-Feb24 Join our free ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/VMYfBN89Sz4/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/YsCHobUSaLw/default.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/VMYfBN89Sz4/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/YsCHobUSaLw/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/VMYfBN89Sz4/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/YsCHobUSaLw/hqdefault.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Emilys Game",
- "liveBroadcastContent": "live",
- "publishTime": "2024-11-22T22:06:24Z"
+ "channelTitle": "Nick White",
+ "liveBroadcastContent": "none",
+ "publishTime": "2024-02-09T13:00:34Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "LoMDQRw6GSTK46BGIaIHI6y0FfA",
+ "etag": "DXNyTh76XtK2_Nc0hIkoGUC099U",
"id": {
"kind": "youtube#video",
- "videoId": "zfJPPSlQZZo"
+ "videoId": "cO4ZmQh_sr8"
},
"snippet": {
- "publishedAt": "2024-11-22T22:30:52Z",
- "channelId": "UCLbLomtio10U_Ia3pbvjIhA",
- "title": "continuando projetinho novo | !projeto !pix",
- "description": "opa! não esquece de se inscrever e curtir a live! obrigada ^^ REDES insta: https://www.instagram.com/criativaria/ twitch: ...",
+ "publishedAt": "2024-11-22T20:24:45Z",
+ "channelId": "UC46wWUso9H5KPQcoL9iE3Ug",
+ "title": "🚨 Junior Developer Mistakes That Will COST You in 2025 🚨",
+ "description": "Junior Developer Mistakes That Will COST You in 2025 Are you just starting your journey as a developer? Avoid these ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/zfJPPSlQZZo/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/cO4ZmQh_sr8/default.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/zfJPPSlQZZo/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/cO4ZmQh_sr8/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/zfJPPSlQZZo/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/cO4ZmQh_sr8/hqdefault.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Criativaria",
- "liveBroadcastContent": "live",
- "publishTime": "2024-11-22T22:30:52Z"
+ "channelTitle": "CodingPhase",
+ "liveBroadcastContent": "none",
+ "publishTime": "2024-11-22T20:24:45Z"
}
}
]
\ No newline at end of file
diff --git a/fetch.mjs b/fetch.mjs
index 7ac3e13..106b373 100644
--- a/fetch.mjs
+++ b/fetch.mjs
@@ -5,7 +5,7 @@ const yt = new YouTubeFeed("AIzaSyAy0N613PtrIohnjsXOn3kqbRxa5M5mdRQ")
// yt.generateCollection("live -bot -lofi", "general")
// yt.generateCollection("coding programming live -bot -lofi -music", "coding")
// yt.generateCollection("live ambient music", "ambience")
-yt.generateCollection("live -bot science", "science")
+// yt.generateCollection("live -bot science", "science")
const channelUrls = [
"https://www.youtube.com/@okbangershow",
@@ -19,3 +19,19 @@ const channelUrls = [
// Add more channel URLs here
]
// yt.channelsToCollection(channelUrls, "warpcast")
+
+const codingChannels = `https://www.youtube.com/@theprimeagen
+https://www.youtube.com/@CodeWithChris
+https://www.youtube.com/@CodingGarden
+https://www.youtube.com/@Fireship
+https://www.youtube.com/@TraversyMedia
+https://www.youtube.com/@Academind
+https://www.youtube.com/@ChrisCourses
+https://www.youtube.com/@TechWithTim
+https://www.youtube.com/@CodeBullet
+https://www.youtube.com/@freeCodeCamp
+https://www.youtube.com/@JomaTech
+https://www.youtube.com/@CleverProgrammer
+https://www.youtube.com/@NickWhite
+https://www.youtube.com/@CodingPhase`.split(" ")
+yt.channelsToCollection(codingChannels, "coding")
------------------------------------------------------------
commit 3d2f618f1895ddd0c4a0a8d544a0e0de28a6f861
Author: Breck Yunits <breck7@gmail.com>
Date: Fri Nov 22 17:53:32 2024 -0800
diff --git a/togger.js b/togger.js
index 69f44b1..7ae6ddc 100644
--- a/togger.js
+++ b/togger.js
@@ -468,6 +468,7 @@ class Togger {
}
}
+// https://developers.google.com/youtube/iframe_api_reference
function onYouTubeIframeAPIReady() {
const togger = new Togger()
const player = new YT.Player("player", {
------------------------------------------------------------
commit afcdcaab696f7fd1686d3fb596ce39bcb19026a9
Author: Breck Yunits <breck7@gmail.com>
Date: Fri Nov 22 17:45:11 2024 -0800
diff --git a/togger.js b/togger.js
index 6cf48a8..69f44b1 100644
--- a/togger.js
+++ b/togger.js
@@ -28,11 +28,10 @@ class Togger {
this.addRemoteControl()
}
- getCollection(collectionName) {
+ getCollection(collectionName = "science") {
+ if (!collections[collectionName]) collectionName = "science"
this.collectionName = collectionName
- if (collections[collectionName]) return collections[collectionName]
- this.collectionName = "science"
- return generalCollection
+ return collections[collectionName]
}
get collectionIndex() {
------------------------------------------------------------
commit 2e17001a4a97f45e8612c586d6cd7671bdd4ae89
Author: Breck Yunits <breck7@gmail.com>
Date: Fri Nov 22 17:39:07 2024 -0800
diff --git a/collections/scienceCollection.json b/collections/scienceCollection.json
new file mode 100644
index 0000000..8e02604
--- /dev/null
+++ b/collections/scienceCollection.json
@@ -0,0 +1,1702 @@
+[
+ {
+ "kind": "youtube#searchResult",
+ "etag": "-_JPYijQSnwuyNItuB8W_caVjAY",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "lhF6lhuAjB4"
+ },
+ "snippet": {
+ "publishedAt": "2024-03-11T16:08:57Z",
+ "channelId": "UCuPkgKp2-9zMuVIr-eAFjyw",
+ "title": "The Mysteries of the Universe | Space Documentary 2024",
+ "description": "Subscribe here → @SpacedustDOC Sponsorships / business → kontaktplayas@gmail.com Created from what seems to be ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/lhF6lhuAjB4/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/lhF6lhuAjB4/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/lhF6lhuAjB4/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Spacedust",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-03-11T16:08:57Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "FJsuKc7h4bMQfYJokcaeSC9s-qg",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "cXRsIb1WTHY"
+ },
+ "snippet": {
+ "publishedAt": "2024-07-12T00:40:35Z",
+ "channelId": "UCuPkgKp2-9zMuVIr-eAFjyw",
+ "title": "24/7 Mind-Blowing Space Facts To Fall Asleep To",
+ "description": "Subscribe here → @SpacedustDOC Sponsorships / business → spacedust@ruthlesstalent.com Nothing. What does that mean?",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/cXRsIb1WTHY/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/cXRsIb1WTHY/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/cXRsIb1WTHY/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Spacedust",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-07-12T00:40:35Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "EWUWwfHg20t-lW7HoFZ6wBXZDlo",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "0FBiyFpV__g"
+ },
+ "snippet": {
+ "publishedAt": "2023-12-28T20:51:51Z",
+ "channelId": "UCetYFjkhf7S7LwiuJxeC28g",
+ "title": "24/7 Live from the International Space Station | Dream Trips",
+ "description": "Welcome to our 24/7 live stream directly from the International Space Station (ISS)! Join us as we orbit the Earth, offering ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/0FBiyFpV__g/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/0FBiyFpV__g/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/0FBiyFpV__g/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Dream Trips",
+ "liveBroadcastContent": "live",
+ "publishTime": "2023-12-28T20:51:51Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "pDT3c3aRDlfaEo4z2xFzbVgQBVA",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "tNkZsRW7h2c"
+ },
+ "snippet": {
+ "publishedAt": "2018-12-13T08:17:00Z",
+ "channelId": "UCkFeoNSqYTa7trn75WM9tsg",
+ "title": "🔴 Space Ambient Music LIVE 24/7: Space Traveling Background Music, Music for Stress Relief, Dreaming",
+ "description": "Check Our Brand New Deep Space Music - https://youtu.be/J_1YouCtQnU Relaxation Meditation Ambient Music presents Space ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/tNkZsRW7h2c/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/tNkZsRW7h2c/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/tNkZsRW7h2c/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Relaxation Ambient Music",
+ "liveBroadcastContent": "live",
+ "publishTime": "2018-12-13T08:17:00Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "D903_TK7sChFrNPItsYqzfd6Mec",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "3NAplOMQ5pU"
+ },
+ "snippet": {
+ "publishedAt": "2024-10-01T16:02:35Z",
+ "channelId": "UCZvXaNYIcapCEcaJe_2cP7A",
+ "title": "Live Coral Reef Cam | California Academy of Sciences",
+ "description": "Dive in to the Academy's Philippine Coral Reef tank-- one of the deepest exhibits of live corals in the world. This impressive tank ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/3NAplOMQ5pU/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/3NAplOMQ5pU/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/3NAplOMQ5pU/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "California Academy of Sciences",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-10-01T16:02:35Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "tHX3VAi_z4-nIsgNMLpbs7xguAA",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "xRPjKQtRXR8"
+ },
+ "snippet": {
+ "publishedAt": "2024-01-20T00:58:44Z",
+ "channelId": "UCaG0IHN1RMOZ4-U3wDXAkwA",
+ "title": "🔴 Live Now: 24/7 NASA Live Stream of Earth from Space (ISS)",
+ "description": "This is an ISS live earth view happening right now from space at the International Space Station. The International Space Station ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/xRPjKQtRXR8/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/xRPjKQtRXR8/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/xRPjKQtRXR8/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "afarTV",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-01-20T00:58:44Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "E_DWsQtGf9lzm4IZgmznv7IOSNU",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "liR_yBb3Afo"
+ },
+ "snippet": {
+ "publishedAt": "2024-10-01T15:57:50Z",
+ "channelId": "UCZvXaNYIcapCEcaJe_2cP7A",
+ "title": "Live Penguin Cam (Biologist View) | California Academy of Sciences",
+ "description": "Watch our penguins swim, flirt, and nest on three live webcams—now in HD! Native to the coasts of South Africa and Namibia, ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/liR_yBb3Afo/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/liR_yBb3Afo/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/liR_yBb3Afo/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "California Academy of Sciences",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-10-01T15:57:50Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "XwOcrbz1e83WEsBoXL2zGBCs-Tk",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "g0wiBF9lp6c"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T10:05:38Z",
+ "channelId": "UCZYqWTQJzJaMW7jFG16p8ug",
+ "title": "🔴 LIVE | Scientists Announces New Discovery By The Large Hadron Collider At CERN",
+ "description": "Scientists New Discovery By The Large Hadron Collider At CERN. Located underground between the borders of France and ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/g0wiBF9lp6c/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/g0wiBF9lp6c/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/g0wiBF9lp6c/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "LAB 360",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T10:05:38Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "PKY6NTTJ9cttMFZwyKTY1V9agdc",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "r-TPJDQSqv0"
+ },
+ "snippet": {
+ "publishedAt": "2024-05-08T09:01:31Z",
+ "channelId": "UCetYFjkhf7S7LwiuJxeC28g",
+ "title": "NASA Live 24/7 | Earth at Night from Space | ISS Live Stream",
+ "description": "Watch NASA's live stream 24/7 to see Earth at night from space! This ISS live stream will give you a glimpse of our planet like ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/r-TPJDQSqv0/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/r-TPJDQSqv0/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/r-TPJDQSqv0/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Dream Trips",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-05-08T09:01:31Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "X4GPil_QXTpMPZnLYzucs5OjnVc",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "GN_j_kVsbpI"
+ },
+ "snippet": {
+ "publishedAt": "2024-07-22T15:45:53Z",
+ "channelId": "UCMv1mrz-j0iTVmHCFzMkZ_g",
+ "title": "James Webb Space Telescope Tracker Live Position & Data",
+ "description": "Gone from our sight, but never from our hearts.” Tracey Slater will be missed and she will never be forgotten, she will remain in our ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/GN_j_kVsbpI/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/GN_j_kVsbpI/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/GN_j_kVsbpI/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "WN SPACE LIVE",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-07-22T15:45:53Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "FGJUt2ehnS3Q7lKBJioe_jV8fL0",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "OCem0E-0Q6Y"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-18T14:04:55Z",
+ "channelId": "UCLA_DiR1FfKNvjuUpBHmylQ",
+ "title": "Live Video from the International Space Station (Official NASA Stream)",
+ "description": "Watch live video from the International Space Station, including inside views when the crew aboard the space station is on duty.",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/OCem0E-0Q6Y/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/OCem0E-0Q6Y/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/OCem0E-0Q6Y/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "NASA",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-18T14:04:55Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "f6cXBxV3X4GncuMyEAzTeeQL2W4",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "Mxe9ZXGbR6g"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-21T20:39:57Z",
+ "channelId": "UCFzph9x-n9FR52BI94Zfgww",
+ "title": "Mystery Science Theater 3000 (FULL MOVIES)",
+ "description": "MST3K FOREVER-a-thon http://FOREVERathon.com SUBSCRIBE: https://youtube.com/mst3k?sub_confirmation=1 Twitch TV ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/Mxe9ZXGbR6g/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/Mxe9ZXGbR6g/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/Mxe9ZXGbR6g/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "MYSTERY SCIENCE THEATER 3000",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-21T20:39:57Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "Cg8zQB0NWD_mK1d6PczndDszW3g",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "tiJUiIuEkEk"
+ },
+ "snippet": {
+ "publishedAt": "2024-10-27T04:15:11Z",
+ "channelId": "UCpHaAKu74UHvcYCi2g_PvBQ",
+ "title": "🚀 MST3K: Mystery Science Theater 3000 🚀 Streaming Now❗️",
+ "description": "Mystery Science Theater 3000 @MST3K FOREVER-a-thon stream http://FOREVERathon.com Watch on Twitch: ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/tiJUiIuEkEk/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/tiJUiIuEkEk/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/tiJUiIuEkEk/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Shout! Studios",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-10-27T04:15:11Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "gyXeh0Nc8i5UNzt_qHwmpBKOAb4",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "wG4YaEcNlb0"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-18T14:05:32Z",
+ "channelId": "UCLA_DiR1FfKNvjuUpBHmylQ",
+ "title": "Live High-Definition Views from the International Space Station (Official NASA Stream)",
+ "description": "Live views from the International Space Station are streaming from an external camera mounted on the station's Harmony module.",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/wG4YaEcNlb0/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/wG4YaEcNlb0/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/wG4YaEcNlb0/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "NASA",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-18T14:05:32Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "SrjVYbzLPWkhkg9z_ben2nk0Yyw",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "brUPUA0WNQ8"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-20T16:29:43Z",
+ "channelId": "UChUAaNhjdc1aN5f_29BPrhw",
+ "title": "🔴 LIVE! Mythbusters | Non-Stop Full Episodes!",
+ "description": "Join the MythBusters Season 3 live stream and dive into explosive experiments, epic builds, and myth-busting madness!",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/brUPUA0WNQ8/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/brUPUA0WNQ8/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/brUPUA0WNQ8/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "MythBusters",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-20T16:29:43Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "Q8JoNkIkfaH2SI4-aHuzDEJs4uI",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "rr7CfNQAFOc"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-19T03:30:47Z",
+ "channelId": "UCCHrTE-Z_GRWAUpnf1FVeGw",
+ "title": "LIVE | RD Sharma | Class 9 Maths | Factorization of Algebraic Expressions | New Syllabus",
+ "description": "LIVE | Trigonometry Ratios/Identities in One Shot | Class 10 Maths NCERT, UP/MP Board LIVE | Chapter 1 Real Numbers | Class ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/rr7CfNQAFOc/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/rr7CfNQAFOc/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/rr7CfNQAFOc/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Mann Ki Ganit",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-19T03:30:47Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "HuI7CI4mPinsTzf4oNON0gPrh60",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "FJfwehhzIhw"
+ },
+ "snippet": {
+ "publishedAt": "2022-07-11T18:19:59Z",
+ "channelId": "UChlgI3UHCOnwUGzWzbJ3H5w",
+ "title": "[LIVE] 대한민국 24시간 뉴스채널 YTN",
+ "description": "진실을 전하는, 진심을 다하는 24시간 뉴스 채널 YTN YTN 공식채널을 지금 바로 구독하세요. ▷ YTN 유튜브 채널 구독 ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/FJfwehhzIhw/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/FJfwehhzIhw/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/FJfwehhzIhw/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": " YTN",
+ "liveBroadcastContent": "live",
+ "publishTime": "2022-07-11T18:19:59Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "_l-o5A09aT91bxWvOnoyCaOsPbU",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "9w0rVHehpDU"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T10:02:56Z",
+ "channelId": "UCZYqWTQJzJaMW7jFG16p8ug",
+ "title": "🔴 LIVE | The James Webb Space Telescope's Journey into the Unknown Cosmic Mysteries",
+ "description": "Embark on a journey through the technological marvels and groundbreaking discoveries of the James Webb Space Telescope, ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/9w0rVHehpDU/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/9w0rVHehpDU/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/9w0rVHehpDU/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "LAB 360",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T10:02:56Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "FkOdrXuebJp_td3q9Um1DDlAg5M",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "lBY1SzPW28Q"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T10:00:44Z",
+ "channelId": "UCZYqWTQJzJaMW7jFG16p8ug",
+ "title": "🔴 LIVE | James Webb Telescope Announced First Ever, Real Image Of Another World",
+ "description": "James Webb Telescope Just Announced First Ever, Real Image Of Another World. The James Webb Space Telescope is the ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/lBY1SzPW28Q/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/lBY1SzPW28Q/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/lBY1SzPW28Q/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "LAB 360",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T10:00:44Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "li0zTx6MbIJ3lmD8Fm8WIrJeKgE",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "BJ3Yv572V1A"
+ },
+ "snippet": {
+ "publishedAt": "2023-11-08T16:48:03Z",
+ "channelId": "UCDPk9MG2RexnOMGTD-YnSnA",
+ "title": "🔴 LIVE: Enter the Savage Kingdom: Ultimate Predators | Watch Now on Nat Geo WILD",
+ "description": "Ruthless predators and powerful prey are embroiled in rivalry, betrayal, and battle, in a never-ending crusade for survival, with ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/BJ3Yv572V1A/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/BJ3Yv572V1A/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/BJ3Yv572V1A/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Nat Geo Animals",
+ "liveBroadcastContent": "live",
+ "publishTime": "2023-11-08T16:48:03Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "IIHb0FIDME3uVzyEpeB-F51o7XU",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "N7oOyWgPYwM"
+ },
+ "snippet": {
+ "publishedAt": "2023-07-17T08:43:03Z",
+ "channelId": "UCJduEGukjOXzTW4jfkQ-ihw",
+ "title": "4K Animal World : [4K UHD] Beautiful Wildlife Animals and Relaxing Music for Stress Relief",
+ "description": "4K Animal World : [4K UHD] Beautiful Wildlife Animals and Relaxing Music for Stress Relief Enjoy the breathtaking colors of ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/N7oOyWgPYwM/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/N7oOyWgPYwM/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/N7oOyWgPYwM/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Relaxing Nature In 4K",
+ "liveBroadcastContent": "live",
+ "publishTime": "2023-07-17T08:43:03Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "89-QYSi8xGj6irbcjxNvEZaNhBE",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "Dp4Cm6w_go8"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T14:11:33Z",
+ "channelId": "UCUI9vm69ZbAqRK3q3vKLWCQ",
+ "title": "LIVE | Stranded NASA Astronauts Butch Wilmore and Suni Williams Speak From ISS | Life On ISS | Space",
+ "description": "Join NASA astronauts Butch Wilmore and Suni Williams live from the International Space Station as they discuss their ongoing ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/Dp4Cm6w_go8/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/Dp4Cm6w_go8/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/Dp4Cm6w_go8/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Mint",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T14:11:33Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "QZDK1oYcSeQrLFShZtz7U2feCIk",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "rKn4EQ3-Ns0"
+ },
+ "snippet": {
+ "publishedAt": "2024-05-10T06:12:11Z",
+ "channelId": "UCeTVoczn9NOZA9blls3YgUg",
+ "title": "Speak English 24/7 with EnglishClass101 TV 🔴 Live 24/7",
+ "description": "https://bit.ly/3QkU4CG Click here to learn English twice as fast with FREE PDF! ↓ Check How Below ↓ Step 1: Go to ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/rKn4EQ3-Ns0/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/rKn4EQ3-Ns0/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/rKn4EQ3-Ns0/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Learn English with EnglishClass101.com",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-05-10T06:12:11Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "FHAgeMrieV-C2VmCK0ufH849q20",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "n7wubK_0Mm8"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T14:11:34Z",
+ "channelId": "UCm7lHFkt2yB_WzL67aruVBQ",
+ "title": "LIVE | Stranded NASA Astronauts Butch Wilmore and Suni Williams Speak From ISS | Life On ISS | Space",
+ "description": "Join NASA astronauts Butch Wilmore and Suni Williams live from the International Space Station as they discuss their ongoing ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/n7wubK_0Mm8/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/n7wubK_0Mm8/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/n7wubK_0Mm8/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Hindustan Times",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T14:11:34Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "LbMx3s_Tb2SLQ9L2H9gVtVq6f4g",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "zmiOmpo27F8"
+ },
+ "snippet": {
+ "publishedAt": "2024-09-18T01:18:30Z",
+ "channelId": "UC8gbWbcNNyb5-NIXvFklkOA",
+ "title": "Boston, MA Live Cam - Green Line",
+ "description": "From the top of the Boston Museum of Science https://mos.org Camera by Boston and Maine Live Streaming by ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/zmiOmpo27F8/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/zmiOmpo27F8/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/zmiOmpo27F8/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Boston and Maine Live",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-09-18T01:18:30Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "xwYP58RTPNqqEFG6F5NHTZRXE7s",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "md9PEHbULQw"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T09:57:22Z",
+ "channelId": "UCZYqWTQJzJaMW7jFG16p8ug",
+ "title": "🔴 LIVE | NASA to Oumuamua! A Closer Look at the Mysterious Alien Spacecraft",
+ "description": "Avi Loeb suggested, an artificial construction made by an intelligent extra-terrestrial civilization? Since the mysterious traveler is ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/md9PEHbULQw/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/md9PEHbULQw/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/md9PEHbULQw/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "LAB 360",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T09:57:22Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "O4sTYPGh6Vd9SJp8DnmlhJvoYMY",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "OUFpqS9Z3AY"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-08T16:14:20Z",
+ "channelId": "UCu7IDy0y-ZA0qaG51wrQY6w",
+ "title": "🔴 LIVE Curious George Full Episodes 🐵 The Runaway Tractor 🐵 Kids Cartoon 🐵 Videos for Kids",
+ "description": "LIVE Curious George Full Episodes The Runaway Tractor Kids Cartoon Videos for Kids Join this livestream marathon of ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/OUFpqS9Z3AY/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/OUFpqS9Z3AY/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/OUFpqS9Z3AY/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Curious George Official",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-08T16:14:20Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "ddZwuQcghQ9woc02oGOcgBi4smk",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "RManbLSTXuc"
+ },
+ "snippet": {
+ "publishedAt": "2024-09-18T13:48:46Z",
+ "channelId": "UC8gbWbcNNyb5-NIXvFklkOA",
+ "title": "Boston, MA Live Cam - Charles River",
+ "description": "From the top of the Boston Museum of Science https://mos.org Camera by Boston and Maine Live Streaming by ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/RManbLSTXuc/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/RManbLSTXuc/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/RManbLSTXuc/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Boston and Maine Live",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-09-18T13:48:46Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "qhsIRAJd5v24P-ocnkC5X01wz6A",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "xZXEOpKKZcE"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T09:44:09Z",
+ "channelId": "UCZYqWTQJzJaMW7jFG16p8ug",
+ "title": "🔴 LIVE | Supernova Alert: Star Explosion Bigger than Betelgeuse to be seen in the sky soon!",
+ "description": "Are you ready to witness a celestial spectacle like never before? Join Lab360 as we dive into the mesmerizing world of ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/xZXEOpKKZcE/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/xZXEOpKKZcE/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/xZXEOpKKZcE/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "LAB 360",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T09:44:09Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "2vmNU1X4VDwsOGKGE-Lx_Vd1rT0",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "TvaQwSX7ob4"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-06T17:06:36Z",
+ "channelId": "UCu7IDy0y-ZA0qaG51wrQY6w",
+ "title": "🔴 LIVE Curious George Full Episodes | Why do we brush our teeth? | Kids Cartoon | Videos for Kids",
+ "description": "LIVE Curious George Full Episodes | Why do we brush our teeth? | Kids Cartoon | Videos for Kids Buy all the episodes of Curious ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/TvaQwSX7ob4/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/TvaQwSX7ob4/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/TvaQwSX7ob4/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Curious George Official",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-06T17:06:36Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "HJbyV052Zs0gwV1PZuGsrU1Zsh8",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "Q1RqVCuK8yc"
+ },
+ "snippet": {
+ "publishedAt": "2023-09-10T12:10:17Z",
+ "channelId": "UChqurhe2_-KeXIkXtmHWH8A",
+ "title": "LIVE महालक्ष्मी आरती :आज सुबह Laxmi Aarti | Lakshmi Chalisa सुनने से सभी मनोकामनाएं पूर्ण होती है",
+ "description": "LIVE महालक्ष्मी आरती :आज सुबह Laxmi Aarti | Lakshmi Chalisa सुनने से सभी मनोकामनाएं ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/Q1RqVCuK8yc/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/Q1RqVCuK8yc/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/Q1RqVCuK8yc/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Vats Bhakti Geet",
+ "liveBroadcastContent": "live",
+ "publishTime": "2023-09-10T12:10:17Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "1FEOCmostYhn9sW7z-SK5iYvxhY",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "wQBfBK8hUY8"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-21T11:54:19Z",
+ "channelId": "UCZYqWTQJzJaMW7jFG16p8ug",
+ "title": "🔴 LIVE | Japan's Dragon's Triangle - UFO Hotspot In The Pacific Ocean",
+ "description": "Japan's Dragon's Triangle - UFO Hotspot In The Pacific Ocean! The Dragon's Triangle near Japan harbors more mysterious ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/wQBfBK8hUY8/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/wQBfBK8hUY8/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/wQBfBK8hUY8/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "LAB 360",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-21T11:54:19Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "Yz8x6C8uP9wVDX-fE9OZSrjWcsw",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "evLVisM6H8Q"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T03:42:29Z",
+ "channelId": "UCm7lHFkt2yB_WzL67aruVBQ",
+ "title": "Iceland Volcano LIVE | Volcano Erupts Again in Iceland, Seventh Eruption This Year | Reykjavik",
+ "description": "Iceland Volcano | Iceland Volcano Live News | Volcano Live News | Reykjavik Valcano A volcano near Reykjavik, Iceland, has ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/evLVisM6H8Q/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/evLVisM6H8Q/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/evLVisM6H8Q/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Hindustan Times",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T03:42:29Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "Hjig1npWyBgcZSWZPpOvp1m9BVc",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "gv-Oo5VqsGI"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-21T18:06:13Z",
+ "channelId": "UCm7lHFkt2yB_WzL67aruVBQ",
+ "title": "Iceland Volcano LIVE | Unreal Scenes in Iceland | 7th Eruption in 2024 | Watch Lava Explodes",
+ "description": "Iceland Volcano Live | Iceland Volcano Video | Iceland Volcano | Lava Explosion at Reykjanes Peninsula | Reykjanes Peninsula ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/gv-Oo5VqsGI/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/gv-Oo5VqsGI/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/gv-Oo5VqsGI/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Hindustan Times",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-21T18:06:13Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "J5kyougViuRoC1eRuxMqLcvSKpw",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "nnxGSHaF0U8"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-18T18:12:42Z",
+ "channelId": "UC_fyAp919RnkKmBrMXGwnUQ",
+ "title": "🔴 LIVE: Start Writing Prompts Like a Pro | Google Prompting Essentials",
+ "description": "In this livestream, you'll learn how to create concise, efficient instructions for generative AI tools. Additionally, discover how ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/nnxGSHaF0U8/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/nnxGSHaF0U8/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/nnxGSHaF0U8/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Google Career Certificates",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-18T18:12:42Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "KuNBkEiG-nZINCiLeDa6_1ELqmA",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "qirstxw9zKU"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-15T16:25:08Z",
+ "channelId": "UCbHGMcYuDpF3B1tN0yjD-Iw",
+ "title": "🔴 Full Custom Garage LIVE! | Non-Stop Full Episodes!",
+ "description": "Stream Full Custom Garage Seasons 1–5 live! Watch as Ian Roussel creates jaw-dropping custom vehicles, blending artistry and ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/qirstxw9zKU/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/qirstxw9zKU/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/qirstxw9zKU/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Banijay Engine",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-15T16:25:08Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "h5BxY7mlcKCkIAY0ZmeEChv12Ok",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "pykpO5kQJ98"
+ },
+ "snippet": {
+ "publishedAt": "2022-12-12T16:24:46Z",
+ "channelId": "UCSrZ3UV4jOidv8ppoVuvW9Q",
+ "title": "Euronews English Live",
+ "description": "Watch the latest breaking news available 24/7 on Euronews. ▶︎ Subscribe to our channel to follow the latest news: ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/pykpO5kQJ98/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/pykpO5kQJ98/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/pykpO5kQJ98/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "euronews",
+ "liveBroadcastContent": "live",
+ "publishTime": "2022-12-12T16:24:46Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "vOzw3CamvsAJjxaIh-univsyMfc",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "emWw0AQnRw4"
+ },
+ "snippet": {
+ "publishedAt": "2024-05-11T10:38:03Z",
+ "channelId": "UCMamNBjyzIR-824ZjntAXmg",
+ "title": "Live - 24X7 | त्रिकाल संध्या - अहमदाबाद आश्रम || Sant Shri Asharamji Ashram Ahmedabad",
+ "description": "SantShriAsharamjiBapu #SantShriAsharamjiAshram #ashramsandhya Live - 24X7 | त्रिकाल संध्या ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/emWw0AQnRw4/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/emWw0AQnRw4/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/emWw0AQnRw4/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Sant Shri Asharamji Ashram",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-05-11T10:38:03Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "T4p7IXU2H_6LdJEp9tuqqqhpaLo",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "EJkm3-Nn3AQ"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-21T15:46:43Z",
+ "channelId": "UCu7IDy0y-ZA0qaG51wrQY6w",
+ "title": "🔴 LIVE Curious George Full Episodes | George's Halloween Boo Fest! | Kids Cartoon | Videos for Kids",
+ "description": "LIVE Curious George Full Episodes | George's Halloween Boo Fest! | Kids Cartoon | Videos for Kids Buy all the episodes of ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/EJkm3-Nn3AQ/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/EJkm3-Nn3AQ/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/EJkm3-Nn3AQ/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Curious George Official",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-21T15:46:43Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "CVfsi3QTlqIbr8RSw1K24GZ9PN4",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "LFuS5NAeC1U"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-21T16:54:20Z",
+ "channelId": "UCNrGOnduIS9BXIRmDcHasZA",
+ "title": "🌎 LIVE Worldwide Earthquake Tracker | USGS",
+ "description": "If you like WorldCam content, please hit the Like, Subscribe and even leave a comment for more great content. Thank you!",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/LFuS5NAeC1U/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/LFuS5NAeC1U/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/LFuS5NAeC1U/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "WorldCam",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-21T16:54:20Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "eHzX_0E7e-RpFloe4sXj899mj3I",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "JBWyeKlZjLA"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-18T13:41:34Z",
+ "channelId": "UCjSWePNVBGP1FWeTsMHYPAA",
+ "title": "OHM Gecko: Mac n' Cheese!",
+ "description": "OHM Gecko Livestream Science Center: www.oneida-boces.org/domain/65 Live Animals: www.oneida-boces.org/Page/3209.",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/JBWyeKlZjLA/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/JBWyeKlZjLA/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/JBWyeKlZjLA/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "OHM BOCES Science Center",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-18T13:41:34Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "_37P8lIqkVBItOH1KJgIDXfKzt0",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "y5bs2yUJBv8"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-19T03:42:55Z",
+ "channelId": "UCdRNCCz2FDwE7svh7sDuc2Q",
+ "title": "LIVE | Co-ordinate Geometry | Class 10 Maths | Half Yearly and Board Exam 2025",
+ "description": "Class 6 Maths English Medium : https://www.youtube.com/playlist?list=PLKrCimKZ9oz1TUz4UcyMdNts3oLRFwkNY Class 7 ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/y5bs2yUJBv8/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/y5bs2yUJBv8/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/y5bs2yUJBv8/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Vishwakarma Classes",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-19T03:42:55Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "CeEsjUJ0xEzMo7rIbQgW1BpeTgQ",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "ZJewMEYVYOc"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-18T19:05:27Z",
+ "channelId": "UCvyabeNOyT0cODc5C61_urg",
+ "title": "Online Spiritual Service | Live | LOUISE HAY teaching | Dr. Greg Harte",
+ "description": "Join Our Zoom Gathering https://www.meetup.com/firstcrsnyc/events/ Donate: https://www.fcrsny.com/support-serve/ First Center of ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/ZJewMEYVYOc/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/ZJewMEYVYOc/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/ZJewMEYVYOc/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "First Center of Religious Science New York",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-18T19:05:27Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "56-8yyy-U6YBRi1QrjX1iEfhSx0",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "-bgU5UTwANc"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-16T06:00:23Z",
+ "channelId": "UCpHaAKu74UHvcYCi2g_PvBQ",
+ "title": "👍 ALF Marathon 👍 @ALFtvOfficial",
+ "description": "ALF streams 24/7 on https://twitch.tv/ALF More ALF @ALFtvOfficial Add ALF to your feed ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/-bgU5UTwANc/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/-bgU5UTwANc/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/-bgU5UTwANc/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Shout! Studios",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-16T06:00:23Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "ZzYbpi0L_heDHPsA4Pmn3noxnng",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "ZhlbVIaCQ40"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-13T16:53:13Z",
+ "channelId": "UCGVfFNdHrF0sfI9S4MNdaqA",
+ "title": "Transformers Generation 1: The Complete Second Season | LIVE 24/7 | Hasbro Pulse",
+ "description": "Subscribe to the Hasbro Pulse YouTube Channel: https://bit.ly/3FzcXKW Transformers Generation 1: The Complete Second ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/ZhlbVIaCQ40/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/ZhlbVIaCQ40/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/ZhlbVIaCQ40/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Hasbro Pulse",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-13T16:53:13Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "RNZrk_uxbSVlXIemw_woQeKoxJ8",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "RZHuXVpabS8"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-18T16:16:41Z",
+ "channelId": "UCFcAtoYx6rQUqB9LnJyVS6A",
+ "title": "Mr. Benenati's Science Classes Live Stream",
+ "description": "",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/RZHuXVpabS8/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/RZHuXVpabS8/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/RZHuXVpabS8/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Mr. Benenati's Science Classes",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-18T16:16:41Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "YDQWI7aT8dagsfw0q_Ye5EnvdkU",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "edspwX--bu4"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T09:23:11Z",
+ "channelId": "UCWCEYVwSqr7Epo6sSCfUgiw",
+ "title": "Iceland Volcano LIVE: Red Lava Pours Out As Volcano Erupts 7th Time In A Year | Reykjanes Peninsula",
+ "description": "Iceland's volcanic eruption, which began on Nov 20, is the seventh since December 2023. A 3 km fissure released red lava and ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/edspwX--bu4/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/edspwX--bu4/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/edspwX--bu4/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "MIRROR NOW",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T09:23:11Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "JFudjGUwaJ2uGIT16SxJqXynrZs",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "5IjtvziIeIw"
+ },
+ "snippet": {
+ "publishedAt": "2024-08-23T16:43:42Z",
+ "channelId": "UCwqusr8YDwM-3mEYTDeJHzw",
+ "title": "Republic LIVE: Result Day | Maharashtra Assembly Election | Jharkhand Assembly Election",
+ "description": "Republic LIVE: Result Day | Maharashtra Assembly Election | Jharkhand Assembly Election Results With the Maharashtra and ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/5IjtvziIeIw/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/5IjtvziIeIw/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/5IjtvziIeIw/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Republic World",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-08-23T16:43:42Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "QFHWOpDoUpnl7XAY4CmRQaxQg0g",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "iuN5UlkjGfA"
+ },
+ "snippet": {
+ "publishedAt": "2024-03-21T04:55:54Z",
+ "channelId": "UCivxnHxU07qcSc_F503fX6w",
+ "title": "Ch-05: PRABANDHAN [Social Science ]",
+ "description": "",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/iuN5UlkjGfA/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/iuN5UlkjGfA/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/iuN5UlkjGfA/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "CH 05: CEC-UGC 05: Information, Communication..",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-03-21T04:55:54Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "t4QlXNBnu2sqO6tpj1gPEwgLVWA",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "I9p_u0Voz04"
+ },
+ "snippet": {
+ "publishedAt": "2024-09-06T23:07:38Z",
+ "channelId": "UC_Kteu5qFnOQhmfcIa9VpAw",
+ "title": "Live Real-Time California Seismograph and earthquake information from Tracy, CA",
+ "description": "Live Real-Time California Seismograph and earthquake information from Tracy, CA amateur seismograph AM-RE9A7, Watch my ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/I9p_u0Voz04/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/I9p_u0Voz04/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/I9p_u0Voz04/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Tracy CA Seismograph",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-09-06T23:07:38Z"
+ }
+ }
+]
\ No newline at end of file
diff --git a/fetch.mjs b/fetch.mjs
index 579f5c5..7ac3e13 100644
--- a/fetch.mjs
+++ b/fetch.mjs
@@ -2,9 +2,10 @@ import { YouTubeFeed } from "./youtube.mjs"
const yt = new YouTubeFeed("AIzaSyAy0N613PtrIohnjsXOn3kqbRxa5M5mdRQ")
-yt.generateCollection("live -bot -lofi", "general")
-yt.generateCollection("coding programming live -bot -lofi -music", "coding")
-yt.generateCollection("live ambient music", "ambience")
+// yt.generateCollection("live -bot -lofi", "general")
+// yt.generateCollection("coding programming live -bot -lofi -music", "coding")
+// yt.generateCollection("live ambient music", "ambience")
+yt.generateCollection("live -bot science", "science")
const channelUrls = [
"https://www.youtube.com/@okbangershow",
@@ -17,4 +18,4 @@ const channelUrls = [
"https://www.youtube.com/@chrisgo",
// Add more channel URLs here
]
-yt.channelsToCollection(channelUrls, "warpcast")
+// yt.channelsToCollection(channelUrls, "warpcast")
diff --git a/index.scroll b/index.scroll
index 29c689d..3b4bed5 100644
--- a/index.scroll
+++ b/index.scroll
@@ -4,6 +4,7 @@ header.scroll
lodash.min.js
+jsonScript collections/scienceCollection.json
jsonScript collections/generalCollection.json
jsonScript collections/codingCollection.json
jsonScript collections/warpcastCollection.json
diff --git a/togger.js b/togger.js
index dac9682..6cf48a8 100644
--- a/togger.js
+++ b/togger.js
@@ -12,6 +12,7 @@ const makeDeepLink = (platform, channelName) =>
const collections = {
warpcast: warpcastCollection,
coding: codingCollection,
+ science: scienceCollection,
general: generalCollection,
ambience: ambienceCollection,
}
@@ -30,7 +31,7 @@ class Togger {
getCollection(collectionName) {
this.collectionName = collectionName
if (collections[collectionName]) return collections[collectionName]
- this.collectionName = "general"
+ this.collectionName = "science"
return generalCollection
}
@@ -196,6 +197,9 @@ class Togger {
if (!this.isPoweredOn) return
const current = this.streams[this.currentIndex]
+
+ channelName.innerHTML = `Loading ${current.deepLink}...`
+
if (current.platform === "youtube") {
this.player.loadVideoById(current.streamLink)
this.player.setVolume(100)
------------------------------------------------------------
commit e5136aaf8b73b95e609790d9cbd790e7a1402299
Author: Breck Yunits <breck7@gmail.com>
Date: Fri Nov 22 17:32:41 2024 -0800
Add collections and ambience
diff --git a/collections/ambienceCollection.json b/collections/ambienceCollection.json
new file mode 100644
index 0000000..9c075c2
--- /dev/null
+++ b/collections/ambienceCollection.json
@@ -0,0 +1,1702 @@
+[
+ {
+ "kind": "youtube#searchResult",
+ "etag": "GEEmqNyoY3xLw-XF85Kg2XqmjHs",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "S_MOd40zlYU"
+ },
+ "snippet": {
+ "publishedAt": "2024-04-02T13:50:53Z",
+ "channelId": "UCSJ4gkVC6NrvII8umztf0Ow",
+ "title": "dark ambient radio 🌃 music to escape/dream to",
+ "description": "Listen on Spotify, Apple music and more → https://fanlink.tv/Dark-Ambient | Subscribe to this channel for more dark ambient ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/S_MOd40zlYU/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/S_MOd40zlYU/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/S_MOd40zlYU/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Lofi Girl",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-04-02T13:50:53Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "qKyM8v5rhsxsWbSWz6nuFtN3Jks",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "i9Yjozs750c"
+ },
+ "snippet": {
+ "publishedAt": "2024-02-03T14:47:11Z",
+ "channelId": "UCjzHeG1KWoonmf9d5KBvSiw",
+ "title": "Sleep & Meditation Radio 🧘♂️Deep Ambient Music with Fireplace 24/7",
+ "description": "Listen to the best of Peder B. Helland's deep meditation & sleep music in this continuously updated radio station. Stream this ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/i9Yjozs750c/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/i9Yjozs750c/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/i9Yjozs750c/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Soothing Relaxation",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-02-03T14:47:11Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "L9C1XVaF9ystDBykHqSSSajRpjE",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "9UMxZofMNbA"
+ },
+ "snippet": {
+ "publishedAt": "2021-06-13T11:10:55Z",
+ "channelId": "UChs0pSaEoNLV4mevBFGaoKA",
+ "title": "Chillout Lounge - Calm & Relaxing Background Music | Study, Work, Sleep, Meditation, Chill",
+ "description": "Chillout Lounge - Relaxing Background Music | Study, Work, Sleep, Meditation, Chill Enjoy Calm & Soothing music for Relax, ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/9UMxZofMNbA/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/9UMxZofMNbA/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/9UMxZofMNbA/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "The Good Life Radio x Sensual Musique",
+ "liveBroadcastContent": "live",
+ "publishTime": "2021-06-13T11:10:55Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "w5daf09gGTtAQO8pJmfsv2t9llA",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "RrkrdYm3HPQ"
+ },
+ "snippet": {
+ "publishedAt": "2023-11-15T12:57:53Z",
+ "channelId": "UCGjd2P9By_xh0-UrGW3SaZw",
+ "title": "Blade Runner Radio",
+ "description": "HI Friends: I have compiled some of my Blade Runner ambients and try to broadcast them live. Enjoy Spotify https://n9.cl/bgf7u ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/RrkrdYm3HPQ/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/RrkrdYm3HPQ/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/RrkrdYm3HPQ/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "( LUX ) - Ambient Music",
+ "liveBroadcastContent": "live",
+ "publishTime": "2023-11-15T12:57:53Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "vEDbKasFGW6YKvcYyW2gR9UDuMw",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "ZgIApioi-jE"
+ },
+ "snippet": {
+ "publishedAt": "2023-06-05T13:15:45Z",
+ "channelId": "UCSFB7Xy5Fa1pVVKP_CajIrw",
+ "title": "🔴 Space Ambient Music Mix ✨LIVE 24/7: Ambient Cosmic Background for Sleep, Studying, Meditation",
+ "description": "Follow me on Spotify ▻ https://open.spotify.com/artist/673CUJvMJcD8uopPdhBAxi Follow me on Apple Music ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/ZgIApioi-jE/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/ZgIApioi-jE/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/ZgIApioi-jE/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Space Relax Music Channel",
+ "liveBroadcastContent": "live",
+ "publishTime": "2023-06-05T13:15:45Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "WhKTq8GBk1aE1mC_lwBrJdyUWDE",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "E5WpblyBR38"
+ },
+ "snippet": {
+ "publishedAt": "2022-02-21T19:21:45Z",
+ "channelId": "UCkFeoNSqYTa7trn75WM9tsg",
+ "title": "🔴 Space Ambient Music MIX 24/7 ● Space Scenes Deep Relaxation",
+ "description": "Relaxation Ambient Music presents ✨ Space Ambient Music MIX 24/7 ○ Space Scenes Deep Relaxation . We specially created ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/E5WpblyBR38/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/E5WpblyBR38/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/E5WpblyBR38/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Relaxation Ambient Music",
+ "liveBroadcastContent": "live",
+ "publishTime": "2022-02-21T19:21:45Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "YBSiiZkBiIMJfYC8BjkUM8WVUVk",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "2OM7adQl-YQ"
+ },
+ "snippet": {
+ "publishedAt": "2022-11-21T10:32:26Z",
+ "channelId": "UCjzHeG1KWoonmf9d5KBvSiw",
+ "title": "Beautiful Piano Radio 🎹 Relaxing Music for Sleep, Studying & Relaxation 24/7",
+ "description": "Beautiful piano music with a gorgeous turquoise waterfall scene. Listen to this playlist on Spotify, YouTube Music, Apple Music ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/2OM7adQl-YQ/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/2OM7adQl-YQ/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/2OM7adQl-YQ/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Soothing Relaxation",
+ "liveBroadcastContent": "live",
+ "publishTime": "2022-11-21T10:32:26Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "IxWEiY3hMWWkmcKCEunJ7rObZh4",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "yOuYY4AL_1U"
+ },
+ "snippet": {
+ "publishedAt": "2023-12-11T22:38:53Z",
+ "channelId": "UC9-l6tK1cID43cvFE0tDQtA",
+ "title": "FALL INTO SLEEP INSTANTLY • Relaxing Music to Reduce Anxiety and Help You Sleep • Meditation",
+ "description": "FALL INTO SLEEP INSTANTLY • Relaxing Music to Reduce Anxiety and Help You Sleep • Meditation Track information: ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/yOuYY4AL_1U/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/yOuYY4AL_1U/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/yOuYY4AL_1U/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Tranquil Relax",
+ "liveBroadcastContent": "live",
+ "publishTime": "2023-12-11T22:38:53Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "CrkNsjfCWPNXBUPrlsGLNMEXk0w",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "4HVqC4zEPDc"
+ },
+ "snippet": {
+ "publishedAt": "2023-06-26T09:09:44Z",
+ "channelId": "UCnLjr0czO5zPsJYubbrvHCw",
+ "title": "Relaxing Music to Relieve Stress, Anxiety and Depression • Mind, Body 🐬 Soothing music for nerves",
+ "description": "Relaxing Music to Relieve Stress, Anxiety and Depression • Mind, Body Soothing music for nerves Relaxing Music to Relieve ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/4HVqC4zEPDc/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/4HVqC4zEPDc/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/4HVqC4zEPDc/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Healing Soul",
+ "liveBroadcastContent": "live",
+ "publishTime": "2023-06-26T09:09:44Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "WSfbBHHGcnguhRRi-EOXCDh1Zmg",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "xJkHJFBPxqU"
+ },
+ "snippet": {
+ "publishedAt": "2022-01-21T01:30:33Z",
+ "channelId": "UC4L-dSrzbPoZcr1Av5GvwKw",
+ "title": "Deep Sleep Music, Night Ambient Sounds And Beautiful Piano Music, Cricket, Swamp Sounds at Night",
+ "description": "Music to sleep deeply and rest the mind, relaxing and calm music to sleep. To stay calm and relieve stress after a hard day at work ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/xJkHJFBPxqU/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/xJkHJFBPxqU/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/xJkHJFBPxqU/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Open Heart Music - Helios 4K",
+ "liveBroadcastContent": "live",
+ "publishTime": "2022-01-21T01:30:33Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "7P81qANo1pc7vuUy9PNjkHSpDuY",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "_bLX5WfDQfM"
+ },
+ "snippet": {
+ "publishedAt": "2024-08-29T14:20:41Z",
+ "channelId": "UCNlfGuzOAKM1sycPuM_QTHg",
+ "title": "🔴 Deep Focus 24/7 - Ambient Music For Studying, Concentration, Work And Meditation",
+ "description": "Deep Focus 24/7 - Ambient Music For Studying, Concentration, Work And Meditation Enjoy these 24/7 hours of deep focus music ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/_bLX5WfDQfM/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/_bLX5WfDQfM/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/_bLX5WfDQfM/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "4K Video Nature - Focus Music",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-08-29T14:20:41Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "tPXqtY3yxbl16gvHtS2y5q-9-Z4",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "NU96ss5pEoE"
+ },
+ "snippet": {
+ "publishedAt": "2023-10-29T20:43:22Z",
+ "channelId": "UCGjd2P9By_xh0-UrGW3SaZw",
+ "title": "Atmospheric Sci- fi Ambient Music Radio * Relaxing and Focus",
+ "description": "HI Friends: I have compiled some of my Sci Fi Cyber Soundscapes ambients and try to broadcast them live. Enjoy Spotify ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/NU96ss5pEoE/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/NU96ss5pEoE/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/NU96ss5pEoE/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "( LUX ) - Ambient Music",
+ "liveBroadcastContent": "live",
+ "publishTime": "2023-10-29T20:43:22Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "hyMlffHZO6CZs42uf86ROMnsFSU",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "vrB9wC6quaU"
+ },
+ "snippet": {
+ "publishedAt": "2024-03-26T07:22:04Z",
+ "channelId": "UClBrT0ADeJnemAyp2EbzVFw",
+ "title": "Chill out lofi music 🍀 lofi hip hop mix makes you feel positive ~ Rainy Lofi vibes for a calm night",
+ "description": "Listen on Spotify: https://spoti.fi/4dwkURj Hello everyone!~ Welcome to @LofiontheRooftop Indulge in the soothing sounds of this ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/vrB9wC6quaU/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/vrB9wC6quaU/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/vrB9wC6quaU/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Lofi on the Rooftop",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-03-26T07:22:04Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "tojTzyvnNMQNKN4hmQ2JYgI2s3A",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "TfYBaIsVzhs"
+ },
+ "snippet": {
+ "publishedAt": "2023-10-29T19:50:03Z",
+ "channelId": "UCQRc3AD2cCk_HD1LmuhMJMA",
+ "title": "Samurai Meditation and Relaxation Music",
+ "description": "Welcome to Samurai meditation and relaxation music live broadcast. Spotify https://n9.cl/7h4hc Wellcome to Emotional Music.",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/TfYBaIsVzhs/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/TfYBaIsVzhs/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/TfYBaIsVzhs/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Emotional Music",
+ "liveBroadcastContent": "live",
+ "publishTime": "2023-10-29T19:50:03Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "6bXHHnWNS0iGmyRtYKLi9sXD_BQ",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "4xDzrJKXOOY"
+ },
+ "snippet": {
+ "publishedAt": "2023-07-02T21:17:31Z",
+ "channelId": "UCSJ4gkVC6NrvII8umztf0Ow",
+ "title": "synthwave radio 🌌 beats to chill/game to",
+ "description": "Listen on Spotify, Apple music and more → https://fanlink.tv/ChillSynthwave | Subscribe to this channel for more synthwave ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/4xDzrJKXOOY/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/4xDzrJKXOOY/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/4xDzrJKXOOY/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Lofi Girl",
+ "liveBroadcastContent": "live",
+ "publishTime": "2023-07-02T21:17:31Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "C__SW8zKGJoXqJqRJ1JFaFxgJ50",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "HhqWd3Axq9Y"
+ },
+ "snippet": {
+ "publishedAt": "2023-08-11T08:04:09Z",
+ "channelId": "UCZR3-lM6Z-n5_UGHlwx_Rpw",
+ "title": "Crackling Fireplace & Smooth Jazz Instrumental 🍂 Warm Jazz Music at Cozy Fall Coffee Shop Ambience",
+ "description": "Crackling Fireplace & Smooth Jazz Instrumental Warm Jazz Music at Cozy Fall Coffee Shop Ambience Are you looking for ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/HhqWd3Axq9Y/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/HhqWd3Axq9Y/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/HhqWd3Axq9Y/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Relax Jazz Cafe",
+ "liveBroadcastContent": "live",
+ "publishTime": "2023-08-11T08:04:09Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "vRBf-layKqZQAJU4Xi6bzz6DFcI",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "MUWu45U2bMU"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-03T09:06:31Z",
+ "channelId": "UCSFB7Xy5Fa1pVVKP_CajIrw",
+ "title": "🔴 Space Ambient Music Mix ✨LIVE 24/7: Ambient Cosmic Background for Sleep, Studying, Meditation.",
+ "description": "Follow me on Spotify ▻ https://open.spotify.com/artist/673CUJvMJcD8uopPdhBAxi Follow me on Apple Music ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/MUWu45U2bMU/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/MUWu45U2bMU/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/MUWu45U2bMU/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Space Relax Music Channel",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-03T09:06:31Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "k2k6ijdtAvmaJleNOtbtx7fRDvk",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "zVh3OzdZ9SE"
+ },
+ "snippet": {
+ "publishedAt": "2024-04-25T20:40:31Z",
+ "channelId": "UCGjd2P9By_xh0-UrGW3SaZw",
+ "title": "Floyd Runner Radio ( Pink Floyd and Blade Runner Inspired Ambient Music )",
+ "description": "This is a broadcast with music inspired by Blade Runner with the addition of Pink Floyd. Something I had been wanting to do for a ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/zVh3OzdZ9SE/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/zVh3OzdZ9SE/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/zVh3OzdZ9SE/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "( LUX ) - Ambient Music",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-04-25T20:40:31Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "aBuFCrqhyNNnfU1_YNF5C17czBc",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "2Jd5XGpgScA"
+ },
+ "snippet": {
+ "publishedAt": "2024-01-03T02:30:39Z",
+ "channelId": "UC5Sl4VbJELXi9SCaWbTdXfA",
+ "title": "☕Cozy Jazz Music with Bookstore Cafe Ambience & Crackling Fireplace for Study, Relaxing or Sleeping",
+ "description": "Cozy Jazz Music with Bookstore Cafe Ambience & Crackling Fireplace for Study, Relaxing or Sleeping Give me your opinion, like, ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/2Jd5XGpgScA/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/2Jd5XGpgScA/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/2Jd5XGpgScA/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Jazz Cafe Ambience",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-01-03T02:30:39Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "Oklw1vlW1PdWN2gHpZTLhpel2IA",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "mPhl23eo69g"
+ },
+ "snippet": {
+ "publishedAt": "2023-09-19T06:44:32Z",
+ "channelId": "UCTn68irGFi8M5EdYrfWqJuQ",
+ "title": "Work & Study with Batman 🦇 24/7 Deep Cinematic Music for Instant Flow State & Productivity",
+ "description": "Work & Study with Bruce Wayne and his ambient music collection (Hans Zimmer Vibes) to achieve all of your goals and attain ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/mPhl23eo69g/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/mPhl23eo69g/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/mPhl23eo69g/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Ambient Cinematics",
+ "liveBroadcastContent": "live",
+ "publishTime": "2023-09-19T06:44:32Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "E7N68hIbP7qsdNj53xPX-pbxh3s",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "V1eqPTRAW6s"
+ },
+ "snippet": {
+ "publishedAt": "2023-11-23T22:46:14Z",
+ "channelId": "UCp4k5evFksXCvBdl6YXrWlw",
+ "title": "Drum and Bass - BEST 24/7 Beat Mix by DNB To Chill & Relax",
+ "description": "Tune into DNB RADIO for non-stop atmospheric music beats, Non stop deep & dark chillout drum funk beats by DNB Radio.",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/V1eqPTRAW6s/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/V1eqPTRAW6s/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/V1eqPTRAW6s/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "DnBRadio - Drum and Bass",
+ "liveBroadcastContent": "live",
+ "publishTime": "2023-11-23T22:46:14Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "tQ_70jkS6tPUx2I32wgvryltdkA",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "CZtJ15s0FI4"
+ },
+ "snippet": {
+ "publishedAt": "2024-02-09T05:40:31Z",
+ "channelId": "UCJ35n3ueAN0cWvQqKptu-Zg",
+ "title": "Happy Morning ~ Lakeside Coffee Shop Ambience ☕ Smooth Jazz Instrumental Music to Relax, Study, Work",
+ "description": "Happy Morning ~ Lakeside Coffee Shop Ambience ☕ Smooth Jazz Instrumental Music to Relax, Study, Work Hello, this is Smooth ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/CZtJ15s0FI4/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/CZtJ15s0FI4/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/CZtJ15s0FI4/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Smooth Jazz Music",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-02-09T05:40:31Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "zct0aRX4q-HGj25bR6XddKP3BTI",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "AEKtQW93OVg"
+ },
+ "snippet": {
+ "publishedAt": "2022-11-16T11:16:32Z",
+ "channelId": "UC5Sl4VbJELXi9SCaWbTdXfA",
+ "title": "Cozy Jazz Music & Bookstore Cafe Ambience with Relaxing Smooth Piano Jazz Music for Study, Sleeping",
+ "description": "Cozy Jazz Music & Bookstore Cafe Ambience with Relaxing Smooth Piano Jazz Music for Study, Sleeping Give me your opinion, ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/AEKtQW93OVg/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/AEKtQW93OVg/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/AEKtQW93OVg/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Jazz Cafe Ambience",
+ "liveBroadcastContent": "live",
+ "publishTime": "2022-11-16T11:16:32Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "ZQS_yWjekUIKTD2QOaCvWbEszrQ",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "XFdTycvQMQo"
+ },
+ "snippet": {
+ "publishedAt": "2023-10-27T14:26:41Z",
+ "channelId": "UCKvKjZ3l9azWz4F49q2R3tQ",
+ "title": "Rainy Day at Cozy Coffee Shop ☕ Relaxing Jazz Instrumental Music For Relax, Study, Work",
+ "description": "Listen now on Spotify: https://spoti.fi/3zsVlgX ☕ Take a break from your life for a few minutes and enjoy this soothing, ambient tune ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/XFdTycvQMQo/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/XFdTycvQMQo/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/XFdTycvQMQo/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Coffee Relaxing Jazz",
+ "liveBroadcastContent": "live",
+ "publishTime": "2023-10-27T14:26:41Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "2qhpULhce8lnpjvDAvDSU_vCUgY",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "XhEOeIzpu3o"
+ },
+ "snippet": {
+ "publishedAt": "2024-01-15T02:36:41Z",
+ "channelId": "UC5Sl4VbJELXi9SCaWbTdXfA",
+ "title": "Warm Crackling Fireplace & Cozy Instrumental Jazz Music in Coffee Shop Ambience to Work, Study,Sleep",
+ "description": "Warm Crackling Fireplace & Cozy Instrumental Jazz Music in Coffee Shop Ambience to Work, Study,Sleep Give me your opinion, ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/XhEOeIzpu3o/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/XhEOeIzpu3o/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/XhEOeIzpu3o/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Jazz Cafe Ambience",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-01-15T02:36:41Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "X7kpc-XqaHbVhyAeSdJCK4kGpDo",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "CkchxBUtXu4"
+ },
+ "snippet": {
+ "publishedAt": "2024-07-07T13:01:02Z",
+ "channelId": "UCwobzUc3z-0PrFpoRxNszXQ",
+ "title": "🔴 Relaxing Music 24/7, Stress Relief Music, Sleep Music, Meditation Music, Study, Calming Music",
+ "description": "Yellow Brick Cinema's relaxation music provides calm music for inner peace and stress relief, helping you achieve ultimate Zen.",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/CkchxBUtXu4/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/CkchxBUtXu4/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/CkchxBUtXu4/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Yellow Brick Cinema - Relaxing Music",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-07-07T13:01:02Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "daVSYSIl99sZa400CXF0iKC2QGo",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "Qtb20K6noho"
+ },
+ "snippet": {
+ "publishedAt": "2024-06-27T15:55:49Z",
+ "channelId": "UCUc8mpd7aQROHAb-KxdoGww",
+ "title": "🎵 Lost in Deep Space: The Journey | Ambient Music for relaxing in Outer Space | LIVE 24/7",
+ "description": "Floating weightless, the calm of zero-gravity envelops you, with a sense of liberation and peace slowly settling upon your mind ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/Qtb20K6noho/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/Qtb20K6noho/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/Qtb20K6noho/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "View Escape",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-06-27T15:55:49Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "auLTkDrf0Vf1NcTigGo9XGH7Jao",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "Ihm9OQWmibA"
+ },
+ "snippet": {
+ "publishedAt": "2022-11-03T20:01:28Z",
+ "channelId": "UC14ap4T608Zz_Mz4eezhIqw",
+ "title": "Deep House 🏠 · Relaxing Work Music · 24/7 Live",
+ "description": "Our favorite Deep House and Melodic Chill house music for a perfect studying, chilling, or working session. Our live radio stream ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/Ihm9OQWmibA/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/Ihm9OQWmibA/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/Ihm9OQWmibA/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "The Grand Sound",
+ "liveBroadcastContent": "live",
+ "publishTime": "2022-11-03T20:01:28Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "I43m3aryKaPAfRjADVNNzYqzDFQ",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "iKJv5LX1wlQ"
+ },
+ "snippet": {
+ "publishedAt": "2024-01-04T08:51:42Z",
+ "channelId": "UCZR3-lM6Z-n5_UGHlwx_Rpw",
+ "title": "Happy Spring Morning & Relaxing Jazz Instrumental Music at Outdoor Coffee Shop Ambience for Studying",
+ "description": "Happy Spring Morning & Relaxing Jazz Instrumental Music at Outdoor Coffee Shop Ambience for Studying 👉️ Let's ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/iKJv5LX1wlQ/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/iKJv5LX1wlQ/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/iKJv5LX1wlQ/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Relax Jazz Cafe",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-01-04T08:51:42Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "7AGZtSHYIzFv3vZ1pe7aYFCa35c",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "XXdoZuYtNoc"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-03T09:09:30Z",
+ "channelId": "UCSFB7Xy5Fa1pVVKP_CajIrw",
+ "title": "🔴 Space Ambient Music Mix ✨LIVE 24/7: Ambient Cosmic Background for Sleep, Studying, Meditation",
+ "description": "Follow me on Spotify ▻ https://open.spotify.com/artist/673CUJvMJcD8uopPdhBAxi Follow me on Apple Music ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/XXdoZuYtNoc/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/XXdoZuYtNoc/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/XXdoZuYtNoc/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Space Relax Music Channel",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-03T09:09:30Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "TftMOaFjQ47Z3tC7E4KergA_zXM",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "NRFnC7gWepE"
+ },
+ "snippet": {
+ "publishedAt": "2022-11-16T18:14:17Z",
+ "channelId": "UCb1ANUIW7arUUDI-Mwz65rw",
+ "title": "Relaxing Piano Music and Fireplace 24/7 - Sleep, Meditate, Study, Relax, Stress Relief",
+ "description": "Relaxing Piano Music and Fireplace 24/7 - Sleep, Meditate, Study, Relax, Stress Relief A FEW WORDS ABOUT OCB RELAX ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/NRFnC7gWepE/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/NRFnC7gWepE/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/NRFnC7gWepE/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "OCB Relax Music",
+ "liveBroadcastContent": "live",
+ "publishTime": "2022-11-16T18:14:17Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "cP0QZ5AduvF2Yz3eVEZpl8eSkk4",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "wH4xZ7T9kO4"
+ },
+ "snippet": {
+ "publishedAt": "2024-03-05T13:31:29Z",
+ "channelId": "UCxdvI10Mn9MfS-wlJWqB4DQ",
+ "title": "Italy Cafe | Morning Coffee Shop Ambience with Background Music & Positive Jazz for Work, Study",
+ "description": "Italy Cafe | Morning Coffee Shop Ambience with Background Music & Positive Jazz for Work, Study #jazz #cozyjazz #relaxingjazz ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/wH4xZ7T9kO4/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/wH4xZ7T9kO4/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/wH4xZ7T9kO4/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Cozy Jazz Vibes",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-03-05T13:31:29Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "WVmQX9-IUX6LMeMMIyb2D9FsTMY",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "cOhhmMe_V1k"
+ },
+ "snippet": {
+ "publishedAt": "2024-08-29T09:52:12Z",
+ "channelId": "UCZR3-lM6Z-n5_UGHlwx_Rpw",
+ "title": "Cozy Fall Coffee Shop Ambience ~ Jazz Relaxing Music 🍂 Smooth Jazz Instrumental Music to Work, Focus",
+ "description": "Cozy Fall Coffee Shop Ambience ~ Jazz Relaxing Music Smooth Jazz Instrumental Music to Work, Focus 👉️ Let's ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/cOhhmMe_V1k/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/cOhhmMe_V1k/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/cOhhmMe_V1k/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Relax Jazz Cafe",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-08-29T09:52:12Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "jZuTizb3-cZkQlZy8rrAFl2NLEQ",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "BCCr3pv0bRQ"
+ },
+ "snippet": {
+ "publishedAt": "2023-10-17T12:31:44Z",
+ "channelId": "UCO6SuIBGCEbHw0AKHlKqfww",
+ "title": "Seven Beats Music • Ibiza Chillout 24/7 Radio Stream [Balearic, Relax, Ambient, Lounge, Dreamy]",
+ "description": "Welcome to the Seven Beats 24/7 Ibiza Chillout Stream! Coffeeshop Collection Spotify Playlist: https://spoti.fi/3vxXNAM ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/BCCr3pv0bRQ/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/BCCr3pv0bRQ/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/BCCr3pv0bRQ/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Seven Beats Music",
+ "liveBroadcastContent": "live",
+ "publishTime": "2023-10-17T12:31:44Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "e9XELXuY1_ilSqay_OqBIEYqdSI",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "4khIPP--FDU"
+ },
+ "snippet": {
+ "publishedAt": "2023-01-19T08:59:48Z",
+ "channelId": "UCb1ANUIW7arUUDI-Mwz65rw",
+ "title": "Beautiful Piano Music 24/7 - Study Music, Relaxing Music, Sleep Music, Meditation Music",
+ "description": "Beautiful Piano Music 24/7 - Study Music, Relaxing Music, Sleep Music, Meditation Music A FEW WORDS ABOUT OCB RELAX ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/4khIPP--FDU/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/4khIPP--FDU/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/4khIPP--FDU/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "OCB Relax Music",
+ "liveBroadcastContent": "live",
+ "publishTime": "2023-01-19T08:59:48Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "sN7fvmR6lp3b_oS5woEJ7qscxME",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "S-dgtBFSRyA"
+ },
+ "snippet": {
+ "publishedAt": "2024-07-18T14:57:19Z",
+ "channelId": "UCJ35n3ueAN0cWvQqKptu-Zg",
+ "title": "Cozy Autumn Lakeside Porch Ambience 🍁 Relaxing Jazz Music & Warm Crackling Fireplace to Work, Study",
+ "description": "Cozy Autumn Lakeside Porch Ambience Relaxing Jazz Music & Warm Crackling Fireplace to Work,Study Hello, this is Smooth ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/S-dgtBFSRyA/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/S-dgtBFSRyA/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/S-dgtBFSRyA/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Smooth Jazz Music",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-07-18T14:57:19Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "hTam6fcbq31qoYmDDuKi2fQee60",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "UhUeTG8rAXw"
+ },
+ "snippet": {
+ "publishedAt": "2024-06-22T03:50:26Z",
+ "channelId": "UCpDqi4cjYZ0UZYr_1Odhavg",
+ "title": "Relax Your Soul and Boost Positivity ~ Deep Chill Music mix and Chill-out Ambient",
+ "description": "Hello everyone!~ Welcome to Beautiful Chill Music Mix Listen on spotify: https://spoti.fi/4cwx8IC 🏔️ In a world that often ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/UhUeTG8rAXw/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/UhUeTG8rAXw/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/UhUeTG8rAXw/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Beautiful Chill Music Mix",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-06-22T03:50:26Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "DlhH5SP8OiRRQxwMlwxkop5wuuc",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "JIS6EVIGq9A"
+ },
+ "snippet": {
+ "publishedAt": "2023-10-10T01:26:04Z",
+ "channelId": "UCy6A4u_9X_FyN3DZMLtwjUg",
+ "title": "Cozy Rain on Lakeside Ambient with Gentle Rain falling and Relaxing Fireplace to Meditation & Sleep",
+ "description": "Surely many people like me are fascinated by different environments that evoke different emotions and feelings.",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/JIS6EVIGq9A/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/JIS6EVIGq9A/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/JIS6EVIGq9A/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "The Town of Ambience",
+ "liveBroadcastContent": "live",
+ "publishTime": "2023-10-10T01:26:04Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "XFQwiUHYUqGvDNbYrfkVfgx-8EM",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "-AwqCF6f7n0"
+ },
+ "snippet": {
+ "publishedAt": "2023-09-26T01:54:08Z",
+ "channelId": "UCNlfGuzOAKM1sycPuM_QTHg",
+ "title": "🔴 Deep Focus Music To Improve Concentration - Ambient Study and Work Music to Concentrate",
+ "description": "Deep Focus Music To Improve Concentration - Ambient Study and Work Music to Concentrate Enjoy these 24/7 of deep focus ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/-AwqCF6f7n0/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/-AwqCF6f7n0/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/-AwqCF6f7n0/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "4K Video Nature - Focus Music",
+ "liveBroadcastContent": "live",
+ "publishTime": "2023-09-26T01:54:08Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "UQXih1_nFL55Vp570iKK0-Ar7YY",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "i8HTxfRF1-g"
+ },
+ "snippet": {
+ "publishedAt": "2024-09-18T21:08:11Z",
+ "channelId": "UCdi8yQBdBfn1ECu3ayH_TnA",
+ "title": "Cozy Autumn Vibes, Beautiful Relaxing Music, Peaceful Soothing Instrumental Music, By Tim Janis",
+ "description": "Cozy Autumn Vibes, Beautiful Relaxing Music, Peaceful Soothing Instrumental Music, By Tim Janis. My instrumental music can ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/i8HTxfRF1-g/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/i8HTxfRF1-g/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/i8HTxfRF1-g/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Tim Janis",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-09-18T21:08:11Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "A9AiTmlXmc0uMfh6Myi3mwmANck",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "TaBX3DdGOxc"
+ },
+ "snippet": {
+ "publishedAt": "2022-01-05T01:02:37Z",
+ "channelId": "UCUc8mpd7aQROHAb-KxdoGww",
+ "title": "Deep Space Sleeping Quarters | White and Grey Noise | Relaxing Sounds of Space Flight | LIVE",
+ "description": "You've entered the deepest realm of space on your journey to your new home across the universe. Sleep, relax, study, pray, ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/TaBX3DdGOxc/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/TaBX3DdGOxc/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/TaBX3DdGOxc/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "View Escape",
+ "liveBroadcastContent": "live",
+ "publishTime": "2022-01-05T01:02:37Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "AXQyrsvkMsVh9OghLA7zjDwryiM",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "H3PdKeFbj1Y"
+ },
+ "snippet": {
+ "publishedAt": "2022-09-27T21:51:40Z",
+ "channelId": "UCXbXfisDHV_gDjawCKTyTIw",
+ "title": "Deep Sleep In This Futuristic City View | Cosy Bed And Gentle Thunder For Sleeping | 4K",
+ "description": "Here is a Live streaming version of my futuristic bedroom view of a thundery night sky over a beautiful city view set in the distant ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/H3PdKeFbj1Y/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/H3PdKeFbj1Y/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/H3PdKeFbj1Y/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Ambient Renders",
+ "liveBroadcastContent": "live",
+ "publishTime": "2022-09-27T21:51:40Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "ET1FGlRsF7DOqJoTPuRfZqn5N14",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "O8M8h3_lZxA"
+ },
+ "snippet": {
+ "publishedAt": "2023-08-10T02:19:36Z",
+ "channelId": "UCbzMkkVmcheEy2-1ieyCsTg",
+ "title": "Fall Asleep in Under 3 MINUTES★Deep Sleep Journey★Healing of Stress, Anxiety and Depressive States",
+ "description": "Fall Asleep in Under 3 MINUTES☆Deep Sleep Journey☆Healing of Stress, Anxiety and Depressive States Channel: Weightless ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/O8M8h3_lZxA/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/O8M8h3_lZxA/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/O8M8h3_lZxA/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Weightless Mind",
+ "liveBroadcastContent": "live",
+ "publishTime": "2023-08-10T02:19:36Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "2PK7w_hG2H7BDyoZaXe9OFu0MQM",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "jfKfPfyJRdk"
+ },
+ "snippet": {
+ "publishedAt": "2022-07-12T12:12:29Z",
+ "channelId": "UCSJ4gkVC6NrvII8umztf0Ow",
+ "title": "lofi hip hop radio 📚 beats to relax/study to",
+ "description": "Listen on Spotify, Apple music and more → https://fanlink.tv/lofigirl-music | New Christmas Radio is out now!",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/jfKfPfyJRdk/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/jfKfPfyJRdk/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/jfKfPfyJRdk/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Lofi Girl",
+ "liveBroadcastContent": "live",
+ "publishTime": "2022-07-12T12:12:29Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "MVPh2x8URYtBuQrdzEB9pG6a8Ho",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "dXIyMS61B68"
+ },
+ "snippet": {
+ "publishedAt": "2021-12-27T21:17:06Z",
+ "channelId": "UCdi8yQBdBfn1ECu3ayH_TnA",
+ "title": "Beautiful Relaxing Peaceful Music, Calm Music 24/7, "Tropical Shores" By Tim Janis",
+ "description": "Beautiful Relaxing Peaceful Music, Calm Music 24/7, \"Tropical Shores\" By Tim Janis. My instrumental music can help you find ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/dXIyMS61B68/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/dXIyMS61B68/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/dXIyMS61B68/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Tim Janis",
+ "liveBroadcastContent": "live",
+ "publishTime": "2021-12-27T21:17:06Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "gm9IXfFXaJxTaEO72kHMx20yGc0",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "6uddGul0oAc"
+ },
+ "snippet": {
+ "publishedAt": "2021-03-15T09:04:33Z",
+ "channelId": "UCJhjE7wbdYAae1G25m0tHAA",
+ "title": "TOKYO Cafe: Beautiful Relaxing Jazz Piano Music for Stress Relief - Night Coffee Shop Ambience",
+ "description": "Listen Everywhere https://bgmc.lnk.to/g1qEnopG. Please Subscribe! → https://www.youtube.com/user/cafemusicbgmchannel ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/6uddGul0oAc/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/6uddGul0oAc/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/6uddGul0oAc/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Cafe Music BGM channel",
+ "liveBroadcastContent": "live",
+ "publishTime": "2021-03-15T09:04:33Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "GKQImV_CvvbmWNxGDhr7QD8yrrY",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "FtO1lxJ-RXM"
+ },
+ "snippet": {
+ "publishedAt": "2024-07-21T04:20:48Z",
+ "channelId": "UCwobzUc3z-0PrFpoRxNszXQ",
+ "title": "🔴 Sleep Music 24/7, Deep Sleep Music, Peaceful Music, Relaxing, Sleep Relaxation, Sleep Meditation",
+ "description": "Welcome to Yellow Brick Cinema's relaxing sleep music. May this video inspire deep sleep, relaxation and a calm mind as you ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/FtO1lxJ-RXM/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/FtO1lxJ-RXM/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/FtO1lxJ-RXM/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Yellow Brick Cinema - Relaxing Music",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-07-21T04:20:48Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "PhzXrtUCbRHmfYQTNX5qh_1zSE4",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "lyOhaokAPIo"
+ },
+ "snippet": {
+ "publishedAt": "2024-09-23T06:33:31Z",
+ "channelId": "UCnk33AK4xcvHRLkAcDK498A",
+ "title": "Harry Potter Music [LIVE 24/7] | Hogwarts Radio | Cosy Autumn Stream 🍂 [Muggleproof]",
+ "description": "Powered by Ohbubble - https://ohbubble.com/ | Tip the stream!: → https://bit.ly/HarryPotterStream | Artwork by Jhosep ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/lyOhaokAPIo/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/lyOhaokAPIo/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/lyOhaokAPIo/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Moving Soundcloud",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-09-23T06:33:31Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "2k0fIBvsJzJMTq6X2YIev_uRD0w",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "E-6GhfkMT3s"
+ },
+ "snippet": {
+ "publishedAt": "2024-01-07T14:05:46Z",
+ "channelId": "UCEyDPrWKqwWORC6TFTo4a-w",
+ "title": "24/7 Beautiful Calm Worship, Instrumental Worship Music No Ads, Soaking Instrumental Worship Piano",
+ "description": "Beautiful Calm Worship, Instrumental Worship Music No Ads, Soaking Instrumental Worship Piano #InstrumentalWorship ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/E-6GhfkMT3s/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/E-6GhfkMT3s/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/E-6GhfkMT3s/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Soaking Worship Music & Prayer Music",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-01-07T14:05:46Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "_M9B4pLFFxS8y7Ldyce8Vz-yckY",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "zezhSW_bwTk"
+ },
+ "snippet": {
+ "publishedAt": "2024-03-05T12:05:06Z",
+ "channelId": "UCa5OF9Vmu7Bvtb8ZsVUU34w",
+ "title": "Nighttime Sleep Jazz Music - Soft Piano Jazz Instrumental Music - 24/7 vs Relax of Background Music",
+ "description": "Nighttime Sleep Jazz Music - Soft Piano Jazz Instrumental Music - 24/7 vs Relax of Background Music If you like this video, please ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/zezhSW_bwTk/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/zezhSW_bwTk/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/zezhSW_bwTk/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Relaxing Jazz BGM",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-03-05T12:05:06Z"
+ }
+ }
+]
\ No newline at end of file
diff --git a/youtubeNow.json b/collections/codingCollection.json
similarity index 71%
rename from youtubeNow.json
rename to collections/codingCollection.json
index fcc7f21..d079003 100644
--- a/youtubeNow.json
+++ b/collections/codingCollection.json
@@ -1,4 +1,38 @@
[
+ {
+ "kind": "youtube#searchResult",
+ "etag": "A47qNZ-8pM7aGaIHqkrgZJsPtyQ",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "MXH_s0mOiSg"
+ },
+ "snippet": {
+ "publishedAt": "2023-12-22T12:49:41Z",
+ "channelId": "UCfYshLRgkyTUZqc3pLUG45A",
+ "title": "PSN / XBOX / STEAM CARD GIVEAWAY - FREE PSN CODES GIVEAWAY LIVE",
+ "description": "PSN / XBOX / STEAM CARD GIVEAWAY - FREE PSN CODES GIVEAWAY LIVE --RULES-- 1. Subscribe to my channel 2. Like this ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/MXH_s0mOiSg/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/MXH_s0mOiSg/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/MXH_s0mOiSg/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "OyunDünyasıTR",
+ "liveBroadcastContent": "live",
+ "publishTime": "2023-12-22T12:49:41Z"
+ }
+ },
{
"kind": "youtube#searchResult",
"etag": "-sIJ6KnezTyA5V5OUhpUB1LxVEA",
@@ -35,104 +69,104 @@
},
{
"kind": "youtube#searchResult",
- "etag": "A47qNZ-8pM7aGaIHqkrgZJsPtyQ",
+ "etag": "rvKBnACHYcj8_0Iu0jr2k-eBxIc",
"id": {
"kind": "youtube#video",
- "videoId": "MXH_s0mOiSg"
+ "videoId": "whRX3CJ5ZCk"
},
"snippet": {
- "publishedAt": "2023-12-22T12:49:41Z",
- "channelId": "UCfYshLRgkyTUZqc3pLUG45A",
- "title": "PSN / XBOX / STEAM CARD GIVEAWAY - FREE PSN CODES GIVEAWAY LIVE",
- "description": "PSN / XBOX / STEAM CARD GIVEAWAY - FREE PSN CODES GIVEAWAY LIVE --RULES-- 1. Subscribe to my channel 2. Like this ...",
+ "publishedAt": "2024-08-26T06:36:48Z",
+ "channelId": "UC9gGtOmBQQd1NOXVcnadVZQ",
+ "title": "FREE FIRE LIVE 10,000 DIAMOND GIVEAWAY | TEAM CODE GIVEAWAY #freefirelive #lokeshgamer #gyangaming",
+ "description": "1.Garena Free Fire Indonesia Live 2.Garena Free Fire Brazil Live 3.Garena Free Fire Brasil Live 4.Garena Free Fire India Live 5.",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/MXH_s0mOiSg/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/whRX3CJ5ZCk/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/MXH_s0mOiSg/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/whRX3CJ5ZCk/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/MXH_s0mOiSg/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/whRX3CJ5ZCk/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "OyunDünyasıTR",
+ "channelTitle": "Pikachu FF",
"liveBroadcastContent": "live",
- "publishTime": "2023-12-22T12:49:41Z"
+ "publishTime": "2024-08-26T06:36:48Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "qVMN9ZEcRvuKk-cKqlYo5dmnw_s",
+ "etag": "Sep9WvfhRa32-T3w1Zv7iL8OuMM",
"id": {
"kind": "youtube#video",
- "videoId": "xbe2UMVofAU"
+ "videoId": "3Yu1yymncOs"
},
"snippet": {
- "publishedAt": "2024-11-05T05:51:08Z",
- "channelId": "UCRWWzoOrQLPGJLKs1gAf2yA",
- "title": "FREE FIRE LIVE CUSTOM ROOM GIVEAWAY FF LIVE TEAM CODE GIVEAWAY|#freefirelive #giveaway #nawabislive",
- "description": "YOUR SEARCH TERMS 1.ff live redeem code 2.ff giveaway diomond 3.ff giveaway live custom winner 4.ff live giveaway custom ...",
+ "publishedAt": "2024-10-10T10:14:28Z",
+ "channelId": "UC2oaqitUiwcbYPnh9zLR50g",
+ "title": "🔴LIVE : DARSHAN - VADTALDHAM 01",
+ "description": "Website:- https://www.vadtalmandir.org Youtube :- https://www.youtube.com/vadtalmandir Facebook ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/xbe2UMVofAU/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/3Yu1yymncOs/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/xbe2UMVofAU/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/3Yu1yymncOs/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/xbe2UMVofAU/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/3Yu1yymncOs/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "NAWABISLIVE",
+ "channelTitle": "VADTAL MANDIR",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-05T05:51:08Z"
+ "publishTime": "2024-10-10T10:14:28Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "rvKBnACHYcj8_0Iu0jr2k-eBxIc",
+ "etag": "qVMN9ZEcRvuKk-cKqlYo5dmnw_s",
"id": {
"kind": "youtube#video",
- "videoId": "whRX3CJ5ZCk"
+ "videoId": "xbe2UMVofAU"
},
"snippet": {
- "publishedAt": "2024-08-26T06:36:48Z",
- "channelId": "UC9gGtOmBQQd1NOXVcnadVZQ",
- "title": "FREE FIRE LIVE 10,000 DIAMOND GIVEAWAY | TEAM CODE GIVEAWAY #freefirelive #lokeshgamer #gyangaming",
- "description": "1.Garena Free Fire Indonesia Live 2.Garena Free Fire Brazil Live 3.Garena Free Fire Brasil Live 4.Garena Free Fire India Live 5.",
+ "publishedAt": "2024-11-05T05:51:08Z",
+ "channelId": "UCRWWzoOrQLPGJLKs1gAf2yA",
+ "title": "FREE FIRE LIVE CUSTOM ROOM GIVEAWAY FF LIVE TEAM CODE GIVEAWAY|#freefirelive #giveaway #nawabislive",
+ "description": "YOUR SEARCH TERMS 1.ff live redeem code 2.ff giveaway diomond 3.ff giveaway live custom winner 4.ff live giveaway custom ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/whRX3CJ5ZCk/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/xbe2UMVofAU/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/whRX3CJ5ZCk/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/xbe2UMVofAU/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/whRX3CJ5ZCk/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/xbe2UMVofAU/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Pikachu FF",
+ "channelTitle": "NAWABISLIVE",
"liveBroadcastContent": "live",
- "publishTime": "2024-08-26T06:36:48Z"
+ "publishTime": "2024-11-05T05:51:08Z"
}
},
{
@@ -171,36 +205,36 @@
},
{
"kind": "youtube#searchResult",
- "etag": "dSRsMoSUIY593RzFpUYRLyAj13Q",
+ "etag": "l13UCu-zsFHAyTFvLPcl8I89j4I",
"id": {
"kind": "youtube#video",
- "videoId": "dUs4JqnWixw"
+ "videoId": "a0EwGJwicXc"
},
"snippet": {
- "publishedAt": "2024-10-21T13:09:37Z",
- "channelId": "UCU31-9qcY1RDuMad67dbuhw",
- "title": "HENFLIX - LIVE Chickens - Feed the chickens online!",
- "description": "Please LIKE & SHARE our highlights videos and SUBSCRIBE to our channel, so you won't miss anything. You can find all of our ...",
+ "publishedAt": "2024-08-12T15:46:32Z",
+ "channelId": "UCwKS2U-DwjPZZvM6mSXPKgA",
+ "title": "بث مباشر | قناة المغاربية Almagharibia TV Live Stream",
+ "description": "LIVE تابع البث المباشر لقناة المغاربية بث مباشر | قناة المغاربية Almagharibia TV Live Stream --------------- تعمل ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/dUs4JqnWixw/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/a0EwGJwicXc/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/dUs4JqnWixw/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/a0EwGJwicXc/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/dUs4JqnWixw/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/a0EwGJwicXc/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Madarles - Live Bird Cams",
+ "channelTitle": "Almagharibia TV قناة المغاربية",
"liveBroadcastContent": "live",
- "publishTime": "2024-10-21T13:09:37Z"
+ "publishTime": "2024-08-12T15:46:32Z"
}
},
{
@@ -237,6 +271,74 @@
"publishTime": "2024-08-20T17:19:28Z"
}
},
+ {
+ "kind": "youtube#searchResult",
+ "etag": "0ufO0GZ5XhGZS90hn_qaS2Rfzyw",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "SlpTSiNv-m4"
+ },
+ "snippet": {
+ "publishedAt": "2024-01-23T14:10:44Z",
+ "channelId": "UC_vFLohxs5PkAxlk7Y6jEtw",
+ "title": "LIVE: ABC7 Chicago Eyewitness News",
+ "description": "Watch ABC7 Chicago for live news and updates on what's happening in your community. Click the subscribe button to be notified ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/SlpTSiNv-m4/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/SlpTSiNv-m4/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/SlpTSiNv-m4/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "ABC 7 Chicago",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-01-23T14:10:44Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "dXUBybrdObdgt7uMIsFC94eB38o",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "yMxD3gdeXmk"
+ },
+ "snippet": {
+ "publishedAt": "2023-04-06T16:29:25Z",
+ "channelId": "UCKAtPxfE2RAHSCwDABMMeAg",
+ "title": "Jasna Góra Klasztor Ojców Paulinów – transmisja na żywo, ON-LINE, msza święta na żywo",
+ "description": "Wspomóż transmisje z Jasnej Góry wpłacając dobrowolną kwotę przez TPay lub PayPal: https://tpay.jasnagora.pl/ ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/yMxD3gdeXmk/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/yMxD3gdeXmk/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/yMxD3gdeXmk/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Jasna Góra Klasztor Ojców Paulinów",
+ "liveBroadcastContent": "live",
+ "publishTime": "2023-04-06T16:29:25Z"
+ }
+ },
{
"kind": "youtube#searchResult",
"etag": "rn9joLSJ6-6C9wft2QrLhYnDiq8",
@@ -273,36 +375,104 @@
},
{
"kind": "youtube#searchResult",
- "etag": "wqDjx4r7ri8wdbR1n-YqMn1t8_g",
+ "etag": "dSRsMoSUIY593RzFpUYRLyAj13Q",
"id": {
"kind": "youtube#video",
- "videoId": "cGIM7WWPWcY"
+ "videoId": "dUs4JqnWixw"
},
"snippet": {
- "publishedAt": "2024-06-12T18:29:54Z",
- "channelId": "UCJBVNt_BTTl2v4qtLScyxpw",
- "title": "News On 6 NOW",
- "description": "Welcome to the News On 6 NOW on YouTube. Join us here for continuous coverage of breaking weather events in Tulsa and the ...",
+ "publishedAt": "2024-10-21T13:09:37Z",
+ "channelId": "UCU31-9qcY1RDuMad67dbuhw",
+ "title": "HENFLIX - LIVE Chickens - Feed the chickens online!",
+ "description": "Please LIKE & SHARE our highlights videos and SUBSCRIBE to our channel, so you won't miss anything. You can find all of our ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/cGIM7WWPWcY/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/dUs4JqnWixw/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/cGIM7WWPWcY/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/dUs4JqnWixw/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/cGIM7WWPWcY/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/dUs4JqnWixw/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "News On 6/KOTV",
+ "channelTitle": "Madarles - Live Bird Cams",
"liveBroadcastContent": "live",
- "publishTime": "2024-06-12T18:29:54Z"
+ "publishTime": "2024-10-21T13:09:37Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "z3V-2q-MBbHYqrt49hWAADf1Sno",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "XcftFX_Cwy4"
+ },
+ "snippet": {
+ "publishedAt": "2021-01-19T12:35:11Z",
+ "channelId": "UCagckRRHeGkG7iwPl91hUpg",
+ "title": "Bud og Hustadvika Live",
+ "description": "",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/XcftFX_Cwy4/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/XcftFX_Cwy4/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/XcftFX_Cwy4/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Live Norway",
+ "liveBroadcastContent": "live",
+ "publishTime": "2021-01-19T12:35:11Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "a4OUUDAsUP2NRrDn3SMAdT0dL6c",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "bn1yqLI9U3Q"
+ },
+ "snippet": {
+ "publishedAt": "2024-06-26T13:17:39Z",
+ "channelId": "UCP_T_GqYquLmsIpmDpJvULw",
+ "title": "Shop LC LIVE",
+ "description": "Thanks for watching Shop LC Live, where our purpose is Delivering Joy 24/7/365! Shop LC is your home for amazing jewelry, ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/bn1yqLI9U3Q/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/bn1yqLI9U3Q/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/bn1yqLI9U3Q/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Shop LC",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-06-26T13:17:39Z"
}
},
{
@@ -375,36 +545,36 @@
},
{
"kind": "youtube#searchResult",
- "etag": "e1ysaORI_-GVF5h3LdGHgv2JFG0",
+ "etag": "wqDjx4r7ri8wdbR1n-YqMn1t8_g",
"id": {
"kind": "youtube#video",
- "videoId": "tqyr2awdtE4"
+ "videoId": "cGIM7WWPWcY"
},
"snippet": {
- "publishedAt": "2024-06-12T21:11:08Z",
- "channelId": "UCaqEHP76q9TblVUO3sHFSQQ",
- "title": "LIVE: Watch Very Pennsylvania by WGAL NOW! Lancaster news, weather and more.",
- "description": "Now Playing: - 30 Min Documentaries 30 Min Documentaries Upcoming: - Crimes, Cons and Capers: The Oddest Cases of Family ...",
+ "publishedAt": "2024-06-12T18:29:54Z",
+ "channelId": "UCJBVNt_BTTl2v4qtLScyxpw",
+ "title": "News On 6 NOW",
+ "description": "Welcome to the News On 6 NOW on YouTube. Join us here for continuous coverage of breaking weather events in Tulsa and the ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/tqyr2awdtE4/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/cGIM7WWPWcY/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/tqyr2awdtE4/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/cGIM7WWPWcY/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/tqyr2awdtE4/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/cGIM7WWPWcY/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "wgaltv",
+ "channelTitle": "News On 6/KOTV",
"liveBroadcastContent": "live",
- "publishTime": "2024-06-12T21:11:08Z"
+ "publishTime": "2024-06-12T18:29:54Z"
}
},
{
@@ -443,70 +613,70 @@
},
{
"kind": "youtube#searchResult",
- "etag": "2H9IR7tC13ELK_4xvCDAkZkZ23k",
+ "etag": "lXWUm3ydgo5KXgfrwVdvp9qk1PE",
"id": {
"kind": "youtube#video",
- "videoId": "FaXe7LL5VWU"
+ "videoId": "CC0Of4wMwnk"
},
"snippet": {
- "publishedAt": "2018-08-03T00:44:44Z",
- "channelId": "UCzV3Xt_qXi8KaaBR58q-qFg",
- "title": "24/7 Final Fantasy Community Stream - Walkthroughs By Dansg08 - Final Fantasy & Chill Since 2018",
- "description": "Currently Playing FFVII Rebirth - https://youtu.be/Q3Wywq-gCcE ▻Streaming Final Fantasy all day every day, since 2018 ▻Help ...",
+ "publishedAt": "2024-08-03T06:52:59Z",
+ "channelId": "UCpzi8BbsXCUoSlfbTBDMRKA",
+ "title": "Medjugorje LIVE 24/7 - St. James Church - Crkva sv. Jakova",
+ "description": "medjugorje #medjugorjelive #queenofpeace #church #stjames #gospintrg #svjakov #crkvasvjakova #medjugorjeenvivo Dear ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/FaXe7LL5VWU/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/CC0Of4wMwnk/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/FaXe7LL5VWU/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/CC0Of4wMwnk/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/FaXe7LL5VWU/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/CC0Of4wMwnk/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Dansg08",
+ "channelTitle": "Medjugorje Today Live",
"liveBroadcastContent": "live",
- "publishTime": "2018-08-03T00:44:44Z"
+ "publishTime": "2024-08-03T06:52:59Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "lXWUm3ydgo5KXgfrwVdvp9qk1PE",
+ "etag": "oQ-8JtTGUBGwqcEtdSKHwwoX5u4",
"id": {
"kind": "youtube#video",
- "videoId": "CC0Of4wMwnk"
+ "videoId": "CYdUKfJAYNo"
},
"snippet": {
- "publishedAt": "2024-08-03T06:52:59Z",
- "channelId": "UCpzi8BbsXCUoSlfbTBDMRKA",
- "title": "Medjugorje LIVE 24/7 - St. James Church - Crkva sv. Jakova",
- "description": "medjugorje #medjugorjelive #queenofpeace #church #stjames #gospintrg #svjakov #crkvasvjakova #medjugorjeenvivo Dear ...",
+ "publishedAt": "2024-07-21T00:36:38Z",
+ "channelId": "UC3ACLDxuy75577-GDItIgNA",
+ "title": "LIVE HORA CERTA 24/7 | RELÓGIO AO VIVO UTC-3 (HORÁRIO DE BRASÍLIA) HORA OFICIAL DE BRASÍLIA Ao Vivo",
+ "description": "LIVE HORA CERTA 24/7 | RELÓGIO AO VIVO UTC-3 (HORÁRIO DE BRASÍLIA) HORA OFICIAL DE BRASÍLIA Ao Vivo \"HORA ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/CC0Of4wMwnk/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/CYdUKfJAYNo/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/CC0Of4wMwnk/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/CYdUKfJAYNo/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/CC0Of4wMwnk/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/CYdUKfJAYNo/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Medjugorje Today Live",
+ "channelTitle": "Canal Sr. Vaquinha",
"liveBroadcastContent": "live",
- "publishTime": "2024-08-03T06:52:59Z"
+ "publishTime": "2024-07-21T00:36:38Z"
}
},
{
@@ -543,6 +713,108 @@
"publishTime": "2022-07-26T01:28:54Z"
}
},
+ {
+ "kind": "youtube#searchResult",
+ "etag": "ejVOHZfSKsJH-4X3Zto5wkwuIy4",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "sdbSN8kpu68"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T15:50:08Z",
+ "channelId": "UCKt7TllYnUsCkocpzeX7Tfw",
+ "title": "World Today: Quick Take On #globalnews | #trump #putin #ukraine #modi #jaishankar #atacms #russia",
+ "description": "A quick round-up of global developments, only on StratNews Global ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/sdbSN8kpu68/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/sdbSN8kpu68/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/sdbSN8kpu68/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "StratNewsGlobal",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T15:50:08Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "di6890Kml9D1-KXy5FmEPJk71qg",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "SsPEnGjk-SU"
+ },
+ "snippet": {
+ "publishedAt": "2022-09-27T01:14:36Z",
+ "channelId": "UCw8RanrPpHhB42ffMvOtTJw",
+ "title": "Detroit Lakes Cam LIVE NOW | BNSF Staples Sub | @NTR-OTC | MP 210.1",
+ "description": "Live BNSF Staples Sub | Detroit Lakes Live Train Cam | Northern Transcon Railcams | MP 210.1 Welcome to our premier Detroit ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/SsPEnGjk-SU/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/SsPEnGjk-SU/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/SsPEnGjk-SU/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Northern Transcon Railcams - Otter Tail Channel",
+ "liveBroadcastContent": "live",
+ "publishTime": "2022-09-27T01:14:36Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "5rQsqUW2X37zRXlHX6blNQ0P-1A",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "rs2be3mqryo"
+ },
+ "snippet": {
+ "publishedAt": "2023-01-06T12:14:57Z",
+ "channelId": "UCXj6ROnZkzqgq6eYeoflO6A",
+ "title": "www.ultravisionconsult.com",
+ "description": "",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/rs2be3mqryo/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/rs2be3mqryo/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/rs2be3mqryo/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "ULTRAVISION CONSULT",
+ "liveBroadcastContent": "live",
+ "publishTime": "2023-01-06T12:14:57Z"
+ }
+ },
{
"kind": "youtube#searchResult",
"etag": "TJbTqIJ5ghkXqW8mQPvqMWP1fjA",
@@ -645,40 +917,6 @@
"publishTime": "2022-10-19T19:49:00Z"
}
},
- {
- "kind": "youtube#searchResult",
- "etag": "v2kksF2Ik9UhLJab8yH6JsmBwOQ",
- "id": {
- "kind": "youtube#video",
- "videoId": "5xtnJdX1J4s"
- },
- "snippet": {
- "publishedAt": "2024-11-22T19:10:01Z",
- "channelId": "UCnEhc40D1Yg4Wu7aRdaIh2w",
- "title": "🔴 Fortnite Live! Playing with Viewers! Kit Returns! #fortnitelive #fortniteremix",
- "description": "Become a LEGEND on my channel! https://www.youtube.com/@BarnOwlLegend/membership Discord ...",
- "thumbnails": {
- "default": {
- "url": "https://i.ytimg.com/vi/5xtnJdX1J4s/default_live.jpg",
- "width": 120,
- "height": 90
- },
- "medium": {
- "url": "https://i.ytimg.com/vi/5xtnJdX1J4s/mqdefault_live.jpg",
- "width": 320,
- "height": 180
- },
- "high": {
- "url": "https://i.ytimg.com/vi/5xtnJdX1J4s/hqdefault_live.jpg",
- "width": 480,
- "height": 360
- }
- },
- "channelTitle": "BarnOwlLegend",
- "liveBroadcastContent": "live",
- "publishTime": "2024-11-22T19:10:01Z"
- }
- },
{
"kind": "youtube#searchResult",
"etag": "WX_WFRqW8N5h6mg3GGkKhxuEH8k",
diff --git a/collections/generalCollection.json b/collections/generalCollection.json
new file mode 100644
index 0000000..57767b8
--- /dev/null
+++ b/collections/generalCollection.json
@@ -0,0 +1,1702 @@
+[
+ {
+ "kind": "youtube#searchResult",
+ "etag": "ajafOwHKcMmL2dpwMVWv4WrOuyc",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "fKXx3xTPA8Q"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T05:42:32Z",
+ "channelId": "UCckHqySbfy5FcPP6MD_S-Yg",
+ "title": "LIVE | Putin's Emergency Address To Nation After Hypersonic Missile Attack On Ukraine | Watch",
+ "description": "Russian President Vladimir Putin declared on Thursday that Moscow has the right to target military facilities in countries whose ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/fKXx3xTPA8Q/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/fKXx3xTPA8Q/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/fKXx3xTPA8Q/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Times Of India",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T05:42:32Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "Q_0I_Rl7hlxfERL3NGuz7N-uX3A",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "gCtaDbjfKTU"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-23T00:09:11Z",
+ "channelId": "UCttspZesZIDEwwpVIgoZtWQ",
+ "title": "Election Results Tally Live: चुनाव नतीजे UP By-Election, Maharashtra, Jharkhand Election Results",
+ "description": "Election Results Tally Live: चुनाव नतीजे UP By-Election, Maharashtra - Jharkhand Election Results ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/gCtaDbjfKTU/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/gCtaDbjfKTU/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/gCtaDbjfKTU/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "IndiaTV",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-23T00:09:11Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "79CWa9gKFNDnUN8bCqkRuDaR-v8",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "YukkGAlK7FM"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-21T18:43:39Z",
+ "channelId": "UCckHqySbfy5FcPP6MD_S-Yg",
+ "title": "LIVE I Putin Address In English; Furious Putin's Direct Attack On U.S, UK I Massive Escalation",
+ "description": "LIVE: Putin's first response after Russia hit Ukraine with new new hypersonic ballistic missiles. In a televised address, the Russian ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/YukkGAlK7FM/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/YukkGAlK7FM/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/YukkGAlK7FM/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Times Of India",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-21T18:43:39Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "9fKyaAcl8JzBSWrwTCxOuM2gbbE",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "wqki1uHAong"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T11:28:50Z",
+ "channelId": "UCef1-8eOpJgud7szVPlZQAQ",
+ "title": "LIVE Sean Diddy Combs Bail Hearing | Sean Diddy Combs Court Hearing | Sean Diddy Combs Bail Appeal",
+ "description": "LIVE Sean Diddy Combs Bail Hearing | Sean Diddy Combs Court Hearing | Sean Diddy Combs Bail Appeal | N18G Sean \"Diddy\" ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/wqki1uHAong/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/wqki1uHAong/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/wqki1uHAong/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "CNN-News18",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T11:28:50Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "vep67z_oxOhTAg5mVmWvcJmzSNE",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "z6UARRAtgok"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T11:15:28Z",
+ "channelId": "UChftTVI0QJmyXkajQYt2tiQ",
+ "title": "Live: NASA Astronauts Butch Wilmore and Suni Williams News Conference From Space Station | N18G",
+ "description": "Live from the International Space Station, NASA astronauts Butch Wilmore and Suni Williams discuss their ongoing mission and ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/z6UARRAtgok/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/z6UARRAtgok/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/z6UARRAtgok/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "moneycontrol",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T11:15:28Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "4Z0JGWTS8yk2QKMLej2z9dknxNE",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "d_-o5sp60AI"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T23:58:04Z",
+ "channelId": "UCIvaYmXn910QMdemBG3v1pQ",
+ "title": "Aaj Ki Taaza Khabar Live: Top 100 News Today | PM Modi l Yogi | Maharashtra Jharkhand Election Polls",
+ "description": "Aaj Ki Taaza Khabar Live: Top 100 News Today | PM Modi l Yogi | Maharashtra Jharkhand Election Polls #breakingnews ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/d_-o5sp60AI/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/d_-o5sp60AI/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/d_-o5sp60AI/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Zee News",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T23:58:04Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "4iJdY3Trz05NS5DLCTYSN72LDaI",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "KIt9mWhtRoU"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T10:50:30Z",
+ "channelId": "UCmRbHAgG2k2vDUvb3xsEunQ",
+ "title": "LIVE | Zepto Raises $350 Million In Third Funding Round This Year | Zepto CEO Interview | Exclusive",
+ "description": "Zepto raises $350 million in the largest 100% Indian fund raise for a private company. Speaking to Shereen Bhan, CEO Aadit ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/KIt9mWhtRoU/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/KIt9mWhtRoU/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/KIt9mWhtRoU/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "CNBC-TV18",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T10:50:30Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "tCR-kp-04xcjVCOOsyDj6Gl5TZk",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "9j7xXlf_Lno"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T11:45:47Z",
+ "channelId": "UC531MlZA5LUbeGwEN_zcppw",
+ "title": "live results Jharkhand : झारखंड चुनाव के सबसे तेज नतीजे | Jharkhand Election 2024 results Live",
+ "description": "live results Jharkhand : झारखंड चुनाव के सबसे तेज नतीजे | Jharkhand Election 2024 results Live ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/9j7xXlf_Lno/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/9j7xXlf_Lno/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/9j7xXlf_Lno/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "News18 Bihar Jharkhand",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T11:45:47Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "Wq7lYmGkDLL_PU42imk1nTuIyuo",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "ut5K7LSqrNU"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T23:53:17Z",
+ "channelId": "UCttspZesZIDEwwpVIgoZtWQ",
+ "title": "Maharashtra Assembly Election Results LIVE: महाराष्ट्र चुनाव में वोटों की गिनती शुरू | MVA",
+ "description": "Counting of votes for the Maharashtra Assembly elections will begin at 8 am on Saturday. The results of the Maharashtra ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/ut5K7LSqrNU/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/ut5K7LSqrNU/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/ut5K7LSqrNU/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "IndiaTV",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T23:53:17Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "q2xXETpkf0sDYecHFyU71UlGp38",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "Pwg0aNcNSmo"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-20T11:31:24Z",
+ "channelId": "UC2MHTOXktfTK26aDKyQs3cQ",
+ "title": "🔴 LIVE | West Indies v Bangladesh | 1st Test | Day 1",
+ "description": "Watch West Indies v Bangladesh LIVE in the Test Series. This is the official channel for the West Indies cricket team, providing all ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/Pwg0aNcNSmo/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/Pwg0aNcNSmo/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/Pwg0aNcNSmo/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Windies Cricket",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-20T11:31:24Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "sAndryIlxB388hcBFNmq-l86DPA",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "HRKMFuEOZPA"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T14:39:58Z",
+ "channelId": "UCttspZesZIDEwwpVIgoZtWQ",
+ "title": "UP By Election Final Survey LIVE: नए EXIT POLL में मुस्लिमों का बड़ा खेल, चौंक उठे अखिलेश! | BJP",
+ "description": "UP By Election Final Survey LIVE: नए EXIT POLL में मुस्लिमों का बड़ा खेल, चौंक उठे ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/HRKMFuEOZPA/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/HRKMFuEOZPA/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/HRKMFuEOZPA/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "IndiaTV",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T14:39:58Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "T9-V2BH3EQO7n1yfSuL3HSjjZbc",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "0Ds4Yo30vgw"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-21T17:07:14Z",
+ "channelId": "UCef1-8eOpJgud7szVPlZQAQ",
+ "title": "LIVE: US President Elect Donald Trump Made Explosive Announcements For His 'Controversial' Cabinet",
+ "description": "Trump Speech LIVE | Donald Trump's Big Decisive Announcement | US Elections 2024 Latest News | N18G Former U.S. ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/0Ds4Yo30vgw/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/0Ds4Yo30vgw/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/0Ds4Yo30vgw/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "CNN-News18",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-21T17:07:14Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "7qmrFtttI0albAO63IvruWDUFM0",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "3vTdo1vSe-s"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T05:07:02Z",
+ "channelId": "UCckHqySbfy5FcPP6MD_S-Yg",
+ "title": "LIVE | Furious Putin Reaches Out To Trump With Ukraine Plan; 'Russia Won't Compromise...'",
+ "description": "A report by Reuters claimed that Russian President Vladimir Putin is ready to meet U.S. President-elect Donald Trump across the ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/3vTdo1vSe-s/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/3vTdo1vSe-s/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/3vTdo1vSe-s/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Times Of India",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T05:07:02Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "nHJpJgSnxmdYTp4SNkFUBCBytRs",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "Rfh7bx6-yrk"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T15:03:25Z",
+ "channelId": "UCH7nv1A9xIrAifZJNvt7cgA",
+ "title": "Thane Election Result LIVE | Maharashtra Election Result LIVE 2024 | ABP Majha | Marathi News LIVE",
+ "description": "abpमाझा #abpmajhalive #MaharashtraResult #maharashtravidhansabha #MaharashtraAssemblyElectionResult ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/Rfh7bx6-yrk/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/Rfh7bx6-yrk/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/Rfh7bx6-yrk/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "ABP MAJHA",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T15:03:25Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "E4Wz8Bww_5t_5b99CLjn6-kCrn4",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "JgSqPHnNtqI"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T17:13:36Z",
+ "channelId": "UCm7lHFkt2yB_WzL67aruVBQ",
+ "title": "Vladimir Putin LIVE | Putin Speech LIVE | Warning To West | Russia-Ukraine War News | USA | NATO",
+ "description": "Watch Vladimir Putin's critical address as tensions escalate following Russia's test of the new Oreshnik hypersonic missile in ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/JgSqPHnNtqI/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/JgSqPHnNtqI/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/JgSqPHnNtqI/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Hindustan Times",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T17:13:36Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "vo18j5jmN9rXcyGbRyGZOpQD0J0",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "M05VUAFYVCo"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T14:25:58Z",
+ "channelId": "UCIvaYmXn910QMdemBG3v1pQ",
+ "title": "Uddhav Thackeray Big Decision LIVE Updates : उद्धव ठाकरे ने खोल दिए अपने पत्ते, फंस गई कांग्रेस!",
+ "description": "Uddhav Thackeray Big Decision LIVE Updates : उद्धव ठाकरे ने खोल दिए अपने पत्ते, फंस गई ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/M05VUAFYVCo/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/M05VUAFYVCo/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/M05VUAFYVCo/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Zee News",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T14:25:58Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "6XkxVJR7klDgle5OtgN_ObsAxP8",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "Kf0X6Pw41p8"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T02:13:19Z",
+ "channelId": "UCckHqySbfy5FcPP6MD_S-Yg",
+ "title": "LIVE | Putin's 'World War' Speech In English; 'America Cannot Stop Our Missiles...' | Watch",
+ "description": "Russian President Vladimir Putin declared on Thursday that Moscow has the right to target military facilities in countries whose ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/Kf0X6Pw41p8/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/Kf0X6Pw41p8/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/Kf0X6Pw41p8/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Times Of India",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T02:13:19Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "zQ6nPVD_53wQ8OkQ77AmTLsVH-U",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "9h7jp0rUXno"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T16:35:17Z",
+ "channelId": "UCXIihEp_5LoTJ0jUoa2JaVw",
+ "title": "Nov 23rd, Morning Prayers #online ఉదయకాల ప్రార్థన - #live |P.J.Stephen Paul",
+ "description": "Nov 23rd, Morning Prayer #online ఉదయకాల ప్రార్థన #live |P.J.Stephen Paul| #dailybread Zoom I.D ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/9h7jp0rUXno/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/9h7jp0rUXno/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/9h7jp0rUXno/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "P. J. STEPHEN PAUL",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T16:35:17Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "O8GRfPHycdavjHHmNmZRHra08p4",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "nLBvDgkens0"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T14:04:10Z",
+ "channelId": "UCRWFSbif-RFENbBrSiez1DA",
+ "title": "Sandeep Chaudhary LIVE : अमेरिका में 'बेईमानी',फंस गए अदाणी? । Gautam Adani Case । Rahul Gandhi",
+ "description": "sandeepchaudhary #gautamadani #fraud #bribery #adani #adanigroup #adanigroupstocks #rahulgandhi #narendramodi #bjp ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/nLBvDgkens0/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/nLBvDgkens0/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/nLBvDgkens0/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "ABP NEWS",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T14:04:10Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "4GOqdJSNIjTwP1akFYkSJaTd2uw",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "wY8yYvq0wyQ"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T18:05:36Z",
+ "channelId": "UCVR94saY6YnNgaQtvLBcS0w",
+ "title": "BedWars LIVE - If we win, I giveaway a kit",
+ "description": "Join me for some BedWars games.",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/wY8yYvq0wyQ/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/wY8yYvq0wyQ/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/wY8yYvq0wyQ/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "DV Plays",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T18:05:36Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "LhhxV-S1YbyDyxIx4ZnjyXif4e8",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "4vdLmJ_7III"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T15:12:17Z",
+ "channelId": "UCrcpw88HvKJ0skdsHniCJtQ",
+ "title": "Parali Ground Report LIVE | Dhananjay Munde | धनुभाऊंचा गेम, पंकजांची जादू फेल? | Manoj Jarange",
+ "description": "The result of the assembly is just a few hours away. After the result, the process of establishing the government will speed up.",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/4vdLmJ_7III/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/4vdLmJ_7III/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/4vdLmJ_7III/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "News18 Lokmat",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T15:12:17Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "Yz8x6C8uP9wVDX-fE9OZSrjWcsw",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "evLVisM6H8Q"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T03:42:29Z",
+ "channelId": "UCm7lHFkt2yB_WzL67aruVBQ",
+ "title": "Iceland Volcano LIVE | Volcano Erupts Again in Iceland, Seventh Eruption This Year | Reykjavik",
+ "description": "Iceland Volcano | Iceland Volcano Live News | Volcano Live News | Reykjavik Valcano A volcano near Reykjavik, Iceland, has ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/evLVisM6H8Q/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/evLVisM6H8Q/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/evLVisM6H8Q/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Hindustan Times",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T03:42:29Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "nkXeNdovJ2DzC1D1kXaxyoYRS88",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "EXWxU4R3ZKs"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-21T09:08:35Z",
+ "channelId": "UCckHqySbfy5FcPP6MD_S-Yg",
+ "title": "LIVE | Trump's Surprise World War III Speech After Putin's Nuclear Order | Watch",
+ "description": "U.S President Elect Donald Trump's speech on preventing World War 3 as Russia's Putin changes nuclear doctrine after Biden's ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/EXWxU4R3ZKs/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/EXWxU4R3ZKs/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/EXWxU4R3ZKs/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Times Of India",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-21T09:08:35Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "dtGi65ege5KcCETVpHLI5xP2vg4",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "5_2z5NNB-j8"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T13:13:59Z",
+ "channelId": "UCAR3h_9fLV82N2FH4cE4RKw",
+ "title": "LIVE : అమెరికాలోను A1 అవినీతి! | Big News Debate with Murthy | AP Political News | TV5 News",
+ "description": "LIVE : అమెరికాలోను A1 అవినీతి! | Big News Debate with Murthy | AP Political News | TV5 News #tv5news ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/5_2z5NNB-j8/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/5_2z5NNB-j8/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/5_2z5NNB-j8/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "TV5 News ",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T13:13:59Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "khhzrwERoWVSbQ22uM9BaxvJAY0",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "FPQ8pK5-hZI"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T14:57:05Z",
+ "channelId": "UCRWFSbif-RFENbBrSiez1DA",
+ "title": "Sandeep chaudhary LIVE : AXIS MY INDIA वाले Pradeep Gupta ने Maharashtra Election पर चौंका दिया",
+ "description": "महाराष्ट्र विधानसभा चुनाव के नतीजे शनिवार (23 नवंबर) को घोषित हो ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/FPQ8pK5-hZI/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/FPQ8pK5-hZI/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/FPQ8pK5-hZI/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "ABP NEWS",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T14:57:05Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "Zs4Tz34TockNnwIMFuWC-w4eZy0",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "MdVHZ_OQT3g"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-23T00:38:41Z",
+ "channelId": "UC_cZYFovNQTsKw1ZLmO_AMA",
+ "title": "Rajasthan By Election Result Live: उपचुनाव के नतीजे आज, पल पल की अपडेट | BJP Vs Congress | RLP | BAP",
+ "description": "FirstIndiaNews #BhajanlalSharma #RajasthanGovernment #RajasthanPolitics #RajasthanNews #BJP #Congress ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/MdVHZ_OQT3g/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/MdVHZ_OQT3g/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/MdVHZ_OQT3g/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "First India News",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-23T00:38:41Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "ZMaZFgxcRh_siCoi9_QNhVa0RmM",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "_SOKAxFSPq0"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T08:54:41Z",
+ "channelId": "UCQ_FATLW83q-4xJ2fsi8qAw",
+ "title": "LIVE : YSRCP Perni Nani Press Meet | Tadepalli @SakshiTVLIVE",
+ "description": "LIVE : YSRCP Perni Nani Press Meet | Tadepalli @SakshiTVLIVE #PerniNani #YSRCPPerniNani #PerniNaniPressMeetLive ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/_SOKAxFSPq0/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/_SOKAxFSPq0/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/_SOKAxFSPq0/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Sakshi TV Live",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T08:54:41Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "I58x6vdU84qOLTUsjZWRnLHUV8c",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "7fjZr_ogeEM"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T08:39:32Z",
+ "channelId": "UCPP3etACgdUWvizcES1dJ8Q",
+ "title": "Bageshwar Baba Hindu Jodo Yatra Day 2 Live: हिन्दू जोड़ो यात्रा में लाखों Muslim | Hindu | MP News",
+ "description": "Bageshwar Baba Hindu Jodo Yatra Day 2 Live: हिन्दू जोड़ो यात्रा में लाखों Muslim | Hindu | MP ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/7fjZr_ogeEM/default.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/7fjZr_ogeEM/mqdefault.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/7fjZr_ogeEM/hqdefault.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "News18 India",
+ "liveBroadcastContent": "none",
+ "publishTime": "2024-11-22T08:39:32Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "XdO3sgyy_R54CgarLrnyClz-Tew",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "NpFtEKuv1EI"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T14:44:39Z",
+ "channelId": "UCI_mwTKUhicNzFrhm33MzBQ",
+ "title": "Trump Live | Trump Drops World War III Bombshell After Putin’s Nuclear Order | Russia Vs Ukraine",
+ "description": "Live Donald Trump, Trump Drops World War III Bombshell After Putin's Nuclear Order, Russia Vs Ukraine #trump #trumplive ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/NpFtEKuv1EI/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/NpFtEKuv1EI/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/NpFtEKuv1EI/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "ET NOW",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T14:44:39Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "nptJKHvfmOS02SFTV4PPhpCXxKg",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "PRVZeHvHdnU"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T18:53:47Z",
+ "channelId": "UCElJZvY_RVra6qjD8WSQYog",
+ "title": "🔴LIVE : Traffic Alert : All Over The Pakistan Roads Closed With Containers! PTI 24 Nov Protest",
+ "description": "LIVE #TrafficAlert #RoadsClosed #PTI24NovProtest #PakistanProtest #ContainerBlockades #ImranKhanSupport #PTIForChange ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/PRVZeHvHdnU/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/PRVZeHvHdnU/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/PRVZeHvHdnU/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Public News",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T18:53:47Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "bwbpt4Zn4blHbGWjhZBS4w4B53k",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "1s384Xsho8g"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-21T08:10:19Z",
+ "channelId": "UC6RJ7-PaXg6TIH2BzZfTV7w",
+ "title": "Israel Iran War Live: 100+ IDF Jets Flew Over 2000 KM To Attack | F-35 Nightmare | Hezbollah",
+ "description": "Israel's big attack on Iran. Exclusive behind-the-scenes details...Over 100 Israel Air Force aircraft...A 2000-kilometre journey to Iran ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/1s384Xsho8g/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/1s384Xsho8g/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/1s384Xsho8g/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "TIMES NOW",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-21T08:10:19Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "6o5YVszqKOJ_htUTUF03BWPu3wE",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "ZioGi36s23c"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T06:40:49Z",
+ "channelId": "UC6AG81pAkf6Lbi_1VC5NmPA",
+ "title": "【LIVE】朝のニュース(Japan News Digest Live)最新情報など|TBS NEWS DIG(11月23日)",
+ "description": "11月23日(土)の早朝から TBS NEWS で放送された最新のニュースをダイジェストでお届けします。 ▽TBS NEWS DIG 公式 ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/ZioGi36s23c/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/ZioGi36s23c/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/ZioGi36s23c/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "TBS NEWS DIG Powered by JNN",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T06:40:49Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "hElgusojni53vftO9c9uSqkNQb0",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "o6DNhCh3pM0"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T13:27:46Z",
+ "channelId": "UCajVjEHDoVn_AHsunUZz_EQ",
+ "title": "Bangladesh News | বাংলাদেশে ফের পথে হিন্দুরা, সনাতনী গর্জনে হবে ইউনূসের বিসর্জন?",
+ "description": "Bangladesh News | বাংলাদেশে ফের পথে হিন্দুরা, সনাতনী গর্জনে হবে ইউনূসের ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/o6DNhCh3pM0/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/o6DNhCh3pM0/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/o6DNhCh3pM0/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Republic Bangla",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T13:27:46Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "KnIh2T4J9Oq35ju_t8jJZoQbxK0",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "qXS9fRsFC2Q"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-19T10:21:10Z",
+ "channelId": "UCckHqySbfy5FcPP6MD_S-Yg",
+ "title": "LIVE | Trump's Huge World War III Speech As Putin Okays Nuclear Attack After U.S. Missile Nod",
+ "description": "U.S President Elect Donald Trump tears into Joe Biden for having made the world more dangerous than ever before with the ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/qXS9fRsFC2Q/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/qXS9fRsFC2Q/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/qXS9fRsFC2Q/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Times Of India",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-19T10:21:10Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "PEzJT9n8QmiDXMMlljygVZXb9ng",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "S-dp4U61NFU"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T04:10:00Z",
+ "channelId": "UCIvaYmXn910QMdemBG3v1pQ",
+ "title": "Omar Abdullah Big Action on Kashmiri Pandit LIVE: कश्मीर से निकाले जाएंगे पंडित? एक्शन में अब्दुल्ला",
+ "description": "Omar Abdullah Big Action on Kashmiri Pandit LIVE: कश्मीर से निकाले जाएंगे पंडित? एक्शन में ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/S-dp4U61NFU/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/S-dp4U61NFU/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/S-dp4U61NFU/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Zee News",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T04:10:00Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "VrmL5z5F-aS55FZAJ6l5TwYWYgY",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "a7Pqr5QbSmk"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-21T14:30:30Z",
+ "channelId": "UCRWFSbif-RFENbBrSiez1DA",
+ "title": "LIVE: दिल्ली में लग सकता है लॉकडाउन? । Delhi Air Pollution । Delhi Lockdown। AQI Update।Delhi News",
+ "description": "aqi #delhiairpollution #lockdown #hindinewsvideo #hindinews #Hindinewslive #abpnews #latestnews #abpnewslive The level of ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/a7Pqr5QbSmk/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/a7Pqr5QbSmk/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/a7Pqr5QbSmk/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "ABP NEWS",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-21T14:30:30Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "5e4hYkMognS0rj212PNBF6OKyoA",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "_EyqCO5R5Ac"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T07:36:52Z",
+ "channelId": "UC7wafFu5c8AO0YF5U7R7xFA",
+ "title": "🔴 24/7 LIVE: Cat TV for Cats to Watch 😺 Harvest Season for Birds Chipmunks Squirrels 4K",
+ "description": "Non-stop live streaming for cats, dogs, parrots, or other nature lovers. Relaxing your pets can help minimize separation anxiety.",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/_EyqCO5R5Ac/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/_EyqCO5R5Ac/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/_EyqCO5R5Ac/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Birder King",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T07:36:52Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "3m8h-i31Kr5Z8zQ2JX0llt-Pb20",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "K2bWopsRyAs"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T07:00:10Z",
+ "channelId": "UCm7lHFkt2yB_WzL67aruVBQ",
+ "title": "Putin Speech LIVE | Vladimir Putin Addresses The Nation After ICBM Attack On Ukraine | Russia | US",
+ "description": "Putin Speech LIVE | Vladimir Putin | Vladimir Putin National Address | ICBM Attack On Ukraine | Russia | US Russian President ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/K2bWopsRyAs/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/K2bWopsRyAs/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/K2bWopsRyAs/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Hindustan Times",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T07:00:10Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "9bU8Pes22-5rPbFI3GyS852AS7s",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "yC1lgCZVo-Q"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T11:11:46Z",
+ "channelId": "UCIvaYmXn910QMdemBG3v1pQ",
+ "title": "Congress Big Support Baba Bageshwar Hindu Yatra LIVE : हिंदू राष्ट्र के समर्थन में उतरी कांग्रेस!",
+ "description": "Congress Big Support Baba Bageshwar Hindu Yatra LIVE : हिंदू राष्ट्र के समर्थन में उतरी ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/yC1lgCZVo-Q/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/yC1lgCZVo-Q/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/yC1lgCZVo-Q/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Zee News",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T11:11:46Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "Lp4KHjSoBv_9mACE3oA2ZqBAce4",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "Qo3SCEREDpQ"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-21T12:33:35Z",
+ "channelId": "UCajVjEHDoVn_AHsunUZz_EQ",
+ "title": "LIVE | হাইকোর্টের নির্দেশে 'বিপদে' বিনীত! বিনীত গোয়লকে শাস্তি দেবেন মমতা না নিজেই সরে যাবেন?",
+ "description": "Mamata- Vineet Goyal News | অভয়ার নাম বলে বিপাকে বিনীত গোয়ল। অভিযোগ প্রমাণিত ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/Qo3SCEREDpQ/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/Qo3SCEREDpQ/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/Qo3SCEREDpQ/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Republic Bangla",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-21T12:33:35Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "69IRxPVVzs-S-UFn9pFYPXHNNXA",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "MoIEQI0aWb4"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T14:09:29Z",
+ "channelId": "UCOutOIcn_oho8pyVN3Ng-Pg",
+ "title": "Russia ICBM Attack on Ukraine LIVE: मॉस्को रेडियो प्रसारण, यूरोप पर ICBM प्रक्षेपण | Zelenskyy",
+ "description": "Russia ICBM Attack on Ukraine LIVE: मॉस्को रेडियो प्रसारण, यूरोप पर ICBM प्रक्षेपण ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/MoIEQI0aWb4/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/MoIEQI0aWb4/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/MoIEQI0aWb4/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "TV9 Bharatvarsh",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T14:09:29Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "tcivoaf2Syp8Pb77ipdpb9RjeY4",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "-ne8x1nv5hQ"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T01:12:11Z",
+ "channelId": "UC7FlLbNo66YsCEAPuJITiNg",
+ "title": "Russia Ukraine War Live: Russia Ukraine War होगा खत्म? | Volodymyr Zelenskyy | NATO | Vladimir Putin",
+ "description": "Russia Ukraine War Live: Russia Ukraine War होगा खत्म? | Volodymyr Zelenskyy | NATO | Vladimir Putin ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/-ne8x1nv5hQ/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/-ne8x1nv5hQ/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/-ne8x1nv5hQ/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "News18 Rajasthan",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T01:12:11Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "vvRpR6MqGHNCBwpPPY6-PTJz3Sk",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "OsVFbKAo0z0"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T02:08:58Z",
+ "channelId": "UCm7lHFkt2yB_WzL67aruVBQ",
+ "title": "Vladimir Putin LIVE I Putin Address In English; Russia's Direct Attack On U.S, UK I Biden | Trump",
+ "description": "Watch live as Vladimir Putin announces Russia's successful test of the new Oreshnik hypersonic missile system on targets in ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/OsVFbKAo0z0/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/OsVFbKAo0z0/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/OsVFbKAo0z0/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Hindustan Times",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T02:08:58Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "DhfVOxAHgAsU7PI7SQL5-PuzGvo",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "8ZgHplFIY3I"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-21T17:44:12Z",
+ "channelId": "UCm7lHFkt2yB_WzL67aruVBQ",
+ "title": "Vladimir Putin LIVE | ICBM Attack LIVE | Russia Tests Oreshnik Hypersonic Missile, Strikes Dnipro",
+ "description": "Vladimir Putin LIVE | ICBM Attack LIVE | Russia Tests Oreshnik Hypersonic Missile Watch live as Vladimir Putin announces ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/8ZgHplFIY3I/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/8ZgHplFIY3I/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/8ZgHplFIY3I/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Hindustan Times",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-21T17:44:12Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "BZe-2GTe8ysAC5lEY7d0VvX7KOs",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "ypT-Z5o3uMA"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T11:12:30Z",
+ "channelId": "UC9IQhNgS43lmUdU-KdGyb0A",
+ "title": "Israel Iran War LIVE: Sad Day for Israel as Hezbollah Drone Attack Hits Military Base | Iran | N18G",
+ "description": "Israeli airstrikes pounded areas across Lebanon, killing at least 21 people, officials said on Wednesday, including 15 in a ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/ypT-Z5o3uMA/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/ypT-Z5o3uMA/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/ypT-Z5o3uMA/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "News18 Urdu",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T11:12:30Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "5nJXzXtLmj1ddyAwL-2USuthft4",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "-jgUt07wPOM"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T19:24:36Z",
+ "channelId": "UCm7lHFkt2yB_WzL67aruVBQ",
+ "title": "LIVE | Russia's New Oreshnik Missile Can Reach France In 15 Minutes;Putin Aide Openly Threatens West",
+ "description": "Alexey Zhuravlev, The First Deputy Chairman of Russian State Duma Defence Committee said the new Oreshnik missile can ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/-jgUt07wPOM/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/-jgUt07wPOM/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/-jgUt07wPOM/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Hindustan Times",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T19:24:36Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "zOqFHN1wAw01UqDIrbrNYLDjeRs",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "c7YccSf_4dk"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T14:00:54Z",
+ "channelId": "UCNZCKDhAVtbh7sddChTxI7w",
+ "title": "SBGR LIVE 4K - Aeroporto Internacional de Guarulhos AO VIVO - GRU Airport",
+ "description": "Link da nossa live 24h: https://www.youtube.com/sbgrlive Parceiros: Insider - As roupas tecnológicas da Insider unem ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/c7YccSf_4dk/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/c7YccSf_4dk/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/c7YccSf_4dk/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "SBGR LIVE",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T14:00:54Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "JalVLPQVNkVfODRGcdy2fSdqiwg",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "stVLL_fg0fI"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T08:12:44Z",
+ "channelId": "UCElJZvY_RVra6qjD8WSQYog",
+ "title": "🔴LIVE: PTI's Protest Call | Imran Khan Important Message From Adiala | Salman Akram Raja Media Talk",
+ "description": "PTIProtest #ImranKhan #AdialaJail #SalmanAkramRaja #MediaTalk #PakistanPolitics #BreakingNews #LiveUpdates ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/stVLL_fg0fI/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/stVLL_fg0fI/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/stVLL_fg0fI/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Public News",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T08:12:44Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "lY-b5mIrt9ZiKDYyKb8G3mdPnCI",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "ARhaOG8mOS0"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-21T10:13:44Z",
+ "channelId": "UCHLqIOMPk20w-6cFgkA90jw",
+ "title": "CHANNEL 24 LIVE | চ্যানেল 24 লাইভ | সরাসরি চ্যানেল 24 | Live TV | 24 Live Streaming | News | Bangla",
+ "description": "Channel24 #Channel24_Live #Channel24_Live_Streaming #Bangla_TV_Live #Live_TV #Bangla_News_Live #News ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/ARhaOG8mOS0/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/ARhaOG8mOS0/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/ARhaOG8mOS0/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Channel 24",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-21T10:13:44Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "0BYVml8dIwUlU0g6Qf02ZxMnwQ4",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "_nO1KdTCiYE"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-21T09:00:38Z",
+ "channelId": "UC7wafFu5c8AO0YF5U7R7xFA",
+ "title": "🔴 24/7 LIVE: Cat TV for Cats to Watch 😺 Cute Birds Squirrels Cat Games 4K",
+ "description": "Non-stop live streaming for cats, dogs, parrots, or other nature lovers. Relaxing your pets can help minimize separation anxiety.",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/_nO1KdTCiYE/default.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/_nO1KdTCiYE/mqdefault.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/_nO1KdTCiYE/hqdefault.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Birder King",
+ "liveBroadcastContent": "none",
+ "publishTime": "2024-11-21T09:00:38Z"
+ }
+ }
+]
\ No newline at end of file
diff --git a/warpcastNow.json b/collections/warpcastCollection.json
similarity index 100%
rename from warpcastNow.json
rename to collections/warpcastCollection.json
diff --git a/fetch.mjs b/fetch.mjs
new file mode 100644
index 0000000..579f5c5
--- /dev/null
+++ b/fetch.mjs
@@ -0,0 +1,20 @@
+import { YouTubeFeed } from "./youtube.mjs"
+
+const yt = new YouTubeFeed("AIzaSyAy0N613PtrIohnjsXOn3kqbRxa5M5mdRQ")
+
+yt.generateCollection("live -bot -lofi", "general")
+yt.generateCollection("coding programming live -bot -lofi -music", "coding")
+yt.generateCollection("live ambient music", "ambience")
+
+const channelUrls = [
+ "https://www.youtube.com/@okbangershow",
+ "https://www.youtube.com/@GMFarcaster",
+ "https://www.youtube.com/@breckyunits",
+ "https://www.youtube.com/@Crypto_WenMoon",
+ "https://www.youtube.com/@BuenasNochesFarcaster",
+ "https://www.youtube.com/channel/UCZ8MI1slzXKUv9fb0I9Ho2A",
+ "https://www.youtube.com/@LosFomos",
+ "https://www.youtube.com/@chrisgo",
+ // Add more channel URLs here
+]
+yt.channelsToCollection(channelUrls, "warpcast")
diff --git a/index.scroll b/index.scroll
index 3c98cef..29c689d 100644
--- a/index.scroll
+++ b/index.scroll
@@ -4,8 +4,10 @@ header.scroll
lodash.min.js
-jsonScript youtubeNow.json
-jsonScript warpcastNow.json
+jsonScript collections/generalCollection.json
+jsonScript collections/codingCollection.json
+jsonScript collections/warpcastCollection.json
+jsonScript collections/ambienceCollection.json
<div id="player"></div>
<div class="static-noise"></div>
diff --git a/package.json b/package.json
index a59b487..e40f1d0 100644
--- a/package.json
+++ b/package.json
@@ -4,7 +4,7 @@
"description": "> It's not TV, it's Togger.",
"main": "togger.js",
"scripts": {
- "build": "node youtubeNow.mjs; node warpcastNow.mjs; scroll build",
+ "build": "node fetch.mjs; scroll build",
"test": "scroll test"
},
"author": "Breck Yunits et al"
diff --git a/togger.js b/togger.js
index 431f9ea..dac9682 100644
--- a/togger.js
+++ b/togger.js
@@ -9,9 +9,16 @@ const lodash = _
const makeDeepLink = (platform, channelName) =>
[platform, channelName.replace(/\s+/g, "")].join(".")
+const collections = {
+ warpcast: warpcastCollection,
+ coding: codingCollection,
+ general: generalCollection,
+ ambience: ambienceCollection,
+}
+
class Togger {
constructor() {
- this.loadStreams()
+ this.loadStreams(new URLSearchParams(window.location.search).get("p"))
this.currentIndex = this.getInitialIndex()
this.isPoweredOn = true
this.isMuted = true
@@ -20,10 +27,31 @@ class Togger {
this.addRemoteControl()
}
- loadStreams() {
- const params = new URLSearchParams(window.location.search)
- const platform = params.get("p")
- const streams = platform === "warpcast" ? warpcastNow : youtubeNow
+ getCollection(collectionName) {
+ this.collectionName = collectionName
+ if (collections[collectionName]) return collections[collectionName]
+ this.collectionName = "general"
+ return generalCollection
+ }
+
+ get collectionIndex() {
+ return Object.keys(collections).indexOf(this.collectionName)
+ }
+
+ get collectionNames() {
+ return Object.keys(collections)
+ }
+
+ nextCollection() {
+ const { collectionNames } = this
+ const collectionName =
+ collectionNames[(this.collectionIndex + 1) % collectionNames.length]
+ this.loadStreams(collectionName)
+ this.nextChannel()
+ }
+
+ loadStreams(collectionName) {
+ const streams = this.getCollection(collectionName)
this.streams = streams.map((item) => {
const channelName = item.snippet.channelTitle
const title = item.snippet.title
@@ -32,7 +60,7 @@ class Togger {
channelName,
link: `https://youtube.com/channel/${item.snippet.channelId}`,
streamLink: item.id.videoId,
- platform,
+ platform: "youtube",
title,
deepLink: makeDeepLink(platform, channelName),
}
@@ -42,8 +70,6 @@ class Togger {
this.streams = Array.from(
new Map(this.streams.map((item) => [item.deepLink, item])).values(),
)
-
- this.streams = lodash.shuffle(this.streams)
}
getInitialIndex() {
@@ -65,6 +91,11 @@ class Togger {
window.addEventListener("resize", () => this.resizePlayer(), true)
}
+ shuffle() {
+ this.streams = lodash.shuffle(this.streams)
+ this.nextChannel()
+ }
+
bindKeyboardControls() {
document.addEventListener("keydown", (event) => {
switch (event.key.toLowerCase()) {
@@ -83,9 +114,15 @@ class Togger {
case "m":
this.toggleMute()
break
+ case "c":
+ this.nextCollection()
+ break
case "p":
this.togglePower()
break
+ case "s":
+ this.shuffle()
+ break
}
})
}
@@ -168,6 +205,7 @@ class Togger {
const params = new URLSearchParams(window.location.search)
// Update the channel parameter
params.set("c", current.deepLink)
+ params.set("p", this.collectionName)
// Replace state with all parameters
window.history.replaceState({}, "", `?${params.toString()}`)
}
@@ -239,7 +277,6 @@ class Togger {
// Get video data and check live status
const videoData = this.player.getVideoData()
const isLive = this.checkIfLive()
- console.log(isLive)
videoId.textContent = `${videoData.video_id} ${isLive ? "(LIVE)" : ""}`
@@ -447,7 +484,7 @@ function onYouTubeIframeAPIReady() {
events: {
onReady: (event) => togger.onReady(event),
onStateChange: (event) => togger.onPlayerStateChange(event),
- onError: (event) => console.error(event.data),
+ onError: (event) => console.error(event),
},
})
diff --git a/warpcastNow.mjs b/warpcastNow.mjs
deleted file mode 100644
index da22e59..0000000
--- a/warpcastNow.mjs
+++ /dev/null
@@ -1,22 +0,0 @@
-import { YouTubeFeed } from "./youtube.mjs"
-import fs from "fs/promises"
-
-const updateWarpcast = async () => {
- const channelUrls = [
- "https://www.youtube.com/@okbangershow",
- "https://www.youtube.com/@GMFarcaster",
- "https://www.youtube.com/@breckyunits",
- "https://www.youtube.com/@Crypto_WenMoon",
- "https://www.youtube.com/@BuenasNochesFarcaster",
- "https://www.youtube.com/channel/UCZ8MI1slzXKUv9fb0I9Ho2A",
- "https://www.youtube.com/@LosFomos",
- "https://www.youtube.com/@chrisgo",
- // Add more channel URLs here
- ]
- const feed = new YouTubeFeed("AIzaSyAy0N613PtrIohnjsXOn3kqbRxa5M5mdRQ")
- const streams = await feed.fetchChannelStreams(channelUrls)
- await fs.writeFile("warpcastNow.json", JSON.stringify(streams, null, 2))
- console.log(`Saved ${streams.length} streams to warpcastNow.json`)
-}
-
-updateWarpcast()
diff --git a/youtube.mjs b/youtube.mjs
index 082dc9d..fc9d79e 100644
--- a/youtube.mjs
+++ b/youtube.mjs
@@ -1,4 +1,10 @@
import fs from "fs/promises"
+import path from "path"
+import { fileURLToPath } from "url"
+import { dirname } from "path"
+
+const __filename = fileURLToPath(import.meta.url)
+const __dirname = dirname(__filename)
// https://developers.google.com/youtube/v3/docs/search
@@ -7,10 +13,10 @@ class YouTubeFeed {
this.apiKey = apiKey
}
- async fetchLiveStreams(maxResults = 100) {
+ async fetchLiveStreams(query, maxResults = 100) {
const endpoint = "https://www.googleapis.com/youtube/v3/search"
const params = new URLSearchParams({
- q: "coding programming live -bot -lofi -music",
+ q: query,
part: "snippet",
eventType: "live",
type: "video",
@@ -79,11 +85,25 @@ class YouTubeFeed {
return streams
}
- async updateLiveNow() {
+ async channelsToCollection(channels, name) {
+ const streams = await this.fetchChannelStreams(channels)
+ await this.saveCollection(streams, name)
+ }
+
+ async saveCollection(streams, name) {
+ const filepath = path.join(
+ __dirname,
+ "collections",
+ name + "Collection.json",
+ )
+ await fs.writeFile(filepath, JSON.stringify(streams, null, 2))
+ console.log(`Saved ${streams.length} streams to ${filepath}`)
+ }
+
+ async generateCollection(query, name) {
try {
- const streams = await this.fetchLiveStreams()
- await fs.writeFile("youtubeNow.json", JSON.stringify(streams, null, 2))
- console.log(`Saved ${streams.length} streams to youtube.json`)
+ const streams = await this.fetchLiveStreams(query)
+ await this.saveCollection(streams, name)
} catch (error) {
console.error("Failed to fetch or save streams:", error)
process.exit(1)
diff --git a/youtubeNow.mjs b/youtubeNow.mjs
deleted file mode 100644
index b1607a3..0000000
--- a/youtubeNow.mjs
+++ /dev/null
@@ -1,3 +0,0 @@
-import { YouTubeFeed } from "./youtube.mjs"
-
-new YouTubeFeed("AIzaSyAy0N613PtrIohnjsXOn3kqbRxa5M5mdRQ").updateLiveNow()