------------------------------------------------------------
commit 8b32fcec379c428273e6afbd740c54ab32fdadcc
Author: ffff:96.82.102.217 <ffff:96.82.102.217@togger.com>
Date: Sat Nov 23 13:10:29 2024 +0000
updated warpcast.scroll
diff --git a/collections/warpcast.scroll b/collections/warpcast.scroll
index c5a77fa..3160280 100644
--- a/collections/warpcast.scroll
+++ b/collections/warpcast.scroll
@@ -3,7 +3,6 @@ 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
-https://www.youtube.com/@wolfofbaystreet
\ No newline at end of file
+https://www.youtube.com/@wolfofbaystreet
------------------------------------------------------------
commit 18eeb766b30ba99358acfcae1451ae8db3a19ea4
Author: Breck Yunits <breck7@gmail.com>
Date: Sat Nov 23 04:57:03 2024 -0800
diff --git a/youtube.mjs b/youtube.mjs
index c7b0b1b..31dad42 100644
--- a/youtube.mjs
+++ b/youtube.mjs
@@ -26,6 +26,8 @@ class YouTubeFeed {
try {
const response = await fetch(`${endpoint}?${params}`)
const data = await response.json()
+ console.log(data)
+ console.log(`${data.items.length} hits for '${query}'`)
return data.items
} catch (error) {
console.error("Error fetching live streams:", error)
@@ -102,7 +104,9 @@ class YouTubeFeed {
async generateCollection(query, name) {
try {
+ console.log(`Fetching '${query}'`)
const streams = await this.fetchLiveStreams(query)
+ console.log(`Saving ${streams.length} to ${name}`)
await this.saveCollection(streams, name)
} catch (error) {
console.error("Failed to fetch or save streams:", error)
------------------------------------------------------------
commit 055f2ed620df7df5f664ba01d08fd1b28e360c9a
Author: Breck Yunits <breck7@gmail.com>
Date: Sat Nov 23 04:53:20 2024 -0800
updated collections
diff --git a/collections/coding.scroll b/collections/coding.scroll
new file mode 100644
index 0000000..a7e2e03
--- /dev/null
+++ b/collections/coding.scroll
@@ -0,0 +1,14 @@
+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
\ No newline at end of file
diff --git a/collections/warpcast.scroll b/collections/warpcast.scroll
new file mode 100644
index 0000000..c5a77fa
--- /dev/null
+++ b/collections/warpcast.scroll
@@ -0,0 +1,9 @@
+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
+https://www.youtube.com/@wolfofbaystreet
\ No newline at end of file
diff --git a/update.mjs b/update.mjs
index 0ead051..4877f89 100644
--- a/update.mjs
+++ b/update.mjs
@@ -1,37 +1,54 @@
+import { readdir, readFile } from "fs/promises"
+import path from "path"
import { YouTubeFeed } from "./youtube.mjs"
-const yt = new YouTubeFeed("AIzaSyAy0N613PtrIohnjsXOn3kqbRxa5M5mdRQ")
-
-yt.generateCollection("live -bot -lofi", "general")
-yt.generateCollection("live ambient music", "ambience")
-yt.generateCollection("live -bot science", "science")
-
-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",
- "https://www.youtube.com/@wolfofbaystreet",
- // 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("\n")
-yt.channelsToCollection(codingChannels, "coding")
+const apiKey = "AIzaSyAy0N613PtrIohnjsXOn3kqbRxa5M5mdRQ"
+const yt = new YouTubeFeed(apiKey)
+
+// Generate initial collections
+async function generateInitialCollections() {
+ await yt.generateCollection("live -bot -lofi", "general")
+ await yt.generateCollection("live ambient music", "ambience")
+ await yt.generateCollection("live -bot science", "science")
+}
+
+// Process existing collection files
+async function processCollectionFiles() {
+ try {
+ const collectionDir = path.join(__dirname, "collections")
+ const files = await readdir(collectionDir)
+
+ // Filter for .scroll files
+ const scrollFiles = files.filter((file) => file.endsWith(".scroll"))
+
+ // Process each file
+ for (const file of scrollFiles) {
+ const filePath = path.join(collectionDir, file)
+ const content = await readFile(filePath, "utf8")
+ const lines = content.split("\n").filter((line) => line.trim()) // Remove empty lines
+
+ // Get collection name from filename (remove .scroll extension)
+ const collectionName = path.basename(file, ".scroll")
+
+ // Process the channels
+ await yt.channelsToCollection(lines, collectionName)
+ }
+ } catch (error) {
+ console.error("Error processing collection files:", error)
+ throw error
+ }
+}
+
+// Main execution
+async function main() {
+ try {
+ await generateInitialCollections()
+ await processCollectionFiles()
+ console.log("Successfully processed all collections")
+ } catch (error) {
+ console.error("Error in main execution:", error)
+ process.exit(1)
+ }
+}
+
+main()
------------------------------------------------------------
commit 0ce73832748ef50ece0f0ec6e4a4c7e6ee861a07
Author: Breck Yunits <breck7@gmail.com>
Date: Sat Nov 23 04:44:45 2024 -0800
diff --git a/collections/ambienceCollection.json b/collectionCache/ambienceCollection.json
similarity index 100%
rename from collections/ambienceCollection.json
rename to collectionCache/ambienceCollection.json
diff --git a/collections/codingCollection.json b/collectionCache/codingCollection.json
similarity index 100%
rename from collections/codingCollection.json
rename to collectionCache/codingCollection.json
diff --git a/collections/generalCollection.json b/collectionCache/generalCollection.json
similarity index 100%
rename from collections/generalCollection.json
rename to collectionCache/generalCollection.json
diff --git a/collections/scienceCollection.json b/collectionCache/scienceCollection.json
similarity index 100%
rename from collections/scienceCollection.json
rename to collectionCache/scienceCollection.json
diff --git a/collections/warpcastCollection.json b/collectionCache/warpcastCollection.json
similarity index 100%
rename from collections/warpcastCollection.json
rename to collectionCache/warpcastCollection.json
diff --git a/index.scroll b/index.scroll
index 3b4bed5..b30c424 100644
--- a/index.scroll
+++ b/index.scroll
@@ -4,11 +4,11 @@ header.scroll
lodash.min.js
-jsonScript collections/scienceCollection.json
-jsonScript collections/generalCollection.json
-jsonScript collections/codingCollection.json
-jsonScript collections/warpcastCollection.json
-jsonScript collections/ambienceCollection.json
+jsonScript collectionCache/scienceCollection.json
+jsonScript collectionCache/generalCollection.json
+jsonScript collectionCache/codingCollection.json
+jsonScript collectionCache/warpcastCollection.json
+jsonScript collectionCache/ambienceCollection.json
<div id="player"></div>
<div class="static-noise"></div>
diff --git a/update.mjs b/update.mjs
index 8a8ddde..0ead051 100644
--- a/update.mjs
+++ b/update.mjs
@@ -3,7 +3,6 @@ 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 science", "science")
diff --git a/update.sh b/update.sh
index 6a5b8c9..9692158 100755
--- a/update.sh
+++ b/update.sh
@@ -1,4 +1,4 @@
node update.mjs
-git add collections/
+git add collectionsCache/
git commit -m "updated collections"
scroll build
diff --git a/youtube.mjs b/youtube.mjs
index fc9d79e..c7b0b1b 100644
--- a/youtube.mjs
+++ b/youtube.mjs
@@ -93,7 +93,7 @@ class YouTubeFeed {
async saveCollection(streams, name) {
const filepath = path.join(
__dirname,
- "collections",
+ "collectionsCache",
name + "Collection.json",
)
await fs.writeFile(filepath, JSON.stringify(streams, null, 2))
------------------------------------------------------------
commit 4909e979886ad98a3964ab0df4295f3e670fe690
Author: ffff:96.82.102.217 <ffff:96.82.102.217@togger.com>
Date: Sat Nov 23 12:39:44 2024 +0000
updated test.sh
diff --git a/test.sh b/test.sh
index a50f5c6..7ab9521 100644
--- a/test.sh
+++ b/test.sh
@@ -1 +1 @@
-node update.mjs
\ No newline at end of file
+node -v
\ No newline at end of file
------------------------------------------------------------
commit 6b19e5719e62ec66a6685b731bcfae689e21b4dd
Author: ffff:96.82.102.217 <ffff:96.82.102.217@togger.com>
Date: Sat Nov 23 12:39:32 2024 +0000
updated test.sh
diff --git a/test.sh b/test.sh
index dead95a..a50f5c6 100644
--- a/test.sh
+++ b/test.sh
@@ -1 +1 @@
-whereis node
\ No newline at end of file
+node update.mjs
\ No newline at end of file
------------------------------------------------------------
commit 2a1730c7f086cfdebf79753f7c77c208b224e01c
Author: ffff:96.82.102.217 <ffff:96.82.102.217@togger.com>
Date: Sat Nov 23 12:39:24 2024 +0000
updated test.sh
diff --git a/test.sh b/test.sh
index e69de29..dead95a 100644
--- a/test.sh
+++ b/test.sh
@@ -0,0 +1 @@
+whereis node
\ No newline at end of file
------------------------------------------------------------
commit ed73a28e83eec630d195398d89d6e5123b0b26d3
Author: ffff:96.82.102.217 <ffff:96.82.102.217@togger.com>
Date: Sat Nov 23 12:39:22 2024 +0000
created test.sh
diff --git a/test.sh b/test.sh
new file mode 100644
index 0000000..e69de29
------------------------------------------------------------
commit e163bf2ff2846bd012b4f46123ec6c77ec3d99c8
Author: ffff:96.82.102.217 <ffff:96.82.102.217@togger.com>
Date: Sat Nov 23 12:37:59 2024 +0000
updated readme.md
diff --git a/readme.md b/readme.md
index c0c35c6..19dcf53 100644
--- a/readme.md
+++ b/readme.md
@@ -38,4 +38,7 @@ Contributions, issues, and feature requests are welcome!
---
-Made with ❤️ at the Vercel Nvidia Hackathon.
+Originally made and launched at the Vercel Nvidia Hackathon.
+
+Made possible by https://warpcast.com/phil, https://warpcast.com/benersing, and
+https://warpcast.com/christin.
\ No newline at end of file
------------------------------------------------------------
commit 947123e443fb236559852d8f8fc74ccc4fe6d15e
Author: Breck Yunits <breck7@gmail.com>
Date: Sat Nov 23 04:29:41 2024 -0800
updated collections
diff --git a/collections/ambienceCollection.json b/collections/ambienceCollection.json
index 09412f5..b9c8672 100644
--- a/collections/ambienceCollection.json
+++ b/collections/ambienceCollection.json
@@ -69,104 +69,36 @@
},
{
"kind": "youtube#searchResult",
- "etag": "w5daf09gGTtAQO8pJmfsv2t9llA",
+ "etag": "hKUurt2q_mGdbE8Hcs3xXoqI1Wg",
"id": {
"kind": "youtube#video",
- "videoId": "RrkrdYm3HPQ"
+ "videoId": "vK5VwVyxkbI"
},
"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": "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": "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 ...",
+ "publishedAt": "2023-10-19T13:57:02Z",
+ "channelId": "UCdsNEJzi7vGVL0k1YDe2znA",
+ "title": "Tavern Music 24/7 | DnD, Study, Relaxation",
+ "description": "Hello everyone :) I'm proud to present to you Tavern Music 24/7 radio! :) I hope that you'll enjoy it and thank you for listening!",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/ZgIApioi-jE/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/vK5VwVyxkbI/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/ZgIApioi-jE/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/vK5VwVyxkbI/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/ZgIApioi-jE/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/vK5VwVyxkbI/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Space Relax Music Channel",
+ "channelTitle": "Filip Lackovic",
"liveBroadcastContent": "live",
- "publishTime": "2023-06-05T13:15:45Z"
+ "publishTime": "2023-10-19T13:57:02Z"
}
},
{
@@ -443,70 +375,70 @@
},
{
"kind": "youtube#searchResult",
- "etag": "tPXqtY3yxbl16gvHtS2y5q-9-Z4",
+ "etag": "CrkNsjfCWPNXBUPrlsGLNMEXk0w",
"id": {
"kind": "youtube#video",
- "videoId": "NU96ss5pEoE"
+ "videoId": "4HVqC4zEPDc"
},
"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 ...",
+ "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/NU96ss5pEoE/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/4HVqC4zEPDc/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/NU96ss5pEoE/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/4HVqC4zEPDc/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/NU96ss5pEoE/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/4HVqC4zEPDc/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "( LUX ) - Ambient Music",
+ "channelTitle": "Healing Soul",
"liveBroadcastContent": "live",
- "publishTime": "2023-10-29T20:43:22Z"
+ "publishTime": "2023-06-26T09:09:44Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "E7N68hIbP7qsdNj53xPX-pbxh3s",
+ "etag": "tPXqtY3yxbl16gvHtS2y5q-9-Z4",
"id": {
"kind": "youtube#video",
- "videoId": "V1eqPTRAW6s"
+ "videoId": "NU96ss5pEoE"
},
"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.",
+ "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/V1eqPTRAW6s/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/NU96ss5pEoE/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/V1eqPTRAW6s/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/NU96ss5pEoE/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/V1eqPTRAW6s/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/NU96ss5pEoE/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "DnBRadio - Drum and Bass",
+ "channelTitle": "( LUX ) - Ambient Music",
"liveBroadcastContent": "live",
- "publishTime": "2023-11-23T22:46:14Z"
+ "publishTime": "2023-10-29T20:43:22Z"
}
},
{
@@ -579,104 +511,104 @@
},
{
"kind": "youtube#searchResult",
- "etag": "aBuFCrqhyNNnfU1_YNF5C17czBc",
+ "etag": "2qhpULhce8lnpjvDAvDSU_vCUgY",
"id": {
"kind": "youtube#video",
- "videoId": "2Jd5XGpgScA"
+ "videoId": "XhEOeIzpu3o"
},
"snippet": {
- "publishedAt": "2024-01-03T02:30:39Z",
+ "publishedAt": "2024-01-15T02:36:41Z",
"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, ...",
+ "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/2Jd5XGpgScA/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/XhEOeIzpu3o/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/2Jd5XGpgScA/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/XhEOeIzpu3o/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/2Jd5XGpgScA/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/XhEOeIzpu3o/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
"channelTitle": "Jazz Cafe Ambience",
"liveBroadcastContent": "live",
- "publishTime": "2024-01-03T02:30:39Z"
+ "publishTime": "2024-01-15T02:36:41Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "pIHaNITtyEtyJ5ePCS1FZFZLp4k",
+ "etag": "I43m3aryKaPAfRjADVNNzYqzDFQ",
"id": {
"kind": "youtube#video",
- "videoId": "4xDzrJKXOOY"
+ "videoId": "iKJv5LX1wlQ"
},
"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 ...",
+ "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/4xDzrJKXOOY/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/iKJv5LX1wlQ/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/4xDzrJKXOOY/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/iKJv5LX1wlQ/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/4xDzrJKXOOY/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/iKJv5LX1wlQ/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Lofi Girl",
+ "channelTitle": "Relax Jazz Cafe",
"liveBroadcastContent": "live",
- "publishTime": "2023-07-02T21:17:31Z"
+ "publishTime": "2024-01-04T08:51:42Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "2qhpULhce8lnpjvDAvDSU_vCUgY",
+ "etag": "pIHaNITtyEtyJ5ePCS1FZFZLp4k",
"id": {
"kind": "youtube#video",
- "videoId": "XhEOeIzpu3o"
+ "videoId": "4xDzrJKXOOY"
},
"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, ...",
+ "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/XhEOeIzpu3o/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/4xDzrJKXOOY/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/XhEOeIzpu3o/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/4xDzrJKXOOY/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/XhEOeIzpu3o/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/4xDzrJKXOOY/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Jazz Cafe Ambience",
+ "channelTitle": "Lofi Girl",
"liveBroadcastContent": "live",
- "publishTime": "2024-01-15T02:36:41Z"
+ "publishTime": "2023-07-02T21:17:31Z"
}
},
{
@@ -715,104 +647,104 @@
},
{
"kind": "youtube#searchResult",
- "etag": "I43m3aryKaPAfRjADVNNzYqzDFQ",
+ "etag": "7P81qANo1pc7vuUy9PNjkHSpDuY",
"id": {
"kind": "youtube#video",
- "videoId": "iKJv5LX1wlQ"
+ "videoId": "_bLX5WfDQfM"
},
"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 ...",
+ "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/iKJv5LX1wlQ/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/_bLX5WfDQfM/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/iKJv5LX1wlQ/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/_bLX5WfDQfM/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/iKJv5LX1wlQ/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/_bLX5WfDQfM/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Relax Jazz Cafe",
+ "channelTitle": "4K Video Nature - Focus Music",
"liveBroadcastContent": "live",
- "publishTime": "2024-01-04T08:51:42Z"
+ "publishTime": "2024-08-29T14:20:41Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "DT2CVS01cm9tZNqniyDRmUb9-xU",
+ "etag": "GwZZ5mljd4-7DdD5QHJSNtA-UjM",
"id": {
"kind": "youtube#video",
- "videoId": "CDgxzo4dyFI"
+ "videoId": "jfKfPfyJRdk"
},
"snippet": {
- "publishedAt": "2023-10-12T06:48:49Z",
- "channelId": "UCKvKjZ3l9azWz4F49q2R3tQ",
- "title": "New York Coffee Shop Ambience ☕ Relaxing Jazz Instrumental Music For Good Mood, Work, Study",
- "description": "Please Subscribe! https://bit.ly/3pbWwgg Listen now on Spotify: https://spoti.fi/3GL4xkA ☕ Listen to some gentle jazz while ...",
+ "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/CDgxzo4dyFI/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/jfKfPfyJRdk/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/CDgxzo4dyFI/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/jfKfPfyJRdk/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/CDgxzo4dyFI/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/jfKfPfyJRdk/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Coffee Relaxing Jazz",
+ "channelTitle": "Lofi Girl",
"liveBroadcastContent": "live",
- "publishTime": "2023-10-12T06:48:49Z"
+ "publishTime": "2022-07-12T12:12:29Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "Kso1MONe4V5iP2HnyhM5VXLtloI",
+ "etag": "DT2CVS01cm9tZNqniyDRmUb9-xU",
"id": {
"kind": "youtube#video",
- "videoId": "nf-LRXSFBbA"
+ "videoId": "CDgxzo4dyFI"
},
"snippet": {
- "publishedAt": "2024-08-22T15:00:05Z",
- "channelId": "UCBBnm8129F9JyziLqUR9klQ",
- "title": "Ambient Music for Reality Escape — Work and Study — Infinity Radio",
- "description": "Infinity radio features ambient and drone instrumental music that promotes meditative state, which can boost memory formation.",
+ "publishedAt": "2023-10-12T06:48:49Z",
+ "channelId": "UCKvKjZ3l9azWz4F49q2R3tQ",
+ "title": "New York Coffee Shop Ambience ☕ Relaxing Jazz Instrumental Music For Good Mood, Work, Study",
+ "description": "Please Subscribe! https://bit.ly/3pbWwgg Listen now on Spotify: https://spoti.fi/3GL4xkA ☕ Listen to some gentle jazz while ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/nf-LRXSFBbA/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/CDgxzo4dyFI/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/nf-LRXSFBbA/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/CDgxzo4dyFI/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/nf-LRXSFBbA/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/CDgxzo4dyFI/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Ambient Music Lab",
+ "channelTitle": "Coffee Relaxing Jazz",
"liveBroadcastContent": "live",
- "publishTime": "2024-08-22T15:00:05Z"
+ "publishTime": "2023-10-12T06:48:49Z"
}
},
{
@@ -917,6 +849,74 @@
"publishTime": "2023-12-28T00:41:41Z"
}
},
+ {
+ "kind": "youtube#searchResult",
+ "etag": "5wY6pjdlZp1Krl1BsUrd1APgkgg",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "BKMJKqQgR48"
+ },
+ "snippet": {
+ "publishedAt": "2024-03-28T09:41:42Z",
+ "channelId": "UChIv2ovrTHbZDDIaLFR9P-Q",
+ "title": "Smooth Jazz Music | Morning Seaside Cafe Ambience - Jazz Instrumental Music for Stress Relief",
+ "description": "Smooth Jazz Music | Morning Seaside Cafe Ambience - Jazz Instrumental Music for Stress Relief Immerse yourself in the tranquil ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/BKMJKqQgR48/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/BKMJKqQgR48/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/BKMJKqQgR48/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Relaxing Jazz Coffee",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-03-28T09:41:42Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "u4sX3EPvjcNmCJSiqq2E5mf7V_s",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "ZoxtCBxKjV8"
+ },
+ "snippet": {
+ "publishedAt": "2022-07-06T07:21:02Z",
+ "channelId": "UC4L-dSrzbPoZcr1Av5GvwKw",
+ "title": "Relaxing Music For Stress Relief, Anxiety and Depressive States • Heal Mind, Body and Soul",
+ "description": "Relaxing Music For Stress Relief, Anxiety and Depressive States • Heal Mind, Body and Soul #helios4K #relax #sleepmusic ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/ZoxtCBxKjV8/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/ZoxtCBxKjV8/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/ZoxtCBxKjV8/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Open Heart Music - Helios 4K",
+ "liveBroadcastContent": "live",
+ "publishTime": "2022-07-06T07:21:02Z"
+ }
+ },
{
"kind": "youtube#searchResult",
"etag": "88sJr_dIkKWS9JnrYIL961ysFc4",
@@ -953,70 +953,70 @@
},
{
"kind": "youtube#searchResult",
- "etag": "ZQS_yWjekUIKTD2QOaCvWbEszrQ",
+ "etag": "xrclTk_moTWiF0LeVRw4xqRw0Fc",
"id": {
"kind": "youtube#video",
- "videoId": "XFdTycvQMQo"
+ "videoId": "jIp4J62aRvY"
},
"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 ...",
+ "publishedAt": "2022-11-01T05:21:40Z",
+ "channelId": "UCVX_4LoUm4mdZBPdpMJkkSQ",
+ "title": "🔴Disney Relaxing Piano Collection 24/7",
+ "description": "Thank you for visiting kno Music Channel. This video is pre-recorded. The music is arranged and performed by kno. To deliver you ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/XFdTycvQMQo/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/jIp4J62aRvY/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/XFdTycvQMQo/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/jIp4J62aRvY/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/XFdTycvQMQo/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/jIp4J62aRvY/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Coffee Relaxing Jazz",
+ "channelTitle": "kno Music",
"liveBroadcastContent": "live",
- "publishTime": "2023-10-27T14:26:41Z"
+ "publishTime": "2022-11-01T05:21:40Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "fg6pUWfy5NkVXAK3XAKROSR3FRo",
+ "etag": "ZQS_yWjekUIKTD2QOaCvWbEszrQ",
"id": {
"kind": "youtube#video",
- "videoId": "nOa1kTGU5pU"
+ "videoId": "XFdTycvQMQo"
},
"snippet": {
- "publishedAt": "2024-04-21T04:22:40Z",
- "channelId": "UCFjM4SzH8zAvsC0azlStgaw",
- "title": "Elegant Bossa Nova Jazz Music & Ocean Wave Sounds at Seaside Cafe Ambience for Relax, Stress Relief",
- "description": "Elegant Bossa Nova Jazz Music & Ocean Wave Sounds at Seaside Cafe Ambience for Relax, Stress Relief #seasidejazz ...",
+ "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/nOa1kTGU5pU/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/XFdTycvQMQo/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/nOa1kTGU5pU/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/XFdTycvQMQo/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/nOa1kTGU5pU/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/XFdTycvQMQo/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Bossa Nova Jazz",
+ "channelTitle": "Coffee Relaxing Jazz",
"liveBroadcastContent": "live",
- "publishTime": "2024-04-21T04:22:40Z"
+ "publishTime": "2023-10-27T14:26:41Z"
}
},
{
@@ -1053,6 +1053,40 @@
"publishTime": "2023-01-19T08:59:48Z"
}
},
+ {
+ "kind": "youtube#searchResult",
+ "etag": "JKgRD5rIVOfJErIizm5tRoQYn08",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "ZAFuClPb4WA"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-20T19:14:12Z",
+ "channelId": "UCdi8yQBdBfn1ECu3ayH_TnA",
+ "title": "Snowy winter pines, Beautiful Relaxing Music, Peaceful Soothing Music, By Tim Janis",
+ "description": "Snowy winter pines, Beautiful Relaxing Music, Peaceful Soothing Music, By Tim Janis. My instrumental music can help you find ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/ZAFuClPb4WA/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/ZAFuClPb4WA/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/ZAFuClPb4WA/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Tim Janis",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-20T19:14:12Z"
+ }
+ },
{
"kind": "youtube#searchResult",
"etag": "TftMOaFjQ47Z3tC7E4KergA_zXM",
@@ -1089,70 +1123,70 @@
},
{
"kind": "youtube#searchResult",
- "etag": "X7kpc-XqaHbVhyAeSdJCK4kGpDo",
+ "etag": "O5HnJGnR93lYMJWj74BlgCFQBhk",
"id": {
"kind": "youtube#video",
- "videoId": "CkchxBUtXu4"
+ "videoId": "9DqfvFWrBaM"
},
"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.",
+ "publishedAt": "2024-07-03T11:28:55Z",
+ "channelId": "UCmGU7IuCWuFRhM8WXvOEM4A",
+ "title": "Dune Ambient Music 24/7 | Relax, Study, Meditate, Sleep",
+ "description": "The first and unique Dune Radio. Find the long version of these songs on my channel, and short versions on my Spotify. More ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/CkchxBUtXu4/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/9DqfvFWrBaM/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/CkchxBUtXu4/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/9DqfvFWrBaM/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/CkchxBUtXu4/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/9DqfvFWrBaM/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Yellow Brick Cinema - Relaxing Music",
+ "channelTitle": "Symbology Cinematics",
"liveBroadcastContent": "live",
- "publishTime": "2024-07-07T13:01:02Z"
+ "publishTime": "2024-07-03T11:28:55Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "n83GOp7tg8iInQeBBEmJaUJR3OU",
+ "etag": "X7kpc-XqaHbVhyAeSdJCK4kGpDo",
"id": {
"kind": "youtube#video",
- "videoId": "wwya7JCD5_0"
+ "videoId": "CkchxBUtXu4"
},
"snippet": {
- "publishedAt": "2022-03-02T15:48:08Z",
- "channelId": "UCdi8yQBdBfn1ECu3ayH_TnA",
- "title": "Beautiful Relaxing Music, Peaceful Soothing Instrumental Music, "Wilderness Bears" by Tim Janis",
- "description": "Beautiful Relaxing Music, Peaceful Soothing Instrumental Music, \"Wilderness Bears\" by Tim Janis. My instrumental music can ...",
+ "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/wwya7JCD5_0/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/CkchxBUtXu4/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/wwya7JCD5_0/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/CkchxBUtXu4/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/wwya7JCD5_0/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/CkchxBUtXu4/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Tim Janis",
+ "channelTitle": "Yellow Brick Cinema - Relaxing Music",
"liveBroadcastContent": "live",
- "publishTime": "2022-03-02T15:48:08Z"
+ "publishTime": "2024-07-07T13:01:02Z"
}
},
{
@@ -1223,6 +1257,40 @@
"publishTime": "2024-03-28T14:10:40Z"
}
},
+ {
+ "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": "8xqVH07fSKDTa__980OSUhNnUEk",
@@ -1259,104 +1327,104 @@
},
{
"kind": "youtube#searchResult",
- "etag": "KR3IauYVgjf53ZN28arHzkG6iPk",
+ "etag": "VJ34qJspcNnO7e6VthdvUzZIziY",
"id": {
"kind": "youtube#video",
- "videoId": "4V0uYRtPyfE"
+ "videoId": "-5ajVJ1Yxlg"
},
"snippet": {
- "publishedAt": "2020-05-24T02:26:30Z",
- "channelId": "UCXwZEtR4z7grN0nmGzwg6Ow",
- "title": "Hula Flower: Beautiful Tropical Music & Relaxing Hawaiian Music LIVE for Paradise Holiday",
- "description": "Listen Everywhere → Hula Flower: https://bgmc.lnk.to/O22WtWKf Tracklist 1 Hawaiian Mood 2 Hula Moon 3 Aloha Street 4 ...",
+ "publishedAt": "2022-11-21T10:41:21Z",
+ "channelId": "UCjzHeG1KWoonmf9d5KBvSiw",
+ "title": "Rainy Piano Radio 🌧️ Relaxing Music with Rain Sounds 24/7",
+ "description": "Relaxing piano music & rain sounds 24/7 for sleep, relaxation, studying, reading, focus, concentration, yoga, spa, mindfulness, ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/4V0uYRtPyfE/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/-5ajVJ1Yxlg/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/4V0uYRtPyfE/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/-5ajVJ1Yxlg/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/4V0uYRtPyfE/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/-5ajVJ1Yxlg/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Hawaiian BGM channel",
+ "channelTitle": "Soothing Relaxation",
"liveBroadcastContent": "live",
- "publishTime": "2020-05-24T02:26:30Z"
+ "publishTime": "2022-11-21T10:41:21Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "auLTkDrf0Vf1NcTigGo9XGH7Jao",
+ "etag": "A9AiTmlXmc0uMfh6Myi3mwmANck",
"id": {
"kind": "youtube#video",
- "videoId": "Ihm9OQWmibA"
+ "videoId": "TaBX3DdGOxc"
},
"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 ...",
+ "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/Ihm9OQWmibA/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/TaBX3DdGOxc/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/Ihm9OQWmibA/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/TaBX3DdGOxc/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/Ihm9OQWmibA/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/TaBX3DdGOxc/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "The Grand Sound",
+ "channelTitle": "View Escape",
"liveBroadcastContent": "live",
- "publishTime": "2022-11-03T20:01:28Z"
+ "publishTime": "2022-01-05T01:02:37Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "7AGZtSHYIzFv3vZ1pe7aYFCa35c",
+ "etag": "WVmQX9-IUX6LMeMMIyb2D9FsTMY",
"id": {
"kind": "youtube#video",
- "videoId": "XXdoZuYtNoc"
+ "videoId": "cOhhmMe_V1k"
},
"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 ...",
+ "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/XXdoZuYtNoc/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/cOhhmMe_V1k/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/XXdoZuYtNoc/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/cOhhmMe_V1k/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/XXdoZuYtNoc/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/cOhhmMe_V1k/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Space Relax Music Channel",
+ "channelTitle": "Relax Jazz Cafe",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-03T09:09:30Z"
+ "publishTime": "2024-08-29T09:52:12Z"
}
},
{
@@ -1395,36 +1463,70 @@
},
{
"kind": "youtube#searchResult",
- "etag": "MVPh2x8URYtBuQrdzEB9pG6a8Ho",
+ "etag": "C0gCaorKDc49adyWiKE861LSvg4",
"id": {
"kind": "youtube#video",
- "videoId": "dXIyMS61B68"
+ "videoId": "FNM4Nqoue3w"
},
"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 ...",
+ "publishedAt": "2024-03-22T16:44:33Z",
+ "channelId": "UCEyDPrWKqwWORC6TFTo4a-w",
+ "title": "24/7 Deep Sleep Music Black Screen No Ads, Deep Sleep Music Space Relax, Space Relaxing Music Sleep",
+ "description": "24/7 Deep Sleep Music Black Screen No Ads, Deep Sleep Music Space Relax, Space Relaxing Music Sleep 24/7 diep ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/dXIyMS61B68/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/FNM4Nqoue3w/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/dXIyMS61B68/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/FNM4Nqoue3w/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/dXIyMS61B68/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/FNM4Nqoue3w/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Tim Janis",
+ "channelTitle": "Soaking Worship Music & Prayer Music",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-03-22T16:44:33Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "N1EbAcGucSbCavsZXSH8uX-7smU",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "bd2unkV8JxA"
+ },
+ "snippet": {
+ "publishedAt": "2024-02-03T14:44:43Z",
+ "channelId": "UC3EsPQp04deLlxQxc2b2__g",
+ "title": "Saxophone Jazz & Soft Late Night Jazz Music | Relax Sax Piano Background Music for Peaceful Evening",
+ "description": "Saxophone Jazz & Soft Late Night Jazz Music | Relax Sax Piano Background Music for Peaceful Evening Welcome to Relax ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/bd2unkV8JxA/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/bd2unkV8JxA/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/bd2unkV8JxA/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Relax Jazz BGM",
"liveBroadcastContent": "live",
- "publishTime": "2021-12-27T21:17:06Z"
+ "publishTime": "2024-02-03T14:44:43Z"
}
},
{
@@ -1463,36 +1565,36 @@
},
{
"kind": "youtube#searchResult",
- "etag": "hTam6fcbq31qoYmDDuKi2fQee60",
+ "etag": "7AGZtSHYIzFv3vZ1pe7aYFCa35c",
"id": {
"kind": "youtube#video",
- "videoId": "UhUeTG8rAXw"
+ "videoId": "XXdoZuYtNoc"
},
"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 ...",
+ "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/UhUeTG8rAXw/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/XXdoZuYtNoc/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/UhUeTG8rAXw/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/XXdoZuYtNoc/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/UhUeTG8rAXw/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/XXdoZuYtNoc/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Beautiful Chill Music Mix",
+ "channelTitle": "Space Relax Music Channel",
"liveBroadcastContent": "live",
- "publishTime": "2024-06-22T03:50:26Z"
+ "publishTime": "2024-11-03T09:09:30Z"
}
},
{
@@ -1565,138 +1667,36 @@
},
{
"kind": "youtube#searchResult",
- "etag": "oqxbdB39G9bFp7gORAUlk2SSVD8",
- "id": {
- "kind": "youtube#video",
- "videoId": "pCytGSN9oms"
- },
- "snippet": {
- "publishedAt": "2024-04-26T10:13:04Z",
- "channelId": "UCIC7zBML7t1Zpi0XvnbAvEw",
- "title": "Morning Jazz With The Sound Of Ocean Waves To Relax - Smooth Jazz Music In Luxury Living Room Space",
- "description": "Morning Jazz With The Sound Of Ocean Waves To Relax - Smooth Jazz Music In Luxury Living Room Space Are you looking ...",
- "thumbnails": {
- "default": {
- "url": "https://i.ytimg.com/vi/pCytGSN9oms/default_live.jpg",
- "width": 120,
- "height": 90
- },
- "medium": {
- "url": "https://i.ytimg.com/vi/pCytGSN9oms/mqdefault_live.jpg",
- "width": 320,
- "height": 180
- },
- "high": {
- "url": "https://i.ytimg.com/vi/pCytGSN9oms/hqdefault_live.jpg",
- "width": 480,
- "height": 360
- }
- },
- "channelTitle": "Colors Jazz",
- "liveBroadcastContent": "live",
- "publishTime": "2024-04-26T10:13:04Z"
- }
- },
- {
- "kind": "youtube#searchResult",
- "etag": "g7DDVC10rDLvp2nhanvLvVgbC4w",
- "id": {
- "kind": "youtube#video",
- "videoId": "y6TZHLAzg5o"
- },
- "snippet": {
- "publishedAt": "2024-01-08T16:22:25Z",
- "channelId": "UCFd5q5UWWV0RpSpPkTFOtRg",
- "title": "Classical Piano & Fireplace 24/7 - Mozart, Chopin, Beethoven, Bach, Grieg, Schumann, Satie",
- "description": "Listen on Spotify: https://open.spotify.com/album/4M39c8uM1ambWbg3UHdgXX Classical Piano Music & Fireplace 24/7 - Mozart, ...",
- "thumbnails": {
- "default": {
- "url": "https://i.ytimg.com/vi/y6TZHLAzg5o/default_live.jpg",
- "width": 120,
- "height": 90
- },
- "medium": {
- "url": "https://i.ytimg.com/vi/y6TZHLAzg5o/mqdefault_live.jpg",
- "width": 320,
- "height": 180
- },
- "high": {
- "url": "https://i.ytimg.com/vi/y6TZHLAzg5o/hqdefault_live.jpg",
- "width": 480,
- "height": 360
- }
- },
- "channelTitle": "Odd Eagle",
- "liveBroadcastContent": "live",
- "publishTime": "2024-01-08T16:22:25Z"
- }
- },
- {
- "kind": "youtube#searchResult",
- "etag": "5X0Mms2SikRZSfHQmuRupWqBQsI",
- "id": {
- "kind": "youtube#video",
- "videoId": "6Q7tdD5lJxg"
- },
- "snippet": {
- "publishedAt": "2022-02-21T10:17:35Z",
- "channelId": "UC14ap4T608Zz_Mz4eezhIqw",
- "title": "Progressive House · Relaxing Focus Music 🧠✍️ · 24/7 Live",
- "description": "Carefully selected melodic Progressive House & Trance music for perfect studying, work, focus, or relaxation. Our live music ...",
- "thumbnails": {
- "default": {
- "url": "https://i.ytimg.com/vi/6Q7tdD5lJxg/default_live.jpg",
- "width": 120,
- "height": 90
- },
- "medium": {
- "url": "https://i.ytimg.com/vi/6Q7tdD5lJxg/mqdefault_live.jpg",
- "width": 320,
- "height": 180
- },
- "high": {
- "url": "https://i.ytimg.com/vi/6Q7tdD5lJxg/hqdefault_live.jpg",
- "width": 480,
- "height": 360
- }
- },
- "channelTitle": "The Grand Sound",
- "liveBroadcastContent": "live",
- "publishTime": "2022-02-21T10:17:35Z"
- }
- },
- {
- "kind": "youtube#searchResult",
- "etag": "T8QU7oyVN6PbwaVouXa0JuT1S4s",
+ "etag": "hTam6fcbq31qoYmDDuKi2fQee60",
"id": {
"kind": "youtube#video",
- "videoId": "Z67utPxiiuw"
+ "videoId": "UhUeTG8rAXw"
},
"snippet": {
- "publishedAt": "2024-09-29T18:31:56Z",
- "channelId": "UCwobzUc3z-0PrFpoRxNszXQ",
- "title": "🔴 Relaxing Music 24/7, Stress Relief Music, Sleep Music, Meditation Music, Study, Calming Music",
- "description": "Enjoy our latest relaxing music live stream: youtube.com/yellowbrickcinema/live Relaxing Music 24/7, Stress Relief Music, Sleep ...",
+ "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/Z67utPxiiuw/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/UhUeTG8rAXw/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/Z67utPxiiuw/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/UhUeTG8rAXw/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/Z67utPxiiuw/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/UhUeTG8rAXw/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Yellow Brick Cinema - Relaxing Music",
+ "channelTitle": "Beautiful Chill Music Mix",
"liveBroadcastContent": "live",
- "publishTime": "2024-09-29T18:31:56Z"
+ "publishTime": "2024-06-22T03:50:26Z"
}
}
]
\ No newline at end of file
diff --git a/collections/codingCollection.json b/collections/codingCollection.json
index 253ce32..374688a 100644
--- a/collections/codingCollection.json
+++ b/collections/codingCollection.json
@@ -307,36 +307,36 @@
},
{
"kind": "youtube#searchResult",
- "etag": "XC4R28FGwDr2BMNe4cHU9wJ__6E",
+ "etag": "asLnHD3CRCZmfFlYbCblryptf8E",
"id": {
"kind": "youtube#video",
- "videoId": "5MoZ1hJuvqM"
+ "videoId": "x4rFhThSX04"
},
"snippet": {
- "publishedAt": "2024-11-22T15:00:13Z",
+ "publishedAt": "2024-11-20T18:25:12Z",
"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 ...",
+ "title": "Learn React JS - Full Beginner’s Tutorial (2024) & Practice Projects",
+ "description": "Learn modern React basics in the most interactive, hands-on way possible in the full course for beginners. Throughout this tutorial ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/5MoZ1hJuvqM/default.jpg",
+ "url": "https://i.ytimg.com/vi/x4rFhThSX04/default.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/5MoZ1hJuvqM/mqdefault.jpg",
+ "url": "https://i.ytimg.com/vi/x4rFhThSX04/mqdefault.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/5MoZ1hJuvqM/hqdefault.jpg",
+ "url": "https://i.ytimg.com/vi/x4rFhThSX04/hqdefault.jpg",
"width": 480,
"height": 360
}
},
"channelTitle": "freeCodeCamp.org",
"liveBroadcastContent": "none",
- "publishTime": "2024-11-22T15:00:13Z"
+ "publishTime": "2024-11-20T18:25:12Z"
}
},
{
diff --git a/collections/generalCollection.json b/collections/generalCollection.json
index 6ecdeb7..a731744 100644
--- a/collections/generalCollection.json
+++ b/collections/generalCollection.json
@@ -1,4 +1,38 @@
[
+ {
+ "kind": "youtube#searchResult",
+ "etag": "6bkeulWI1o48ENi7A718rpvjHAU",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "oFLkO9KchQ0"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-23T11:20:55Z",
+ "channelId": "UCH7nv1A9xIrAifZJNvt7cgA",
+ "title": "Devendra Fadnavis Speech LIVE | Maharashtra Election Result | Vidhan Sabha | ABP MAJHA",
+ "description": "abpमाझा #abpmajhalive #MaharashtraResult #maharashtravidhansabha #MaharashtraAssemblyElectionResult ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/oFLkO9KchQ0/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/oFLkO9KchQ0/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/oFLkO9KchQ0/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "ABP MAJHA",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-23T11:20:55Z"
+ }
+ },
{
"kind": "youtube#searchResult",
"etag": "WlvxHn7zdtfoE5bsCsbp5aDqGnA",
@@ -35,70 +69,70 @@
},
{
"kind": "youtube#searchResult",
- "etag": "x4haWxoAJTgSzSqZCl559HOqZW4",
+ "etag": "2eq6yZnsetoq4k8f1H3jiqZGqNE",
"id": {
"kind": "youtube#video",
- "videoId": "9W6eqOypZ50"
+ "videoId": "VSb1-YSZsTs"
},
"snippet": {
- "publishedAt": "2024-11-23T00:50:29Z",
- "channelId": "UCDj9HHrRUzlsTuPQN0PHxjw",
- "title": "JAMUNA TV | JTV LIVE | সরাসরি যমুনা টিভি | LIVE STREAMING | BANGLA TV LIVE | BD TV LIVE",
- "description": "jamunatvplus_live #jamunatelevision #breaking_news #JamunaTelevisionLive #JtvLive #jamunatvplus JAMUNA TV LIVE | JTV ...",
+ "publishedAt": "2024-11-23T08:20:19Z",
+ "channelId": "UCPXTXMecYqnRKNdqdVOGSFg",
+ "title": "వయనాడ్లో ప్రియాంక గాంధీకి భారీ మెజార్టీ LIVE | Priyanka Gandhi Breaks Rahul Gandhi Record | Wayanad",
+ "description": "TV9 News App : https://onelink.to/de8b7y ▻ Watch LIVE: https://goo.gl/w3aQde ▻ తాజా వార్తల కోసం ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/9W6eqOypZ50/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/VSb1-YSZsTs/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/9W6eqOypZ50/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/VSb1-YSZsTs/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/9W6eqOypZ50/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/VSb1-YSZsTs/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Jamuna TV Plus",
+ "channelTitle": "TV9 Telugu Live",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-23T00:50:29Z"
+ "publishTime": "2024-11-23T08:20:19Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "6bkeulWI1o48ENi7A718rpvjHAU",
+ "etag": "QSc8q3x9xiEzZE0MbzXrzvrF9Vo",
"id": {
"kind": "youtube#video",
- "videoId": "oFLkO9KchQ0"
+ "videoId": "BedRXSg0bsA"
},
"snippet": {
- "publishedAt": "2024-11-23T11:20:55Z",
- "channelId": "UCH7nv1A9xIrAifZJNvt7cgA",
- "title": "Devendra Fadnavis Speech LIVE | Maharashtra Election Result | Vidhan Sabha | ABP MAJHA",
- "description": "abpमाझा #abpmajhalive #MaharashtraResult #maharashtravidhansabha #MaharashtraAssemblyElectionResult ...",
+ "publishedAt": "2024-11-23T05:37:33Z",
+ "channelId": "UCIvaYmXn910QMdemBG3v1pQ",
+ "title": "PM Modi Reaction On Maharashtra Election Results LIVE : महाराष्ट्र में प्रचंड जीत पर मोदी का जश्न!",
+ "description": "pmmodi #maharashtraelectionresults #maharashtra #eknathshinde #udhavthackery #bignews #live About Channel: ज़ी ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/oFLkO9KchQ0/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/BedRXSg0bsA/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/oFLkO9KchQ0/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/BedRXSg0bsA/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/oFLkO9KchQ0/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/BedRXSg0bsA/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "ABP MAJHA",
+ "channelTitle": "Zee News",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-23T11:20:55Z"
+ "publishTime": "2024-11-23T05:37:33Z"
}
},
{
@@ -137,70 +171,70 @@
},
{
"kind": "youtube#searchResult",
- "etag": "gcyNCuMh_ICzvgypNQaMePy9Pto",
+ "etag": "ybAMsM_iqibQOl7LoRbd-iXJV3c",
"id": {
"kind": "youtube#video",
- "videoId": "pGsl_DH7gD0"
+ "videoId": "_8cvAlp8C7I"
},
"snippet": {
- "publishedAt": "2024-11-23T11:19:31Z",
- "channelId": "UCttspZesZIDEwwpVIgoZtWQ",
- "title": "Modi-Yogi Reaction on Maharashtra Election Results LIVE: चुनाव रिजल्ट देख मोदी-योगी हैरान!",
- "description": "Counting of votes for the Maharashtra Assembly elections will begin at 8 am on Saturday. The results of the Maharashtra ...",
+ "publishedAt": "2024-11-22T17:13:04Z",
+ "channelId": "UCeY0bbntWzzVIaj2z3QigXg",
+ "title": "LIVE: NBC News NOW",
+ "description": "NBC News NOW is live, reporting breaking news and developing stories in real time. We are on the scene, covering the most ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/pGsl_DH7gD0/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/_8cvAlp8C7I/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/pGsl_DH7gD0/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/_8cvAlp8C7I/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/pGsl_DH7gD0/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/_8cvAlp8C7I/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "IndiaTV",
+ "channelTitle": "NBC News",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-23T11:19:31Z"
+ "publishTime": "2024-11-22T17:13:04Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "y5Z_rsdE9PUMeJIog11JhiLC5C4",
+ "etag": "Q2zFOSOJYtLHrgwf81QAzioFdv4",
"id": {
"kind": "youtube#video",
- "videoId": "PLdSX54FWTU"
+ "videoId": "xPbIOXLcfiM"
},
"snippet": {
- "publishedAt": "2024-11-23T05:50:13Z",
- "channelId": "UC_vt34wimdCzdkrzVejwX9g",
- "title": "🔴 𝗟𝗶𝘃𝗲 Latest Updates: (PTI Protest 24 Nov) 𝗜𝘀𝗹𝗮𝗺𝗮𝗯𝗮𝗱 𝗦𝗵𝘂𝘁𝗱𝗼𝘄𝗻 | Section 144 Imposed in Punjab Amid",
- "description": "IslamabadShutdown #PTIProtest #Section144 #pakistannews #GeoNews #PunjabProtest #PTIUpdates #PakistanPolitics ...",
+ "publishedAt": "2024-11-23T01:56:01Z",
+ "channelId": "UCJrpiw6dS09Zx2Z8d9AFWDA",
+ "title": "Live: IND Vs AUS, Day 2 - 1st Test | Live Scores & Commentary | India vs Australia | Last 30",
+ "description": "Live: IND Vs AUS, Day 2 - 1st Test, Perth | Live Scores & Commentary | India vs Australia | 2024 Series For queries: ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/PLdSX54FWTU/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/xPbIOXLcfiM/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/PLdSX54FWTU/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/xPbIOXLcfiM/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/PLdSX54FWTU/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/xPbIOXLcfiM/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Geo News",
+ "channelTitle": "CricTalks",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-23T05:50:13Z"
+ "publishTime": "2024-11-23T01:56:01Z"
}
},
{
@@ -239,70 +273,104 @@
},
{
"kind": "youtube#searchResult",
- "etag": "U6MV5F1p90ge2zoOL0SJTcSuZgc",
+ "etag": "_YgvHCr6K7NWCElZepUm0Ky3hgs",
"id": {
"kind": "youtube#video",
- "videoId": "T5z88yrR9Y0"
+ "videoId": "Ds2xdZhglCs"
},
"snippet": {
- "publishedAt": "2024-11-23T03:34:49Z",
- "channelId": "UCYPvAwZP8pZhSMW8qs7cVCw",
- "title": "Maharashtra Election Result LIVE News | Tight Fight Between In MVA Vs Mahayuti | Mumbai News",
- "description": "Maharashtra Election Result LIVE News | Tight Fight Between In MVA Vs Mahayuti | Mumbai News After months of high-octane ...",
+ "publishedAt": "2024-11-23T09:38:08Z",
+ "channelId": "UCttspZesZIDEwwpVIgoZtWQ",
+ "title": "Final Tally Of Election Results Live : कांग्रेस पर ये क्या बोलने लगे Robert Vadra , प्रियंका हैरान!",
+ "description": "Final Tally Of Election Results Live : कांग्रेस पर ये क्या बोलने लगे Robert Vadra , प्रियंका ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/T5z88yrR9Y0/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/Ds2xdZhglCs/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/T5z88yrR9Y0/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/Ds2xdZhglCs/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/T5z88yrR9Y0/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/Ds2xdZhglCs/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "India Today",
+ "channelTitle": "IndiaTV",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-23T03:34:49Z"
+ "publishTime": "2024-11-23T09:38:08Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "VwCaGawPyTL-T98uQcp8SbMbaq4",
+ "etag": "gcyNCuMh_ICzvgypNQaMePy9Pto",
"id": {
"kind": "youtube#video",
- "videoId": "3DtkuRXAx3I"
+ "videoId": "pGsl_DH7gD0"
},
"snippet": {
- "publishedAt": "2024-11-23T08:32:16Z",
- "channelId": "UCYPvAwZP8pZhSMW8qs7cVCw",
- "title": "Maharashtra Election Result Analysed LIVE | How MVA Failed To Make An Impact In Maha Politics",
- "description": "Maharashtra Election Result Analysed LIVE | How MVA Failed To Make An Impact In Maha Politics The Maharashtra Assembly ...",
+ "publishedAt": "2024-11-23T11:19:31Z",
+ "channelId": "UCttspZesZIDEwwpVIgoZtWQ",
+ "title": "Modi-Yogi Reaction on Maharashtra Election Results LIVE: चुनाव रिजल्ट देख मोदी-योगी हैरान!",
+ "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/3DtkuRXAx3I/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/pGsl_DH7gD0/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/3DtkuRXAx3I/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/pGsl_DH7gD0/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/3DtkuRXAx3I/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/pGsl_DH7gD0/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "India Today",
+ "channelTitle": "IndiaTV",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-23T11:19:31Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "yDo44C3eKiaUyGtGUNgbQbOPUPI",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "w-aucvqPnuI"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-23T01:22:43Z",
+ "channelId": "UCa-vioGhe2btBcZneaPonKA",
+ "title": "LIVE: Channapatna, Sandur, Shiggon By Election Result | ಬೈಎಲೆಕ್ಷನ್ ಫಲಿತಾಂಶ ನೇರಪ್ರಸಾರ",
+ "description": "LIVE: Channapatna, Sandur, Shiggon By Election Result | ಬೈಎಲೆಕ್ಷನ್ ಫಲಿತಾಂಶ ನೇರಪ್ರಸಾರ ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/w-aucvqPnuI/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/w-aucvqPnuI/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/w-aucvqPnuI/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "News18 Kannada",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-23T08:32:16Z"
+ "publishTime": "2024-11-23T01:22:43Z"
}
},
{
@@ -341,36 +409,36 @@
},
{
"kind": "youtube#searchResult",
- "etag": "4Vc5nIRv-HG81PZ9FgAW982U8oA",
+ "etag": "j8PWdepkmOkBcUK9c0f3TenUl_4",
"id": {
"kind": "youtube#video",
- "videoId": "f2bjDJYfi0E"
+ "videoId": "Azjwm0ysgV4"
},
"snippet": {
- "publishedAt": "2024-11-23T08:06:11Z",
- "channelId": "UCttspZesZIDEwwpVIgoZtWQ",
- "title": "Maharashtra Election Results Updates LIVE: महराष्ट में मुस्लिम फैक्टर फेल...‘एक है तो सेफ है’ हिट",
- "description": "Maharashtra Election Results Updates LIVE: महराष्ट में मुस्लिम फैक्टर फेल...'एक है तो सेफ ...",
+ "publishedAt": "2024-11-23T11:10:41Z",
+ "channelId": "UCH7nv1A9xIrAifZJNvt7cgA",
+ "title": "Ruturaj Patil Defeated LIVE | Kolhapur | | Maharashtra Vidhan Sabha Election Result | ABP MAJHA",
+ "description": "abpमाझा #abpmajhalive #MaharashtraResult #maharashtravidhansabha #MaharashtraAssemblyElectionResult ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/f2bjDJYfi0E/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/Azjwm0ysgV4/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/f2bjDJYfi0E/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/Azjwm0ysgV4/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/f2bjDJYfi0E/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/Azjwm0ysgV4/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "IndiaTV",
+ "channelTitle": "ABP MAJHA",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-23T08:06:11Z"
+ "publishTime": "2024-11-23T11:10:41Z"
}
},
{
@@ -443,104 +511,70 @@
},
{
"kind": "youtube#searchResult",
- "etag": "O4PWeDnP9n-xPTS_xCrlyyuaLZY",
+ "etag": "IQKR-jZPRcNtXrw9GMv9--ojZ7U",
"id": {
"kind": "youtube#video",
- "videoId": "qQM4vfFtxiM"
+ "videoId": "plJ_fLBFzi8"
},
"snippet": {
- "publishedAt": "2024-11-23T07:38:08Z",
- "channelId": "UCRWFSbif-RFENbBrSiez1DA",
- "title": "Maharashtra Assembly Election Results LIVE: महाराष्ट्र में शपथग्रहण की आई तारीख LIVE | ABP News LIVE",
- "description": "महाराष्ट्र और झारखंड में अबकी बार किसकी सरकार? आज इस सवाल का जवाब ...",
- "thumbnails": {
- "default": {
- "url": "https://i.ytimg.com/vi/qQM4vfFtxiM/default_live.jpg",
- "width": 120,
- "height": 90
- },
- "medium": {
- "url": "https://i.ytimg.com/vi/qQM4vfFtxiM/mqdefault_live.jpg",
- "width": 320,
- "height": 180
- },
- "high": {
- "url": "https://i.ytimg.com/vi/qQM4vfFtxiM/hqdefault_live.jpg",
- "width": 480,
- "height": 360
- }
- },
- "channelTitle": "ABP NEWS",
- "liveBroadcastContent": "live",
- "publishTime": "2024-11-23T07:38:08Z"
- }
- },
- {
- "kind": "youtube#searchResult",
- "etag": "2eq6yZnsetoq4k8f1H3jiqZGqNE",
- "id": {
- "kind": "youtube#video",
- "videoId": "VSb1-YSZsTs"
- },
- "snippet": {
- "publishedAt": "2024-11-23T08:20:19Z",
- "channelId": "UCPXTXMecYqnRKNdqdVOGSFg",
- "title": "వయనాడ్లో ప్రియాంక గాంధీకి భారీ మెజార్టీ LIVE | Priyanka Gandhi Breaks Rahul Gandhi Record | Wayanad",
- "description": "TV9 News App : https://onelink.to/de8b7y ▻ Watch LIVE: https://goo.gl/w3aQde ▻ తాజా వార్తల కోసం ...",
+ "publishedAt": "2024-11-23T07:34:06Z",
+ "channelId": "UCttspZesZIDEwwpVIgoZtWQ",
+ "title": "Maharashtra Assembly Election Results LIVE: सुधांशु त्रिवेदी ने धमाकेदार जीत पर विपक्ष को धो डाला!",
+ "description": "ElectionResults #UttarPradeshBypolls #Election2024 #ShindeSarkar Maharashtra Election Results Live: महाराष्ट्र ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/VSb1-YSZsTs/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/plJ_fLBFzi8/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/VSb1-YSZsTs/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/plJ_fLBFzi8/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/VSb1-YSZsTs/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/plJ_fLBFzi8/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "TV9 Telugu Live",
+ "channelTitle": "IndiaTV",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-23T08:20:19Z"
+ "publishTime": "2024-11-23T07:34:06Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "lEbde3fck0KKyeO9w8tSaK7oB0s",
+ "etag": "gKyLXz4bZVVL1Ro-ZlvJynVnMvY",
"id": {
"kind": "youtube#video",
- "videoId": "l_9GQnwfGns"
+ "videoId": "3JpfiX76Xe0"
},
"snippet": {
- "publishedAt": "2024-11-23T05:05:14Z",
- "channelId": "UCat88i6_rELqI_prwvjspRA",
- "title": "🔴LIVE: Maharashtra & Jharkhand Election Results | BJP | Congress | Modi vs Rahul Gandhi | Tamil News",
- "description": "LIVE: Maharashtra & Jharkhand Election Results | BJP | Congress | Modi vs Rahul Gandhi | Tamil News #ResultsWithNews18 ...",
+ "publishedAt": "2024-11-23T08:48:04Z",
+ "channelId": "UCPP3etACgdUWvizcES1dJ8Q",
+ "title": "Live Results Jharkhand Election 2204 : झारखंड में बन रही है Hemant Soren सरकार | JMM VS BJP",
+ "description": "Live Results Jharkhand Election 2204 : झारखंड में बन रही है Hemant Soren सरकार ? | JMM VS BJP ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/l_9GQnwfGns/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/3JpfiX76Xe0/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/l_9GQnwfGns/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/3JpfiX76Xe0/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/l_9GQnwfGns/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/3JpfiX76Xe0/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "News18 Tamil Nadu",
+ "channelTitle": "News18 India",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-23T05:05:14Z"
+ "publishTime": "2024-11-23T08:48:04Z"
}
},
{
@@ -647,70 +681,36 @@
},
{
"kind": "youtube#searchResult",
- "etag": "2XwdTdZSgCnndV6uSczRHt2Dpvg",
- "id": {
- "kind": "youtube#video",
- "videoId": "h9qtalnKUEY"
- },
- "snippet": {
- "publishedAt": "2024-11-23T02:22:28Z",
- "channelId": "UCH7nv1A9xIrAifZJNvt7cgA",
- "title": "Postal Vote Counting LIVE | Maharashtra Election Result | Vidhan Sabha | ABP MAJHA Nikal LIVE",
- "description": "abpमाझा #abpmajhalive #MaharashtraResult #maharashtravidhansabha #MaharashtraAssemblyElectionResult ...",
- "thumbnails": {
- "default": {
- "url": "https://i.ytimg.com/vi/h9qtalnKUEY/default_live.jpg",
- "width": 120,
- "height": 90
- },
- "medium": {
- "url": "https://i.ytimg.com/vi/h9qtalnKUEY/mqdefault_live.jpg",
- "width": 320,
- "height": 180
- },
- "high": {
- "url": "https://i.ytimg.com/vi/h9qtalnKUEY/hqdefault_live.jpg",
- "width": 480,
- "height": 360
- }
- },
- "channelTitle": "ABP MAJHA",
- "liveBroadcastContent": "live",
- "publishTime": "2024-11-23T02:22:28Z"
- }
- },
- {
- "kind": "youtube#searchResult",
- "etag": "QSc8q3x9xiEzZE0MbzXrzvrF9Vo",
+ "etag": "HbQO-tfpVuzFDP7GP1UJClFf7js",
"id": {
"kind": "youtube#video",
- "videoId": "BedRXSg0bsA"
+ "videoId": "o2mSBynq-JU"
},
"snippet": {
- "publishedAt": "2024-11-23T05:37:33Z",
- "channelId": "UCIvaYmXn910QMdemBG3v1pQ",
- "title": "PM Modi Reaction On Maharashtra Election Results LIVE : महाराष्ट्र में प्रचंड जीत पर मोदी का जश्न!",
- "description": "pmmodi #maharashtraelectionresults #maharashtra #eknathshinde #udhavthackery #bignews #live About Channel: ज़ी ...",
+ "publishedAt": "2024-11-23T07:02:33Z",
+ "channelId": "UCRWFSbif-RFENbBrSiez1DA",
+ "title": "Maharashtra Assembly Election Results LIVE: मुस्लिम इलाकों में किसका जलवा? सुधांशु का बड़ा खुलासा",
+ "description": "महाराष्ट्र और झारखंड में अबकी बार किसकी सरकार? आज इस सवाल का जवाब ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/BedRXSg0bsA/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/o2mSBynq-JU/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/BedRXSg0bsA/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/o2mSBynq-JU/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/BedRXSg0bsA/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/o2mSBynq-JU/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Zee News",
+ "channelTitle": "ABP NEWS",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-23T05:37:33Z"
+ "publishTime": "2024-11-23T07:02:33Z"
}
},
{
@@ -747,40 +747,6 @@
"publishTime": "2024-11-23T07:02:29Z"
}
},
- {
- "kind": "youtube#searchResult",
- "etag": "vcZIYCRQsLb6a9dEF9oPICZNhtk",
- "id": {
- "kind": "youtube#video",
- "videoId": "2OWt8g5xIuU"
- },
- "snippet": {
- "publishedAt": "2024-11-23T06:11:29Z",
- "channelId": "UCajVjEHDoVn_AHsunUZz_EQ",
- "title": "Narendra Modi News LIVE | আজ সন্ধ্যায় কী বড় ঘোষণা করতে চলেছেন নরেন্দ্র মোদী?",
- "description": "উত্তরপ্রদেশ বিধানসভা উপনির্বাচনে NDA-এর ঐতিহাসিক জয়। মোদিজিকে ...",
- "thumbnails": {
- "default": {
- "url": "https://i.ytimg.com/vi/2OWt8g5xIuU/default_live.jpg",
- "width": 120,
- "height": 90
- },
- "medium": {
- "url": "https://i.ytimg.com/vi/2OWt8g5xIuU/mqdefault_live.jpg",
- "width": 320,
- "height": 180
- },
- "high": {
- "url": "https://i.ytimg.com/vi/2OWt8g5xIuU/hqdefault_live.jpg",
- "width": 480,
- "height": 360
- }
- },
- "channelTitle": "Republic Bangla",
- "liveBroadcastContent": "live",
- "publishTime": "2024-11-23T06:11:29Z"
- }
- },
{
"kind": "youtube#searchResult",
"etag": "Qu2Ow5Npwv_kMHp9yKebKUOv2J4",
@@ -817,376 +783,376 @@
},
{
"kind": "youtube#searchResult",
- "etag": "UBciu2WFSc1NQ5IfK5oL4LYiiD0",
+ "etag": "rpwHZK3cIOuG72p2sM6k7SmUGgo",
"id": {
"kind": "youtube#video",
- "videoId": "Ax1ii-6i5iM"
+ "videoId": "Da3CgsaC9U8"
},
"snippet": {
- "publishedAt": "2024-11-23T05:14:08Z",
- "channelId": "UCDCMjD1XIAsCZsYHNMGVcog",
- "title": "LIVE : Priyank Gandhi 1 Lakh Lead In Wayanad Bypoll | V6 News",
- "description": "Watch Today's Teenmaar https://youtu.be/FiSIBvjxexE లగచర్ల రైతులకు 3 రేట్లు https://youtu.be/-tBZeGz7DcQ ...",
+ "publishedAt": "2024-11-23T04:01:54Z",
+ "channelId": "UCHCR4UFsGwd_VcDa0-a4haw",
+ "title": "WEST BENGAL BYE-POLL RESULT LIVE | মাদারিহাটে ফুটল ঘাসফুল! | BY-POLL RESULT 2024 LIVE",
+ "description": "WEST BENGAL BYE-POLL RESULT LIVE | মাদারিহাটে ফুটল ঘাসফুল! | BY-POLL RESULT 2024 LIVE ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/Ax1ii-6i5iM/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/Da3CgsaC9U8/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/Ax1ii-6i5iM/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/Da3CgsaC9U8/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/Ax1ii-6i5iM/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/Da3CgsaC9U8/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "V6 News Telugu",
+ "channelTitle": "TV9 Bangla",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-23T05:14:08Z"
+ "publishTime": "2024-11-23T04:01:54Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "WcqDVi8NCzAS5K0TlwCedB7yOYc",
+ "etag": "uHink2wvI2jVHY7DWU7EuiAzJG4",
"id": {
"kind": "youtube#video",
- "videoId": "ft5iCiGmJjc"
+ "videoId": "kgEmA0pNHFo"
},
"snippet": {
- "publishedAt": "2024-11-23T02:11:17Z",
- "channelId": "UC-JFyL0zDFOsPMpuWu39rPA",
- "title": "🔴LIVE : மகாராஷ்டிரா முதல்வர் யார்?.. போன் போட்ட அமித்ஷா - எதிர்பாரா ட்விஸ்ட் | Election Result 2024",
- "description": "LIVE : மகாராஷ்டிரா முதல்வர் யார்?.. போன் போட்ட அமித்ஷா - நாடே எதிர்பாரா ...",
+ "publishedAt": "2024-11-23T12:07:13Z",
+ "channelId": "UCAR3h_9fLV82N2FH4cE4RKw",
+ "title": "LIVE : YS భారతి PA వర్రాకి మరో షాక్! | YS Bharathi PA Varra Ravindra Reddy | AP NEWS | TV5 News",
+ "description": "LIVE : YS భారతి PA వర్రాకి మరో షాక్! | YS Bharathi PA Varra Ravindra Reddy | AP NEWS | TV5 News ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/ft5iCiGmJjc/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/kgEmA0pNHFo/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/ft5iCiGmJjc/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/kgEmA0pNHFo/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/ft5iCiGmJjc/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/kgEmA0pNHFo/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Thanthi TV",
+ "channelTitle": "TV5 News ",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-23T02:11:17Z"
+ "publishTime": "2024-11-23T12:07:13Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "rg_E_RvqCNLhVODtz0yfC3tgNnU",
+ "etag": "-Vf2zdGBCryvdf2IYry2KNoptbY",
"id": {
"kind": "youtube#video",
- "videoId": "6FwwCHBVXNc"
+ "videoId": "26uOWrCYCC0"
},
"snippet": {
- "publishedAt": "2024-11-23T05:17:23Z",
- "channelId": "UCMk9Tdc-d1BIcAFaSppiVkw",
- "title": "Maharashtra-Jharkhand Election Results Live । जीत का रिजल्ट लाइव ! Latest News Updates",
- "description": "Maharashtra-Jharkhand Election Results Live । जीत का रिजल्ट लाइव ! Latest News Updates #live ...",
+ "publishedAt": "2024-11-23T06:57:01Z",
+ "channelId": "UCa-vioGhe2btBcZneaPonKA",
+ "title": "LIVE: CP Yogeshwar Press Meet | ಸಿಪಿವೈ ಸುದ್ದಿಗೋಷ್ಠಿ | Channapatna By Election Result | N18L",
+ "description": "LIVE: CP Yogeshwar Press Meet | ಸಿಪಿವೈ ಸುದ್ದಿಗೋಷ್ಠಿ | Channapatna By Election Result | N18L ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/6FwwCHBVXNc/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/26uOWrCYCC0/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/6FwwCHBVXNc/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/26uOWrCYCC0/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/6FwwCHBVXNc/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/26uOWrCYCC0/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "TIMES NOW Navbharat",
+ "channelTitle": "News18 Kannada",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-23T05:17:23Z"
+ "publishTime": "2024-11-23T06:57:01Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "UP7n4ubsWhDDLp0wAKqmbw04JdM",
+ "etag": "XJI-bIU7wroT7VDWd_JfHmejU2s",
"id": {
"kind": "youtube#video",
- "videoId": "BmS0sjs8Eo8"
+ "videoId": "vnNdRLGnKkw"
},
"snippet": {
- "publishedAt": "2024-11-23T08:43:22Z",
- "channelId": "UC8dnBi4WUErqYQHZ4PfsLTg",
- "title": "🔴 LIVE | Nikhil Kumaraswamy Press Meet: ಉಪಚುನಾವಣೆ ಸೋಲಿನ ಬಳಿಕ ನಿಖಿಲ್ ದಿಢೀರ್ ಸುದ್ದಿಗೋಷ್ಠಿ | #tv9d",
- "description": "Tv9kannadanews #KannadaNews #BreakingNews #BreakingNewsinKannada #KannadaLiveTv #kannadanewslive LIVE ...",
+ "publishedAt": "2024-11-23T01:14:42Z",
+ "channelId": "UCttspZesZIDEwwpVIgoZtWQ",
+ "title": "UP By Poll Election Results LIVE: आज यूपी की 9 सीटों पर लहराएगा भगवा? CM Yogi | Akhilesh Yadav | BJP",
+ "description": "UP By Poll Election Results LIVE: आज यूपी की 9 सीटों पर लहराएगा भगवा? CM Yogi | Akhilesh Yadav ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/BmS0sjs8Eo8/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/vnNdRLGnKkw/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/BmS0sjs8Eo8/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/vnNdRLGnKkw/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/BmS0sjs8Eo8/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/vnNdRLGnKkw/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Tv9 Kannada",
+ "channelTitle": "IndiaTV",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-23T08:43:22Z"
+ "publishTime": "2024-11-23T01:14:42Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "l4pMG6PXu1Y-9friB5dtmTsoU78",
+ "etag": "obr8MI4FFM_UZnhrME6DRgirwQs",
"id": {
"kind": "youtube#video",
- "videoId": "kgEmA0pNHFo"
+ "videoId": "8t3r_KMhDjk"
},
"snippet": {
- "publishedAt": "2024-11-23T12:07:13Z",
- "channelId": "UCAR3h_9fLV82N2FH4cE4RKw",
- "title": "LIVE : YS భారతి PA వర్రాకి మరో షాక్! | YS Bharathi PA Varra Ravindra Reddy | AP NEWS | TV5 News",
- "description": "LIVE : YS భారతి PA వర్రాకి మరో షాక్! | YS Bharathi PA Varra Ravindra Reddy | AP NEWS | TV5 News ...",
+ "publishedAt": "2024-11-23T01:59:06Z",
+ "channelId": "UC8Z-VjXBtDJTvq6aqkIskPg",
+ "title": "🔴LIVE:Maharashtra, Jharkhand Election Result | மகாராஷ்டிரா, ஜார்கண்ட் தேர்தல் முடிவுகள் BJP Congress",
+ "description": "LIVE:Maharashtra, Jharkhand Election Result | மகாராஷ்டிரா, ஜார்கண்ட் தேர்தல் முடிவுகள் ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/kgEmA0pNHFo/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/8t3r_KMhDjk/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/kgEmA0pNHFo/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/8t3r_KMhDjk/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/kgEmA0pNHFo/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/8t3r_KMhDjk/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "TV5 News ",
+ "channelTitle": "Polimer News",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-23T12:07:13Z"
+ "publishTime": "2024-11-23T01:59:06Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "rpwHZK3cIOuG72p2sM6k7SmUGgo",
+ "etag": "DlwYqq5TXMBxf-7XbEFb3vYKHt4",
"id": {
"kind": "youtube#video",
- "videoId": "Da3CgsaC9U8"
+ "videoId": "AolQkNDf1iM"
},
"snippet": {
- "publishedAt": "2024-11-23T04:01:54Z",
- "channelId": "UCHCR4UFsGwd_VcDa0-a4haw",
- "title": "WEST BENGAL BYE-POLL RESULT LIVE | মাদারিহাটে ফুটল ঘাসফুল! | BY-POLL RESULT 2024 LIVE",
- "description": "WEST BENGAL BYE-POLL RESULT LIVE | মাদারিহাটে ফুটল ঘাসফুল! | BY-POLL RESULT 2024 LIVE ...",
+ "publishedAt": "2024-11-23T06:38:39Z",
+ "channelId": "UCt4t-jeY85JegMlZ-E5UWtA",
+ "title": "Maharashtra Election Results LIVE Updates: महाराष्ट्र में कौन बनेगा सीएम, हलचल तेज | Mahayuti | MVA",
+ "description": "Maharashtra Election Results LIVE Updates: महाराष्ट्र में कौन बनेगा सीएम, हलचल तेज ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/Da3CgsaC9U8/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/AolQkNDf1iM/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/Da3CgsaC9U8/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/AolQkNDf1iM/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/Da3CgsaC9U8/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/AolQkNDf1iM/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "TV9 Bangla",
+ "channelTitle": "Aaj Tak",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-23T04:01:54Z"
+ "publishTime": "2024-11-23T06:38:39Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "XJI-bIU7wroT7VDWd_JfHmejU2s",
+ "etag": "U6MV5F1p90ge2zoOL0SJTcSuZgc",
"id": {
"kind": "youtube#video",
- "videoId": "vnNdRLGnKkw"
+ "videoId": "T5z88yrR9Y0"
},
"snippet": {
- "publishedAt": "2024-11-23T01:14:42Z",
- "channelId": "UCttspZesZIDEwwpVIgoZtWQ",
- "title": "UP By Poll Election Results LIVE: आज यूपी की 9 सीटों पर लहराएगा भगवा? CM Yogi | Akhilesh Yadav | BJP",
- "description": "UP By Poll Election Results LIVE: आज यूपी की 9 सीटों पर लहराएगा भगवा? CM Yogi | Akhilesh Yadav ...",
+ "publishedAt": "2024-11-23T03:34:49Z",
+ "channelId": "UCYPvAwZP8pZhSMW8qs7cVCw",
+ "title": "Maharashtra Election Result LIVE News | Tight Fight Between In MVA Vs Mahayuti | Mumbai News",
+ "description": "Maharashtra Election Result LIVE News | Tight Fight Between In MVA Vs Mahayuti | Mumbai News After months of high-octane ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/vnNdRLGnKkw/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/T5z88yrR9Y0/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/vnNdRLGnKkw/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/T5z88yrR9Y0/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/vnNdRLGnKkw/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/T5z88yrR9Y0/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "IndiaTV",
+ "channelTitle": "India Today",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-23T01:14:42Z"
+ "publishTime": "2024-11-23T03:34:49Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "DlwYqq5TXMBxf-7XbEFb3vYKHt4",
+ "etag": "7PHGSh4wWvGR_2MYEOEYDcWvHiQ",
"id": {
"kind": "youtube#video",
- "videoId": "AolQkNDf1iM"
+ "videoId": "eLUuVGnS_Dg"
},
"snippet": {
- "publishedAt": "2024-11-23T06:38:39Z",
- "channelId": "UCt4t-jeY85JegMlZ-E5UWtA",
- "title": "Maharashtra Election Results LIVE Updates: महाराष्ट्र में कौन बनेगा सीएम, हलचल तेज | Mahayuti | MVA",
- "description": "Maharashtra Election Results LIVE Updates: महाराष्ट्र में कौन बनेगा सीएम, हलचल तेज ...",
+ "publishedAt": "2024-11-23T02:48:45Z",
+ "channelId": "UCdOSeEq9Cs2Pco7OCn2_i5w",
+ "title": "Mumbai-Thane Election Results 2024 LIVE | Mahim, Worli, Bandra, Mankhurd, Shivaji Nagar, Mumbra",
+ "description": "Mumbai-Thane Election Results 2024 LIVE | Mahim, Worli, Bandra, Mankhurd, Shivaji Nagar, Mumbra ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/AolQkNDf1iM/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/eLUuVGnS_Dg/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/AolQkNDf1iM/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/eLUuVGnS_Dg/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/AolQkNDf1iM/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/eLUuVGnS_Dg/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Aaj Tak",
+ "channelTitle": "TV9 Marathi",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-23T06:38:39Z"
+ "publishTime": "2024-11-23T02:48:45Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "a9-s8Yz0Q131ekozYNJT60_yDFg",
+ "etag": "A4jreAxOgWBro7F928kw0UVFSuc",
"id": {
"kind": "youtube#video",
- "videoId": "NGIE0U76h-c"
+ "videoId": "QD-bXAEVOF0"
},
"snippet": {
- "publishedAt": "2024-11-23T02:35:35Z",
- "channelId": "UCa-vioGhe2btBcZneaPonKA",
- "title": "LIVE: Shiggaon By Election Result | ಶಿಗ್ಗಾವಿ ಎಲೆಕ್ಷನ್ನಲ್ಲಿ ಗೆಲ್ಲೋದ್ಯಾರು? | Bharat Bommai Vs Pathan",
- "description": "LIVE: Shiggaon By Election Result | ಶಿಗ್ಗಾವಿ ಎಲೆಕ್ಷನ್ನಲ್ಲಿ ಗೆಲ್ಲೋದ್ಯಾರು? | Bharat Bommai ...",
+ "publishedAt": "2024-11-23T04:14:25Z",
+ "channelId": "UCttspZesZIDEwwpVIgoZtWQ",
+ "title": "UP ByElection Results LIVE: यूपी उपचुनाव के नतीजे देख Akhilesh Yadav ‘SHOCKED’ | Cm Yogi | India TV",
+ "description": "UP ByElection Results LIVE: यूपी उपचुनाव के नतीजे देख Akhilesh Yadav 'SHOCKED' | Cm Yogi | India TV ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/NGIE0U76h-c/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/QD-bXAEVOF0/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/NGIE0U76h-c/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/QD-bXAEVOF0/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/NGIE0U76h-c/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/QD-bXAEVOF0/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "News18 Kannada",
+ "channelTitle": "IndiaTV",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-23T02:35:35Z"
+ "publishTime": "2024-11-23T04:14:25Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "7PHGSh4wWvGR_2MYEOEYDcWvHiQ",
+ "etag": "fIgnbB8ycz3iT3itKe948q6X8kw",
"id": {
"kind": "youtube#video",
- "videoId": "eLUuVGnS_Dg"
+ "videoId": "eALlt0VzWVE"
},
"snippet": {
- "publishedAt": "2024-11-23T02:48:45Z",
- "channelId": "UCdOSeEq9Cs2Pco7OCn2_i5w",
- "title": "Mumbai-Thane Election Results 2024 LIVE | Mahim, Worli, Bandra, Mankhurd, Shivaji Nagar, Mumbra",
- "description": "Mumbai-Thane Election Results 2024 LIVE | Mahim, Worli, Bandra, Mankhurd, Shivaji Nagar, Mumbra ...",
+ "publishedAt": "2024-11-23T07:48:29Z",
+ "channelId": "UCt4t-jeY85JegMlZ-E5UWtA",
+ "title": "Maharashtra Assembly Election Results LIVE: सीएम पद को लेकर Eknath Shinde का बड़ा बयान | Mahayuti",
+ "description": "Maharashtra Assembly Election Results LIVE: सीएम पद को लेकर Eknath Shinde का बड़ा बयान | Mahayuti ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/eLUuVGnS_Dg/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/eALlt0VzWVE/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/eLUuVGnS_Dg/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/eALlt0VzWVE/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/eLUuVGnS_Dg/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/eALlt0VzWVE/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "TV9 Marathi",
+ "channelTitle": "Aaj Tak",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-23T02:48:45Z"
+ "publishTime": "2024-11-23T07:48:29Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "fIgnbB8ycz3iT3itKe948q6X8kw",
+ "etag": "6vmpmTstw8Lps7AS2iiyF43_nl8",
"id": {
"kind": "youtube#video",
- "videoId": "eALlt0VzWVE"
+ "videoId": "F-bHkftRHWo"
},
"snippet": {
- "publishedAt": "2024-11-23T07:48:29Z",
- "channelId": "UCt4t-jeY85JegMlZ-E5UWtA",
- "title": "Maharashtra Assembly Election Results LIVE: सीएम पद को लेकर Eknath Shinde का बड़ा बयान | Mahayuti",
- "description": "Maharashtra Assembly Election Results LIVE: सीएम पद को लेकर Eknath Shinde का बड़ा बयान | Mahayuti ...",
+ "publishedAt": "2024-11-23T10:20:07Z",
+ "channelId": "UCv3rFzn-GHGtqzXiaq3sWNg",
+ "title": "WB By Poll Result LIVE: উপনির্বাচনে সবুজ ঝড়, সুকান্তর মুখে ছাব্বিশের ভোটের সওয়াল। কী বললেন শুভেন্দু?",
+ "description": "Suvendu Adhikari: উপনির্বাচনে অব্যাহত সবুজ ঝড়, সুকান্তর মুখে ফের ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/eALlt0VzWVE/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/F-bHkftRHWo/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/eALlt0VzWVE/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/F-bHkftRHWo/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/eALlt0VzWVE/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/F-bHkftRHWo/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Aaj Tak",
+ "channelTitle": "ABP ANANDA",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-23T07:48:29Z"
+ "publishTime": "2024-11-23T10:20:07Z"
}
},
{
@@ -1225,36 +1191,36 @@
},
{
"kind": "youtube#searchResult",
- "etag": "x5UO97OsaZeRIksiwXOlPclAFI0",
+ "etag": "Chl2LTosERzu4m9DcWGLvUizqv8",
"id": {
"kind": "youtube#video",
- "videoId": "N_9XzJaAzaM"
+ "videoId": "aXJcd9ld3Q4"
},
"snippet": {
- "publishedAt": "2024-11-23T05:40:46Z",
- "channelId": "UCOutOIcn_oho8pyVN3Ng-Pg",
- "title": "Election Results Live : 286523 वोटों से प्रियंका गांधी की जीत! | Priyanka Gandhi | Wayand | Congress",
- "description": "Election Results Live : 286523 वोटों से प्रियंका गांधी की जीत! | Priyanka Gandhi | Wayand | Congress ...",
+ "publishedAt": "2024-11-23T08:21:26Z",
+ "channelId": "UC7FlLbNo66YsCEAPuJITiNg",
+ "title": "Live Results Jharkhand Election 2204: झारखंड के नतीजों पर हमेंत सोरेन! LIVE | JMM VS BJP | Jharkhand",
+ "description": "Live Results Jharkhand Election 2204: झारखंड के नतीजों पर हमेंत सोरेन! LIVE | JMM VS BJP ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/N_9XzJaAzaM/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/aXJcd9ld3Q4/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/N_9XzJaAzaM/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/aXJcd9ld3Q4/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/N_9XzJaAzaM/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/aXJcd9ld3Q4/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "TV9 Bharatvarsh",
+ "channelTitle": "News18 Rajasthan",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-23T05:40:46Z"
+ "publishTime": "2024-11-23T08:21:26Z"
}
},
{
@@ -1327,172 +1293,172 @@
},
{
"kind": "youtube#searchResult",
- "etag": "E6dHxs1_vErRIPCTiFVaFH4YSNk",
+ "etag": "oj7gmyvVruXELfYasTCvjOAQ508",
"id": {
"kind": "youtube#video",
- "videoId": "Ises6ZBd-BM"
+ "videoId": "Fi2JPcZ14qo"
},
"snippet": {
- "publishedAt": "2024-11-23T05:44:39Z",
- "channelId": "UCYPvAwZP8pZhSMW8qs7cVCw",
- "title": "Maharashtra, Jharkhand Election Results Analysis LIVE | What Went Wrong For MVA In Maharashtra?",
- "description": "Maharashtra, Jharkhand Election Results Analysis LIVE | What Went Wrong For MVA In Maharashtra? Counting of votes has ...",
+ "publishedAt": "2024-11-23T08:56:54Z",
+ "channelId": "UCv3rFzn-GHGtqzXiaq3sWNg",
+ "title": "WB By Poll Result LIVE : মাদারিহাট হাতছাড়া BJP-র I কোন ফর্মুলায় বাজিমাত TMC-র I কী বলছেন BJP নেতারা",
+ "description": "ABP Ananda LIVE : মাদারিহাট হাতছাড়া BJP-র I কোন ফর্মুলায় বাজিমাত TMC-র I কী ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/Ises6ZBd-BM/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/Fi2JPcZ14qo/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/Ises6ZBd-BM/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/Fi2JPcZ14qo/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/Ises6ZBd-BM/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/Fi2JPcZ14qo/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "India Today",
+ "channelTitle": "ABP ANANDA",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-23T05:44:39Z"
+ "publishTime": "2024-11-23T08:56:54Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "QcwjvDXz5ulJRkfF2DQxYKHwXYQ",
+ "etag": "E6dHxs1_vErRIPCTiFVaFH4YSNk",
"id": {
"kind": "youtube#video",
- "videoId": "9M9faygByjE"
+ "videoId": "Ises6ZBd-BM"
},
"snippet": {
- "publishedAt": "2024-11-23T06:47:21Z",
- "channelId": "UCv3rFzn-GHGtqzXiaq3sWNg",
- "title": "By Poll Result Live: উপ নির্বাচনে ছয়ে ছয় TMC।মাদারিহাটও হাতছাড়া হওয়ার পর সাফাই BJPর রাজ্য সভাপতির।",
- "description": "ABP Ananda Live: উপ নির্বাচনে ছয়ে ছয় তৃণমূল।মাদারিহাটও হাতছাড়া ...",
+ "publishedAt": "2024-11-23T05:44:39Z",
+ "channelId": "UCYPvAwZP8pZhSMW8qs7cVCw",
+ "title": "Maharashtra, Jharkhand Election Results Analysis LIVE | What Went Wrong For MVA In Maharashtra?",
+ "description": "Maharashtra, Jharkhand Election Results Analysis LIVE | What Went Wrong For MVA In Maharashtra? Counting of votes has ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/9M9faygByjE/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/Ises6ZBd-BM/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/9M9faygByjE/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/Ises6ZBd-BM/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/9M9faygByjE/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/Ises6ZBd-BM/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "ABP ANANDA",
+ "channelTitle": "India Today",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-23T06:47:21Z"
+ "publishTime": "2024-11-23T05:44:39Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "4uIdo8FWgtLy06HclwSYPZd9h_I",
+ "etag": "I4bBCm36bCpFFfFyLEMXAwCsBIw",
"id": {
"kind": "youtube#video",
- "videoId": "Ra3-hOvGJjk"
+ "videoId": "tOMOlq2QDFM"
},
"snippet": {
- "publishedAt": "2024-11-23T01:05:30Z",
- "channelId": "UC3C6_1ETXfE807LltDbKYxg",
- "title": "Afternoon 3 PM News LIVE | જુઓ 4 વાગ્યાના સૌથી મોટા સમાચાર | Abp Asmita | 23-11-2024",
- "description": "maharashtraelection2024 #maharashtraelectionresults2024 #jharkhandelection2024 #jharkhandelectionresults ...",
+ "publishedAt": "2024-11-23T03:38:06Z",
+ "channelId": "UCttspZesZIDEwwpVIgoZtWQ",
+ "title": "BJP | Mahayuti Win In Maharashtra Live: महाराष्ट्र के चुनाव में BJP की जीत के करीब LIVE",
+ "description": "Maharashtra Assembly Election Results LIVE: Mahayuti crosses mark of 140 as counting begins on 288 seats Maharashtra ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/Ra3-hOvGJjk/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/tOMOlq2QDFM/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/Ra3-hOvGJjk/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/tOMOlq2QDFM/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/Ra3-hOvGJjk/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/tOMOlq2QDFM/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "ABP Asmita",
+ "channelTitle": "IndiaTV",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-23T01:05:30Z"
+ "publishTime": "2024-11-23T03:38:06Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "KN3gQTAOr3PyIc8RhVin0ErcCFY",
+ "etag": "QcwjvDXz5ulJRkfF2DQxYKHwXYQ",
"id": {
"kind": "youtube#video",
- "videoId": "3RUzNEkLCpY"
+ "videoId": "9M9faygByjE"
},
"snippet": {
- "publishedAt": "2024-11-23T08:22:28Z",
- "channelId": "UCafYgzpyw7aIUYOLjjADu7w",
- "title": "UP By Election Results 2024 LIVE Updates: 2 बजे का रुझान आते ही उड़ गए सबके होश! | Breaking News",
- "description": "UP By Election Results 2024 LIVE Updates: 2 बजे का रुझान आते ही उड़ गए सबके होश! | Breaking News ...",
+ "publishedAt": "2024-11-23T06:47:21Z",
+ "channelId": "UCv3rFzn-GHGtqzXiaq3sWNg",
+ "title": "By Poll Result Live: উপ নির্বাচনে ছয়ে ছয় TMC।মাদারিহাটও হাতছাড়া হওয়ার পর সাফাই BJPর রাজ্য সভাপতির।",
+ "description": "ABP Ananda Live: উপ নির্বাচনে ছয়ে ছয় তৃণমূল।মাদারিহাটও হাতছাড়া ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/3RUzNEkLCpY/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/9M9faygByjE/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/3RUzNEkLCpY/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/9M9faygByjE/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/3RUzNEkLCpY/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/9M9faygByjE/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "News18 UP Uttarakhand",
+ "channelTitle": "ABP ANANDA",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-23T08:22:28Z"
+ "publishTime": "2024-11-23T06:47:21Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "ZIgNSAirCynLxfE-aagcEv7ZrUo",
+ "etag": "87hKhC1lHnVJjEEg7gezSLpP0L8",
"id": {
"kind": "youtube#video",
- "videoId": "JE81b_5gbwI"
+ "videoId": "z4pFugpKv_k"
},
"snippet": {
- "publishedAt": "2024-11-22T14:06:34Z",
- "channelId": "UC2ut_DrUZvO0BzUxZ_g9fXQ",
- "title": "Worli Vidhan Sabha Election Result LIVE | Aaditya Thackeray Vs Milind Deora | Lokshahi News LIVE",
- "description": "lokshahinews #marathinewslive #maharashtraelectionresult #maharashtraelectionresult2024 #vidhansabharesult ...",
+ "publishedAt": "2024-11-23T04:32:40Z",
+ "channelId": "UCttspZesZIDEwwpVIgoZtWQ",
+ "title": "Jharkhand Election Results Live : झारखंड में पलटा चुनावी रुझान LIVE | BJP- 35 | JMM - 36",
+ "description": "Jharkhand Election Results Live : झारखंड में पलटा चुनावी रुझान LIVE | BJP- 35 | JMM - 36 Jharkhand ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/JE81b_5gbwI/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/z4pFugpKv_k/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/JE81b_5gbwI/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/z4pFugpKv_k/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/JE81b_5gbwI/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/z4pFugpKv_k/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Lokshahi Marathi",
+ "channelTitle": "IndiaTV",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-22T14:06:34Z"
+ "publishTime": "2024-11-23T04:32:40Z"
}
},
{
@@ -1531,36 +1497,70 @@
},
{
"kind": "youtube#searchResult",
- "etag": "6RXI7jRH75y3PYujPG5RqJLeG40",
+ "etag": "NZvewzlCyjhpsWnS5WalnJh5-io",
"id": {
"kind": "youtube#video",
- "videoId": "ET6csXLljGo"
+ "videoId": "24BuXIy4TGY"
},
"snippet": {
- "publishedAt": "2024-11-23T01:34:15Z",
- "channelId": "UCBwc2cbPpvxNCNEI2-8YrqQ",
- "title": "Baba Bageshwar Hindu Jodo Yatra Day 3 Live : बाबा से साथ सड़कों पर उतरे साधु-महात्मा और नेता | MP",
- "description": "Baba Bageshwar Hindu Jodo Yatra Day 3 Live : बाबा से साथ सड़कों पर उतरे साधु-महात्मा और ...",
+ "publishedAt": "2024-11-23T07:04:22Z",
+ "channelId": "UCYPvAwZP8pZhSMW8qs7cVCw",
+ "title": "Maharashtra Assembly Election Result LIVE | Who Will Be Mahayuti Pick As CM? | MVA Vs Mahayuti",
+ "description": "Maharashtra Assembly Election Result LIVE | Who Will Be Mahayuti Pick As CM? | MVA Vs Mahayuti ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/ET6csXLljGo/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/24BuXIy4TGY/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/ET6csXLljGo/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/24BuXIy4TGY/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/ET6csXLljGo/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/24BuXIy4TGY/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "News18 MP Chhattisgarh",
+ "channelTitle": "India Today",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-23T07:04:22Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "WRNBuWUT1TpTuF9qEBs4OxLz5yo",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "NdlwjOAFv0E"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-23T01:56:24Z",
+ "channelId": "UCJrpiw6dS09Zx2Z8d9AFWDA",
+ "title": "Live: IND Vs AUS, Day 2 - 1st Test | Live Scores & Commentary | India vs Australia | 3rd Session",
+ "description": "Live: IND Vs AUS, Day 2 - 1st Test, Perth | Live Scores & Commentary | India vs Australia | 2024 Series For queries: ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/NdlwjOAFv0E/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/NdlwjOAFv0E/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/NdlwjOAFv0E/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "CricTalks",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-23T01:34:15Z"
+ "publishTime": "2024-11-23T01:56:24Z"
}
},
{
diff --git a/collections/scienceCollection.json b/collections/scienceCollection.json
index 48643a0..ba390c0 100644
--- a/collections/scienceCollection.json
+++ b/collections/scienceCollection.json
@@ -67,6 +67,40 @@
"publishTime": "2024-11-21T15:43:34Z"
}
},
+ {
+ "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",
@@ -205,70 +239,36 @@
},
{
"kind": "youtube#searchResult",
- "etag": "VHEBwXUEzE832Dt04M1XSoAh9Yo",
- "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": "avTfJMTA7_bAkefxSuUhTkl60y8",
+ "etag": "X4GPil_QXTpMPZnLYzucs5OjnVc",
"id": {
"kind": "youtube#video",
- "videoId": "fHb0eB9RUgA"
+ "videoId": "GN_j_kVsbpI"
},
"snippet": {
- "publishedAt": "2024-01-27T00:58:26Z",
- "channelId": "UCZvXaNYIcapCEcaJe_2cP7A",
- "title": "Farallon Islands Live Webcam | California Academy of Sciences",
- "description": "Get a rare view of the Farallon Islands' craggy peaks and rocky shorelines and scan the islands for marine mammals and birds.",
+ "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/fHb0eB9RUgA/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/GN_j_kVsbpI/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/fHb0eB9RUgA/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/GN_j_kVsbpI/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/fHb0eB9RUgA/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/GN_j_kVsbpI/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "California Academy of Sciences",
+ "channelTitle": "WN SPACE LIVE",
"liveBroadcastContent": "live",
- "publishTime": "2024-01-27T00:58:26Z"
+ "publishTime": "2024-07-22T15:45:53Z"
}
},
{
@@ -307,36 +307,36 @@
},
{
"kind": "youtube#searchResult",
- "etag": "FGJUt2ehnS3Q7lKBJioe_jV8fL0",
+ "etag": "VHEBwXUEzE832Dt04M1XSoAh9Yo",
"id": {
"kind": "youtube#video",
- "videoId": "OCem0E-0Q6Y"
+ "videoId": "z6UARRAtgok"
},
"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.",
+ "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/OCem0E-0Q6Y/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/z6UARRAtgok/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/OCem0E-0Q6Y/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/z6UARRAtgok/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/OCem0E-0Q6Y/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/z6UARRAtgok/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "NASA",
+ "channelTitle": "moneycontrol",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-18T14:04:55Z"
+ "publishTime": "2024-11-22T11:15:28Z"
}
},
{
@@ -443,138 +443,104 @@
},
{
"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": "HJbyV052Zs0gwV1PZuGsrU1Zsh8",
+ "etag": "HyoJoKkDHbWyOEbekcfS0cxOp-A",
"id": {
"kind": "youtube#video",
- "videoId": "Q1RqVCuK8yc"
+ "videoId": "MWMFdgrwtgk"
},
"snippet": {
- "publishedAt": "2023-09-10T12:10:17Z",
- "channelId": "UChqurhe2_-KeXIkXtmHWH8A",
- "title": "LIVE महालक्ष्मी आरती :आज सुबह Laxmi Aarti | Lakshmi Chalisa सुनने से सभी मनोकामनाएं पूर्ण होती है",
- "description": "LIVE महालक्ष्मी आरती :आज सुबह Laxmi Aarti | Lakshmi Chalisa सुनने से सभी मनोकामनाएं ...",
+ "publishedAt": "2024-11-21T05:30:55Z",
+ "channelId": "UC3prwMn9aU2z5Y158ZdGyyA",
+ "title": "NASA Live | Elon Musk’s SpaceX To Rescue Astronauts Trapped On ISS | Sunita Williams | Butch Wilmore",
+ "description": "NASA has raised concerns over a growing leak on the International Space Station (ISS), which is threatening the safety of ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/Q1RqVCuK8yc/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/MWMFdgrwtgk/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/Q1RqVCuK8yc/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/MWMFdgrwtgk/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/Q1RqVCuK8yc/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/MWMFdgrwtgk/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Vats Bhakti Geet",
+ "channelTitle": "CRUX",
"liveBroadcastContent": "live",
- "publishTime": "2023-09-10T12:10:17Z"
+ "publishTime": "2024-11-21T05:30:55Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "AsWmrMPqTeeP5twx4hcKGGl7_gE",
+ "etag": "_37P8lIqkVBItOH1KJgIDXfKzt0",
"id": {
"kind": "youtube#video",
- "videoId": "lTjkFcVlypQ"
+ "videoId": "y5bs2yUJBv8"
},
"snippet": {
- "publishedAt": "2024-10-18T18:01:23Z",
- "channelId": "UCktaw9L-f65LzUUdjmCFkbQ",
- "title": "🔴 LIVE! Phineas and Ferb Season 1 Full Episodes! | @disneyxd",
- "description": "Ferb! I know what we're gonna do today! Watch the full first season of Phineas and Ferb! While you're watching all the episodes ...",
+ "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/lTjkFcVlypQ/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/y5bs2yUJBv8/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/lTjkFcVlypQ/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/y5bs2yUJBv8/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/lTjkFcVlypQ/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/y5bs2yUJBv8/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Disney XD",
+ "channelTitle": "Vishwakarma Classes",
"liveBroadcastContent": "live",
- "publishTime": "2024-10-18T18:01:23Z"
+ "publishTime": "2024-11-19T03:42:55Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "_37P8lIqkVBItOH1KJgIDXfKzt0",
+ "etag": "ddZwuQcghQ9woc02oGOcgBi4smk",
"id": {
"kind": "youtube#video",
- "videoId": "y5bs2yUJBv8"
+ "videoId": "RManbLSTXuc"
},
"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 ...",
+ "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/y5bs2yUJBv8/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/RManbLSTXuc/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/y5bs2yUJBv8/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/RManbLSTXuc/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/y5bs2yUJBv8/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/RManbLSTXuc/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Vishwakarma Classes",
+ "channelTitle": "Boston and Maine Live",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-19T03:42:55Z"
+ "publishTime": "2024-09-18T13:48:46Z"
}
},
{
@@ -645,40 +611,6 @@
"publishTime": "2024-11-22T03:42:29Z"
}
},
- {
- "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": "An7-U5MxIxzg9a6KSC9TsG0ZROE",
@@ -781,40 +713,6 @@
"publishTime": "2024-09-18T01:18:30Z"
}
},
- {
- "kind": "youtube#searchResult",
- "etag": "yA353POpHKYMalhIrM2l30tu5SE",
- "id": {
- "kind": "youtube#video",
- "videoId": "pgeZvH18JZQ"
- },
- "snippet": {
- "publishedAt": "2024-11-23T09:28:51Z",
- "channelId": "UCwqusr8YDwM-3mEYTDeJHzw",
- "title": "LIVE: Fadnavis Presss Conference | Maharashtra Elections 2024 | Eknath Shinde",
- "description": "LIVE: Fadnavis Presss Conference | Maharashtra Elections 2024 | Eknath Shinde #FadnavisPressConference ...",
- "thumbnails": {
- "default": {
- "url": "https://i.ytimg.com/vi/pgeZvH18JZQ/default_live.jpg",
- "width": 120,
- "height": 90
- },
- "medium": {
- "url": "https://i.ytimg.com/vi/pgeZvH18JZQ/mqdefault_live.jpg",
- "width": 320,
- "height": 180
- },
- "high": {
- "url": "https://i.ytimg.com/vi/pgeZvH18JZQ/hqdefault_live.jpg",
- "width": 480,
- "height": 360
- }
- },
- "channelTitle": "Republic World",
- "liveBroadcastContent": "live",
- "publishTime": "2024-11-23T09:28:51Z"
- }
- },
{
"kind": "youtube#searchResult",
"etag": "S-F2zBYCFwubcn2wEQ1WdVgJrjc",
@@ -851,36 +749,36 @@
},
{
"kind": "youtube#searchResult",
- "etag": "X_V6ACrQdJUzL-Z61zs1rF82vTs",
+ "etag": "G-gvzBhCXefMTegsmBWRvNAq6H8",
"id": {
"kind": "youtube#video",
- "videoId": "nHizNdnzwfM"
+ "videoId": "7kzByb2bfPw"
},
"snippet": {
- "publishedAt": "2024-11-22T18:11:52Z",
+ "publishedAt": "2024-11-22T17:58:19Z",
"channelId": "UCwqusr8YDwM-3mEYTDeJHzw",
- "title": "Fastest Election Results With Arnab LIVE: Maharashtra | Jharkhand | Election Results 2024 LIVE",
- "description": "Fastest Election Results With Arnab LIVE: Maharashtra | Jharkhand | Election Results 2024 LIVE #Nov23WithArnab ...",
+ "title": "Maharashtra-Jharkhand Election Results 2024 LIVE: Who Will Win? | Elections Result Counting LIVE",
+ "description": "Maharashtra-Jharkhand Assembly Election Results LIVE: Who Will Win The Election? | NDA vs INDIA Bloc Maharashtra ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/nHizNdnzwfM/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/7kzByb2bfPw/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/nHizNdnzwfM/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/7kzByb2bfPw/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/nHizNdnzwfM/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/7kzByb2bfPw/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
"channelTitle": "Republic World",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-22T18:11:52Z"
+ "publishTime": "2024-11-22T17:58:19Z"
}
},
{
@@ -919,36 +817,36 @@
},
{
"kind": "youtube#searchResult",
- "etag": "ksT4tmUlqicdy6g3svvsOFfwKbU",
+ "etag": "X_V6ACrQdJUzL-Z61zs1rF82vTs",
"id": {
"kind": "youtube#video",
- "videoId": "kXGlLBURtr0"
+ "videoId": "nHizNdnzwfM"
},
"snippet": {
- "publishedAt": "2024-10-27T08:11:57Z",
- "channelId": "UCoJmJjKcSaol6dUhhzTNlcw",
- "title": "Live Tucson, AZ Webcam - UArizona Computer Science Webcams",
- "description": "Live webcam stream from The University of Arizona Department of Computer Science in the Gould-Simpson building. Webcam ...",
+ "publishedAt": "2024-11-22T18:11:52Z",
+ "channelId": "UCwqusr8YDwM-3mEYTDeJHzw",
+ "title": "Fastest Election Results With Arnab LIVE: Maharashtra | Jharkhand | Election Results 2024 LIVE",
+ "description": "Fastest Election Results With Arnab LIVE: Maharashtra | Jharkhand | Election Results 2024 LIVE #Nov23WithArnab ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/kXGlLBURtr0/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/nHizNdnzwfM/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/kXGlLBURtr0/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/nHizNdnzwfM/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/kXGlLBURtr0/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/nHizNdnzwfM/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "UArizona Computer Science Webcams",
+ "channelTitle": "Republic World",
"liveBroadcastContent": "live",
- "publishTime": "2024-10-27T08:11:57Z"
+ "publishTime": "2024-11-22T18:11:52Z"
}
},
{
@@ -1021,70 +919,70 @@
},
{
"kind": "youtube#searchResult",
- "etag": "Tc8LLKX0JpKQliZEVqhnJVLbkf0",
+ "etag": "vOzw3CamvsAJjxaIh-univsyMfc",
"id": {
"kind": "youtube#video",
- "videoId": "smMOCUKLKxI"
+ "videoId": "emWw0AQnRw4"
},
"snippet": {
- "publishedAt": "2024-11-23T03:28:52Z",
- "channelId": "UCwqusr8YDwM-3mEYTDeJHzw",
- "title": "Big Breaking: UP Byelection Results LIVE, BJP Leads On All 9 Seats",
- "description": "Big Breaking: UP Byelection Results LIVE, BJP Leads On All 9 Seats Full Story On: https://www.republicworld.com ...",
+ "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/smMOCUKLKxI/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/emWw0AQnRw4/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/smMOCUKLKxI/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/emWw0AQnRw4/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/smMOCUKLKxI/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/emWw0AQnRw4/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Republic World",
+ "channelTitle": "Sant Shri Asharamji Ashram",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-23T03:28:52Z"
+ "publishTime": "2024-05-11T10:38:03Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "foQJ1ViZQzgDucOR07E4OgdcgBA",
+ "etag": "Tc8LLKX0JpKQliZEVqhnJVLbkf0",
"id": {
"kind": "youtube#video",
- "videoId": "VrISLsyjUG4"
+ "videoId": "smMOCUKLKxI"
},
"snippet": {
- "publishedAt": "2024-11-23T07:59:55Z",
- "channelId": "UCHCR4UFsGwd_VcDa0-a4haw",
- "title": "MAHARASHTRA ELECTION RESULTS 2024 LIVE | মহারাষ্ট্রে জয়ের পথে NDA! | VOTE LIVE UPDATES | BANGLA NEWS",
- "description": "MAHARASHTRA ELECTION RESULTS 2024 LIVE | মহারাষ্ট্রে জয়ের পথে NDA! | VOTE LIVE UPDATES ...",
+ "publishedAt": "2024-11-23T03:28:52Z",
+ "channelId": "UCwqusr8YDwM-3mEYTDeJHzw",
+ "title": "Big Breaking: UP Byelection Results LIVE, BJP Leads On All 9 Seats",
+ "description": "Big Breaking: UP Byelection Results LIVE, BJP Leads On All 9 Seats Full Story On: https://www.republicworld.com ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/VrISLsyjUG4/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/smMOCUKLKxI/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/VrISLsyjUG4/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/smMOCUKLKxI/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/VrISLsyjUG4/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/smMOCUKLKxI/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "TV9 Bangla",
+ "channelTitle": "Republic World",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-23T07:59:55Z"
+ "publishTime": "2024-11-23T03:28:52Z"
}
},
{
@@ -1123,36 +1021,36 @@
},
{
"kind": "youtube#searchResult",
- "etag": "W55ZC9JaPu4QC5-WO5aMdAnGUqs",
+ "etag": "foQJ1ViZQzgDucOR07E4OgdcgBA",
"id": {
"kind": "youtube#video",
- "videoId": "VbxfVNg7u6c"
+ "videoId": "VrISLsyjUG4"
},
"snippet": {
- "publishedAt": "2024-11-23T04:27:27Z",
+ "publishedAt": "2024-11-23T07:59:55Z",
"channelId": "UCHCR4UFsGwd_VcDa0-a4haw",
- "title": "MAHARASHTRA ELECTION RESULT 2024 LIVE | হাড্ডাহাড্ডি লড়াই মহারাষ্ট্রে, ভোটগণনার সব খবর সরাসরি TV9-এ",
- "description": "MAHARASHTRA ELECTION RESULT 2024 LIVE | হাড্ডাহাড্ডি লড়াই মহারাষ্ট্রে, ...",
+ "title": "MAHARASHTRA ELECTION RESULTS 2024 LIVE | মহারাষ্ট্রে জয়ের পথে NDA! | VOTE LIVE UPDATES | BANGLA NEWS",
+ "description": "MAHARASHTRA ELECTION RESULTS 2024 LIVE | মহারাষ্ট্রে জয়ের পথে NDA! | VOTE LIVE UPDATES ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/VbxfVNg7u6c/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/VrISLsyjUG4/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/VbxfVNg7u6c/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/VrISLsyjUG4/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/VbxfVNg7u6c/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/VrISLsyjUG4/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
"channelTitle": "TV9 Bangla",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-23T04:27:27Z"
+ "publishTime": "2024-11-23T07:59:55Z"
}
},
{
@@ -1191,70 +1089,70 @@
},
{
"kind": "youtube#searchResult",
- "etag": "JG6_yNXZ4JCP_S5JmK8GCOVDgnU",
+ "etag": "W55ZC9JaPu4QC5-WO5aMdAnGUqs",
"id": {
"kind": "youtube#video",
- "videoId": "yprVpUH_4NQ"
+ "videoId": "VbxfVNg7u6c"
},
"snippet": {
- "publishedAt": "2024-11-03T10:52:29Z",
- "channelId": "UCCQmi1Bd-_tHRm6M2uPlGUA",
- "title": "Nitin Gadkari Speech LIVE : गडकरी ने Maharashtra में बदला मुसलमानों का मन, बजने लगी तालियां !",
- "description": "Nitin Gadkari Speech LIVE : गडकरी ने Maharashtra में बदला मुसलमानों का मन, बजने लगी ...",
+ "publishedAt": "2024-11-23T04:27:27Z",
+ "channelId": "UCHCR4UFsGwd_VcDa0-a4haw",
+ "title": "MAHARASHTRA ELECTION RESULT 2024 LIVE | হাড্ডাহাড্ডি লড়াই মহারাষ্ট্রে, ভোটগণনার সব খবর সরাসরি TV9-এ",
+ "description": "MAHARASHTRA ELECTION RESULT 2024 LIVE | হাড্ডাহাড্ডি লড়াই মহারাষ্ট্রে, ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/yprVpUH_4NQ/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/VbxfVNg7u6c/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/yprVpUH_4NQ/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/VbxfVNg7u6c/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/yprVpUH_4NQ/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/VbxfVNg7u6c/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Bharat 24 - Vision Of New India ",
+ "channelTitle": "TV9 Bangla",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-03T10:52:29Z"
+ "publishTime": "2024-11-23T04:27:27Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "zUpMe10fgWcHjgwYwAG-42SRzaI",
+ "etag": "JG6_yNXZ4JCP_S5JmK8GCOVDgnU",
"id": {
"kind": "youtube#video",
- "videoId": "fimg3DQeQA8"
+ "videoId": "yprVpUH_4NQ"
},
"snippet": {
- "publishedAt": "2024-11-23T08:51:07Z",
- "channelId": "UCHCR4UFsGwd_VcDa0-a4haw",
- "title": "MAHARASHTRA ELECTION RESULTS 2024 LIVE | মহারাষ্ট্রের ভোটে অবাক সকলেই...| VOTE LIVE UPDATES",
- "description": "MAHARASHTRA ELECTION RESULTS 2024 LIVE | মহারাষ্ট্রের ভোটে অবাক সকলেই...| VOTE LIVE ...",
+ "publishedAt": "2024-11-03T10:52:29Z",
+ "channelId": "UCCQmi1Bd-_tHRm6M2uPlGUA",
+ "title": "Nitin Gadkari Speech LIVE : गडकरी ने Maharashtra में बदला मुसलमानों का मन, बजने लगी तालियां !",
+ "description": "Nitin Gadkari Speech LIVE : गडकरी ने Maharashtra में बदला मुसलमानों का मन, बजने लगी ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/fimg3DQeQA8/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/yprVpUH_4NQ/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/fimg3DQeQA8/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/yprVpUH_4NQ/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/fimg3DQeQA8/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/yprVpUH_4NQ/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "TV9 Bangla",
+ "channelTitle": "Bharat 24 - Vision Of New India ",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-23T08:51:07Z"
+ "publishTime": "2024-11-03T10:52:29Z"
}
},
{
@@ -1293,36 +1191,70 @@
},
{
"kind": "youtube#searchResult",
- "etag": "0vx5GWuOL016A8hczu7la41ObWo",
+ "etag": "zUpMe10fgWcHjgwYwAG-42SRzaI",
"id": {
"kind": "youtube#video",
- "videoId": "gakLipv-p5E"
+ "videoId": "fimg3DQeQA8"
},
"snippet": {
- "publishedAt": "2024-11-23T10:25:11Z",
- "channelId": "UCjkLYVF8Up8zt9ZQNLpR_TQ",
- "title": "Dhananjay Munde Vijay Rally Parli LIVE : विजयानंतर मुंडेंची विजय रॅली | Beed Politics | Vidhan Sabha",
- "description": "BeedPolitics #VidhanSabha #DhananjayMunde #VijayRallyParli #LatestMarathiNews #MaharashtraPolitics #electionresultslive ...",
+ "publishedAt": "2024-11-23T08:51:07Z",
+ "channelId": "UCHCR4UFsGwd_VcDa0-a4haw",
+ "title": "MAHARASHTRA ELECTION RESULTS 2024 LIVE | মহারাষ্ট্রের ভোটে অবাক সকলেই...| VOTE LIVE UPDATES",
+ "description": "MAHARASHTRA ELECTION RESULTS 2024 LIVE | মহারাষ্ট্রের ভোটে অবাক সকলেই...| VOTE LIVE ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/gakLipv-p5E/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/fimg3DQeQA8/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/gakLipv-p5E/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/fimg3DQeQA8/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/gakLipv-p5E/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/fimg3DQeQA8/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Times Now Marathi",
+ "channelTitle": "TV9 Bangla",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-23T08:51:07Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "xTkJHgKgv1YTqkEGMQsYDvoE52o",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "eFV5BPValKQ"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-23T11:11:54Z",
+ "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/eFV5BPValKQ/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/eFV5BPValKQ/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/eFV5BPValKQ/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "LAB 360",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-23T10:25:11Z"
+ "publishTime": "2024-11-23T11:11:54Z"
}
},
{
@@ -1427,6 +1359,40 @@
"publishTime": "2024-11-23T04:01:54Z"
}
},
+ {
+ "kind": "youtube#searchResult",
+ "etag": "ss_FXivlL0csdmyMKAXtUoOKfxQ",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "1tVC_70BOe8"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-22T01:13:14Z",
+ "channelId": "UCXIvAXVdbUDzIFhVwB9RR-g",
+ "title": "🔴LIVE | Sheriff Labrador Visits the Robot Hotel | Funny Stories | Cartoon | Kids Videos for Kids",
+ "description": "Subscribe for new videos every week! https://www.youtube.com/channel/UCXIvAXVdbUDzIFhVwB9RR-g?sub_confirmation=1 ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/1tVC_70BOe8/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/1tVC_70BOe8/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/1tVC_70BOe8/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "Sheriff Labrador - Kids Cartoon",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-22T01:13:14Z"
+ }
+ },
{
"kind": "youtube#searchResult",
"etag": "7peumWwQ0AwRKFvI_q4tJ4leabU",
@@ -1463,36 +1429,36 @@
},
{
"kind": "youtube#searchResult",
- "etag": "ss_FXivlL0csdmyMKAXtUoOKfxQ",
+ "etag": "M-dXHM5FJGE0551CSipF9huDq_Y",
"id": {
"kind": "youtube#video",
- "videoId": "1tVC_70BOe8"
+ "videoId": "8cc9vC5cVq8"
},
"snippet": {
- "publishedAt": "2024-11-22T01:13:14Z",
- "channelId": "UCXIvAXVdbUDzIFhVwB9RR-g",
- "title": "🔴LIVE | Sheriff Labrador Visits the Robot Hotel | Funny Stories | Cartoon | Kids Videos for Kids",
- "description": "Subscribe for new videos every week! https://www.youtube.com/channel/UCXIvAXVdbUDzIFhVwB9RR-g?sub_confirmation=1 ...",
+ "publishedAt": "2024-11-23T11:07:32Z",
+ "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/1tVC_70BOe8/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/8cc9vC5cVq8/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/1tVC_70BOe8/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/8cc9vC5cVq8/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/1tVC_70BOe8/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/8cc9vC5cVq8/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Sheriff Labrador - Kids Cartoon",
+ "channelTitle": "LAB 360",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-22T01:13:14Z"
+ "publishTime": "2024-11-23T11:07:32Z"
}
},
{
@@ -1565,70 +1531,70 @@
},
{
"kind": "youtube#searchResult",
- "etag": "M-dXHM5FJGE0551CSipF9huDq_Y",
+ "etag": "HSRbImk5ys8J53LfGSey7JcT9dU",
"id": {
"kind": "youtube#video",
- "videoId": "8cc9vC5cVq8"
+ "videoId": "3wy-RmEtGGs"
},
"snippet": {
- "publishedAt": "2024-11-23T11:07:32Z",
- "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 ...",
+ "publishedAt": "2024-11-23T06:10:10Z",
+ "channelId": "UCwqusr8YDwM-3mEYTDeJHzw",
+ "title": "BREAKING: Congress Concedes Defeat as MVA Totters Under 50 In Maharashtra",
+ "description": "BREAKING: Congress Concedes Defeat as MVA Totters Under 50 In Maharashtra Description: Full Story On: ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/8cc9vC5cVq8/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/3wy-RmEtGGs/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/8cc9vC5cVq8/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/3wy-RmEtGGs/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/8cc9vC5cVq8/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/3wy-RmEtGGs/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "LAB 360",
+ "channelTitle": "Republic World",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-23T11:07:32Z"
+ "publishTime": "2024-11-23T06:10:10Z"
}
},
{
"kind": "youtube#searchResult",
- "etag": "HSRbImk5ys8J53LfGSey7JcT9dU",
+ "etag": "30RR-IGU7DFU_F3FYPuSXmx2q3w",
"id": {
"kind": "youtube#video",
- "videoId": "3wy-RmEtGGs"
+ "videoId": "d1OrrJ_Or3I"
},
"snippet": {
- "publishedAt": "2024-11-23T06:10:10Z",
- "channelId": "UCwqusr8YDwM-3mEYTDeJHzw",
- "title": "BREAKING: Congress Concedes Defeat as MVA Totters Under 50 In Maharashtra",
- "description": "BREAKING: Congress Concedes Defeat as MVA Totters Under 50 In Maharashtra Description: Full Story On: ...",
+ "publishedAt": "2024-11-23T11:19:44Z",
+ "channelId": "UCH7zqR7-T0oHRe8exhPuUag",
+ "title": "🔴 LIVE | 3 Times Humans Unearthed Evidence of Aliens - Shocking Discoveries!",
+ "description": "Discover three mind-blowing instances where humans have allegedly unearthed evidence of alien life! From ancient artifacts to ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/3wy-RmEtGGs/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/d1OrrJ_Or3I/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/3wy-RmEtGGs/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/d1OrrJ_Or3I/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/3wy-RmEtGGs/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/d1OrrJ_Or3I/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "Republic World",
+ "channelTitle": "YouCurious?",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-23T06:10:10Z"
+ "publishTime": "2024-11-23T11:19:44Z"
}
},
{
@@ -1667,36 +1633,70 @@
},
{
"kind": "youtube#searchResult",
- "etag": "30RR-IGU7DFU_F3FYPuSXmx2q3w",
+ "etag": "EvSl0csB0sbpNW0jBxA7_bChfgw",
"id": {
"kind": "youtube#video",
- "videoId": "d1OrrJ_Or3I"
+ "videoId": "doxgjzNG78E"
},
"snippet": {
- "publishedAt": "2024-11-23T11:19:44Z",
- "channelId": "UCH7zqR7-T0oHRe8exhPuUag",
- "title": "🔴 LIVE | 3 Times Humans Unearthed Evidence of Aliens - Shocking Discoveries!",
- "description": "Discover three mind-blowing instances where humans have allegedly unearthed evidence of alien life! From ancient artifacts to ...",
+ "publishedAt": "2024-11-23T11:47:49Z",
+ "channelId": "UC9OM-qeiYIPtAkBe9veG5uw",
+ "title": "Paramashivoham Level-2 | Day 1 | The Science of #Manifestation: Unleashing Your True #Potential",
+ "description": "Do you feel that you have untapped potential within you? Consider this a sign. Every human, like a dormant seed, is filled with ...",
"thumbnails": {
"default": {
- "url": "https://i.ytimg.com/vi/d1OrrJ_Or3I/default_live.jpg",
+ "url": "https://i.ytimg.com/vi/doxgjzNG78E/default_live.jpg",
"width": 120,
"height": 90
},
"medium": {
- "url": "https://i.ytimg.com/vi/d1OrrJ_Or3I/mqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/doxgjzNG78E/mqdefault_live.jpg",
"width": 320,
"height": 180
},
"high": {
- "url": "https://i.ytimg.com/vi/d1OrrJ_Or3I/hqdefault_live.jpg",
+ "url": "https://i.ytimg.com/vi/doxgjzNG78E/hqdefault_live.jpg",
"width": 480,
"height": 360
}
},
- "channelTitle": "YouCurious?",
+ "channelTitle": "KAILASA's SPH Nithyananda",
"liveBroadcastContent": "live",
- "publishTime": "2024-11-23T11:19:44Z"
+ "publishTime": "2024-11-23T11:47:49Z"
+ }
+ },
+ {
+ "kind": "youtube#searchResult",
+ "etag": "VlCvdL_tiVc__6g64YJG09r67Nw",
+ "id": {
+ "kind": "youtube#video",
+ "videoId": "4TgrXfWdBTU"
+ },
+ "snippet": {
+ "publishedAt": "2024-11-23T09:25:35Z",
+ "channelId": "UCHCR4UFsGwd_VcDa0-a4haw",
+ "title": "MAHARASHTRA ELECTION RESULTS 2024 LIVE | উদ্ধব-শরদরা চুপসে গেলেন কেন? | VOTE LIVE UPDATES",
+ "description": "MAHARASHTRA ELECTION RESULTS 2024 LIVE | উদ্ধব-শরদরা চুপসে গেলেন কেন? | VOTE LIVE ...",
+ "thumbnails": {
+ "default": {
+ "url": "https://i.ytimg.com/vi/4TgrXfWdBTU/default_live.jpg",
+ "width": 120,
+ "height": 90
+ },
+ "medium": {
+ "url": "https://i.ytimg.com/vi/4TgrXfWdBTU/mqdefault_live.jpg",
+ "width": 320,
+ "height": 180
+ },
+ "high": {
+ "url": "https://i.ytimg.com/vi/4TgrXfWdBTU/hqdefault_live.jpg",
+ "width": 480,
+ "height": 360
+ }
+ },
+ "channelTitle": "TV9 Bangla",
+ "liveBroadcastContent": "live",
+ "publishTime": "2024-11-23T09:25:35Z"
}
}
]
\ No newline at end of file