Compare commits
7 commits
690388788a
...
f44bc6434a
Author | SHA1 | Date | |
---|---|---|---|
f44bc6434a | |||
0cbeb0524d | |||
f526470b6a | |||
3970a4b9d9 | |||
1b94dc1f40 | |||
5188527b94 | |||
16638d3eda |
95 changed files with 2635 additions and 2347 deletions
|
@ -48,7 +48,7 @@ time = { version = "0.3.15", features = [
|
|||
futures = "0.3.21"
|
||||
ress = "0.11.4"
|
||||
phf = "0.11.1"
|
||||
base64 = "0.13.0"
|
||||
base64 = "0.20.0"
|
||||
quick-xml = { version = "0.26.0", features = ["serialize"], optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
|
|
|
@ -60,12 +60,12 @@ async fn download_single_video(
|
|||
video_id
|
||||
))?;
|
||||
|
||||
let mut filter = StreamFilter::default();
|
||||
let mut filter = StreamFilter::new();
|
||||
if let Some(res) = resolution {
|
||||
if res == 0 {
|
||||
filter.no_video();
|
||||
filter = filter.no_video();
|
||||
} else {
|
||||
filter.video_max_res(res);
|
||||
filter = filter.video_max_res(res);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -82,7 +82,7 @@ async fn download_single_video(
|
|||
.await
|
||||
.context(format!(
|
||||
"Failed to download video '{}' [{}]",
|
||||
player_data.details.title, video_id
|
||||
player_data.details.name, video_id
|
||||
))
|
||||
}
|
||||
.await;
|
||||
|
@ -167,7 +167,7 @@ async fn download_playlist(
|
|||
.map(|video| {
|
||||
download_single_video(
|
||||
video.id,
|
||||
video.title,
|
||||
video.name,
|
||||
output_dir,
|
||||
output_fname.to_owned(),
|
||||
resolution,
|
||||
|
|
|
@ -300,7 +300,7 @@ pub async fn download_video(
|
|||
) -> Result<()> {
|
||||
// Download filepath
|
||||
let download_dir = PathBuf::from(output_dir);
|
||||
let title = player_data.details.title.to_owned();
|
||||
let title = player_data.details.name.to_owned();
|
||||
let output_fname_set = output_fname.is_some();
|
||||
let output_fname = output_fname.unwrap_or_else(|| {
|
||||
filenamify::filenamify(format!("{} [{}]", title, player_data.details.id))
|
||||
|
|
|
@ -67,7 +67,7 @@ impl RustyPipeQuery {
|
|||
.enumerate()
|
||||
.filter_map(|(i, track)| {
|
||||
if track.is_video {
|
||||
Some((i, track.title.to_owned()))
|
||||
Some((i, track.name.to_owned()))
|
||||
} else {
|
||||
None
|
||||
}
|
||||
|
@ -79,7 +79,7 @@ impl RustyPipeQuery {
|
|||
|
||||
for (i, title) in to_replace {
|
||||
let found_track = playlist.tracks.items.iter().find_map(|track| {
|
||||
if track.title == title && !track.is_video {
|
||||
if track.name == title && !track.is_video {
|
||||
Some((track.id.to_owned(), track.duration))
|
||||
} else {
|
||||
None
|
||||
|
@ -277,9 +277,30 @@ impl MapResponse<MusicAlbum> for response::MusicPlaylist {
|
|||
)))?;
|
||||
|
||||
let mut subtitle_split = header.subtitle.split(util::DOT_SEPARATOR);
|
||||
let year_txt = subtitle_split.try_swap_remove(2).map(|cmp| cmp.to_string());
|
||||
|
||||
let artists_p = subtitle_split.try_swap_remove(1);
|
||||
let (year_txt, artists_p) = match subtitle_split.len() {
|
||||
3.. => {
|
||||
let year_txt = subtitle_split
|
||||
.swap_remove(2)
|
||||
.0
|
||||
.get(0)
|
||||
.map(|c| c.as_str().to_owned());
|
||||
(year_txt, subtitle_split.try_swap_remove(1))
|
||||
}
|
||||
2 => {
|
||||
// The second part may either be the year or the artist
|
||||
let p2 = subtitle_split.swap_remove(1);
|
||||
let is_year =
|
||||
p2.0.len() == 1 && p2.0[0].as_str().chars().all(|c| c.is_ascii_digit());
|
||||
if is_year {
|
||||
(Some(p2.0[0].as_str().to_owned()), None)
|
||||
} else {
|
||||
(None, Some(p2))
|
||||
}
|
||||
}
|
||||
_ => (None, None),
|
||||
};
|
||||
|
||||
let (artists, by_va) = map_artists(artists_p);
|
||||
let album_type_txt = subtitle_split
|
||||
.try_swap_remove(0)
|
||||
|
|
|
@ -220,7 +220,7 @@ impl MapResponse<VideoPlayer> for response::Player {
|
|||
|
||||
let video_info = VideoPlayerDetails {
|
||||
id: video_details.video_id,
|
||||
title: video_details.title,
|
||||
name: video_details.title,
|
||||
description: video_details.short_description,
|
||||
length: video_details.length_seconds,
|
||||
thumbnail: video_details.thumbnail.into(),
|
||||
|
|
|
@ -103,7 +103,7 @@ impl From<ChannelRss> for crate::model::ChannelRss {
|
|||
.into_iter()
|
||||
.map(|item| crate::model::ChannelRssVideo {
|
||||
id: item.video_id,
|
||||
title: item.title,
|
||||
name: item.title,
|
||||
description: item.media_group.description,
|
||||
thumbnail: item.media_group.thumbnail.into(),
|
||||
publish_date: item.published,
|
||||
|
|
|
@ -626,7 +626,7 @@ impl MusicListMapper {
|
|||
|
||||
self.items.push(MusicItem::Track(TrackItem {
|
||||
id,
|
||||
title,
|
||||
name: title,
|
||||
duration,
|
||||
cover: item.thumbnail.into(),
|
||||
artists,
|
||||
|
@ -751,7 +751,7 @@ impl MusicListMapper {
|
|||
|
||||
self.items.push(MusicItem::Track(TrackItem {
|
||||
id,
|
||||
title: item.title,
|
||||
name: item.title,
|
||||
duration: None,
|
||||
cover: item.thumbnail_renderer.into(),
|
||||
artist_id: artists.first().and_then(|a| a.id.to_owned()),
|
||||
|
@ -796,12 +796,20 @@ impl MusicListMapper {
|
|||
map_album_type(atype_txt.first_str(), self.lang);
|
||||
artists.clone()
|
||||
}
|
||||
// Album on artist page with unknown year
|
||||
(None, None, Some(artists), true) => artists.clone(),
|
||||
// "Album", <"Oonagh"> (Album variants, new releases)
|
||||
(Some(atype_txt), Some(p2), _, false) => {
|
||||
album_type =
|
||||
map_album_type(atype_txt.first_str(), self.lang);
|
||||
map_artists(Some(p2))
|
||||
}
|
||||
// "Album" (Album variants, no artist)
|
||||
(Some(atype_txt), None, _, false) => {
|
||||
album_type =
|
||||
map_album_type(atype_txt.first_str(), self.lang);
|
||||
(Vec::new(), true)
|
||||
}
|
||||
_ => {
|
||||
return Err(format!(
|
||||
"could not parse subtitle of album {}",
|
||||
|
@ -1016,7 +1024,7 @@ pub(crate) fn map_queue_item(item: QueueMusicItem, lang: Language) -> TrackItem
|
|||
|
||||
TrackItem {
|
||||
id: item.video_id,
|
||||
title: item.title,
|
||||
name: item.title,
|
||||
duration: item
|
||||
.length_text
|
||||
.and_then(|txt| util::parse_video_length(&txt)),
|
||||
|
|
|
@ -183,7 +183,7 @@ impl TryFrom<PlaylistVideoRenderer> for crate::model::PlaylistVideo {
|
|||
fn try_from(video: PlaylistVideoRenderer) -> Result<Self, Self::Error> {
|
||||
Ok(Self {
|
||||
id: video.video_id,
|
||||
title: video.title,
|
||||
name: video.title,
|
||||
length: video.length_seconds,
|
||||
thumbnail: video.thumbnail.into(),
|
||||
channel: crate::model::ChannelId::try_from(video.channel)?,
|
||||
|
|
|
@ -77,7 +77,7 @@ pub(crate) enum VideoResultsItem {
|
|||
VideoPrimaryInfoRenderer {
|
||||
#[serde_as(as = "Text")]
|
||||
title: String,
|
||||
view_count: ViewCount,
|
||||
view_count: Option<ViewCount>,
|
||||
/// Like/Dislike button
|
||||
video_actions: VideoActions,
|
||||
/// Absolute textual date (e.g. `Dec 29, 2019`)
|
||||
|
|
|
@ -443,7 +443,7 @@ impl<T> YouTubeListMapper<T> {
|
|||
|
||||
VideoItem {
|
||||
id: video.video_id,
|
||||
title: video.title,
|
||||
name: video.title,
|
||||
length: length_text.and_then(|txt| util::parse_video_length(&txt)),
|
||||
thumbnail: video.thumbnail.into(),
|
||||
channel: video
|
||||
|
@ -501,7 +501,7 @@ impl<T> YouTubeListMapper<T> {
|
|||
|
||||
VideoItem {
|
||||
id: video.video_id,
|
||||
title: video.headline,
|
||||
name: video.headline,
|
||||
length: video.accessibility.and_then(|acc| {
|
||||
ACCESSIBILITY_SEP_REGEX
|
||||
.captures(&acc)
|
||||
|
|
|
@ -150,7 +150,7 @@ Channel(
|
|||
items: [
|
||||
VideoItem(
|
||||
id: "hhs95CI6Dsg",
|
||||
title: "MARS 2020 Landing LIVE",
|
||||
name: "MARS 2020 Landing LIVE",
|
||||
length: Some(6321),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -191,7 +191,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "cpQk2n-wmQ4",
|
||||
title: "LIVE Soldering",
|
||||
name: "LIVE Soldering",
|
||||
length: Some(7046),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -232,7 +232,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "kIDV_XN9oA8",
|
||||
title: "LIVE Soldering",
|
||||
name: "LIVE Soldering",
|
||||
length: Some(4353),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -273,7 +273,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "DWS4Qp3Yn0A",
|
||||
title: "Apollo 11 Launch LIVE - 50 Years Later",
|
||||
name: "Apollo 11 Launch LIVE - 50 Years Later",
|
||||
length: Some(4560),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -314,7 +314,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "LwjTe3SiVXg",
|
||||
title: "EEVblog LIVE Q&A",
|
||||
name: "EEVblog LIVE Q&A",
|
||||
length: Some(3943),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -355,7 +355,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "skPiz3GrVNs",
|
||||
title: "LIVE Keysight Scope Draw #2",
|
||||
name: "LIVE Keysight Scope Draw #2",
|
||||
length: Some(2445),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -396,7 +396,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "HZc-Ctvgv5Y",
|
||||
title: "LIVE Keysight Scope Draw",
|
||||
name: "LIVE Keysight Scope Draw",
|
||||
length: Some(6455),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -437,7 +437,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "5ilODYy2zGE",
|
||||
title: "Ask Dave LIVE - March 8th 2019",
|
||||
name: "Ask Dave LIVE - March 8th 2019",
|
||||
length: Some(10645),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -478,7 +478,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "gQ7TTuiDH1M",
|
||||
title: "Ask Dave LIVE - Jan 28th 2019",
|
||||
name: "Ask Dave LIVE - Jan 28th 2019",
|
||||
length: Some(17228),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -519,7 +519,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "qpw9dKxL2Ho",
|
||||
title: "LIVE KiCAD 5 PCB Design",
|
||||
name: "LIVE KiCAD 5 PCB Design",
|
||||
length: Some(8003),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -560,7 +560,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "wECZoUNd2GY",
|
||||
title: "EEVblog LIVE DIY TTL Computer Build",
|
||||
name: "EEVblog LIVE DIY TTL Computer Build",
|
||||
length: Some(14599),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -601,7 +601,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "bV99dn-tWDk",
|
||||
title: "EEVblog LIVE Scope Draw",
|
||||
name: "EEVblog LIVE Scope Draw",
|
||||
length: Some(2694),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -642,7 +642,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "-NGRIFiu_p0",
|
||||
title: "EEVblog LIVE SHOW - End of 2017",
|
||||
name: "EEVblog LIVE SHOW - End of 2017",
|
||||
length: Some(12238),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -683,7 +683,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "zgE6_x4rM5k",
|
||||
title: "LIVE Show Giveaway",
|
||||
name: "LIVE Show Giveaway",
|
||||
length: Some(5533),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -724,7 +724,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "9DjABCJN2M8",
|
||||
title: "LIVE Testing of the Batteriser",
|
||||
name: "LIVE Testing of the Batteriser",
|
||||
length: Some(10747),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -765,7 +765,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "cAsUI2YhqN4",
|
||||
title: "LIVE Unboxing of the Batteriser! (Batteroo)",
|
||||
name: "LIVE Unboxing of the Batteriser! (Batteroo)",
|
||||
length: Some(3102),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -806,7 +806,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "CLYKwFMW9J0",
|
||||
title: "Juno Live Again",
|
||||
name: "Juno Live Again",
|
||||
length: Some(811),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -847,7 +847,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "nV43vM9VcUA",
|
||||
title: "Juno Live",
|
||||
name: "Juno Live",
|
||||
length: Some(190),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -888,7 +888,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "38uFiWzcDnc",
|
||||
title: "Juno Orbital Insertion Live",
|
||||
name: "Juno Orbital Insertion Live",
|
||||
length: Some(1731),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -929,7 +929,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "ib80yjc9VlM",
|
||||
title: "Juno Jupiter Live",
|
||||
name: "Juno Jupiter Live",
|
||||
length: Some(581),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -970,7 +970,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "rQRakYpb8-g",
|
||||
title: "eevSTREAM: Lab Rearrangement Part 2",
|
||||
name: "eevSTREAM: Lab Rearrangement Part 2",
|
||||
length: Some(8616),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1011,7 +1011,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "DwLEFKu2XWg",
|
||||
title: "eevSTREAM: Lab Rearrangement Part 1",
|
||||
name: "eevSTREAM: Lab Rearrangement Part 1",
|
||||
length: Some(768),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1052,7 +1052,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "VeUDXQR3F2o",
|
||||
title: "Live Show",
|
||||
name: "Live Show",
|
||||
length: Some(10360),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1093,7 +1093,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "PgZx25vVwoI",
|
||||
title: "Live Giveaway",
|
||||
name: "Live Giveaway",
|
||||
length: Some(1808),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1134,7 +1134,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "jUtzoO-ur34",
|
||||
title: "Inventables X-Carve LIVE Build Part 4",
|
||||
name: "Inventables X-Carve LIVE Build Part 4",
|
||||
length: Some(10665),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1175,7 +1175,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "199gtbX1y4M",
|
||||
title: "Inventables X-Carve LIVE Build Part 3 + Batteriser Rant",
|
||||
name: "Inventables X-Carve LIVE Build Part 3 + Batteriser Rant",
|
||||
length: Some(6267),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1216,7 +1216,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "nQH4I_p7-MI",
|
||||
title: "Inventables X-Carve LIVE Build Part 2",
|
||||
name: "Inventables X-Carve LIVE Build Part 2",
|
||||
length: Some(17643),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1257,7 +1257,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "XBMNFXGKpaw",
|
||||
title: "Inventables X-Carve LIVE Build",
|
||||
name: "Inventables X-Carve LIVE Build",
|
||||
length: Some(5479),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1298,7 +1298,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "yl6DGgiE3J8",
|
||||
title: "Apollo Saturn LVDC Live testing",
|
||||
name: "Apollo Saturn LVDC Live testing",
|
||||
length: Some(1076),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1339,7 +1339,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "EEMcIZAcKjc",
|
||||
title: "LIVE EEVblog Mailbag",
|
||||
name: "LIVE EEVblog Mailbag",
|
||||
length: Some(7344),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -121,7 +121,7 @@ Channel(
|
|||
items: [
|
||||
VideoItem(
|
||||
id: "glyJWxp7a5g",
|
||||
title: "being smart was my personality trait",
|
||||
name: "being smart was my personality trait",
|
||||
length: Some(56),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -147,7 +147,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "dd1EZIkANYs",
|
||||
title: "the horror maze",
|
||||
name: "the horror maze",
|
||||
length: Some(44),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -173,7 +173,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "enioc_stRww",
|
||||
title: "furikake bagels with wasabi cream cheese",
|
||||
name: "furikake bagels with wasabi cream cheese",
|
||||
length: Some(60),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -199,7 +199,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "NUM8kCPas5w",
|
||||
title: "simple is best",
|
||||
name: "simple is best",
|
||||
length: Some(49),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -225,7 +225,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "1djkcsFnlYE",
|
||||
title: "edible history lesson!",
|
||||
name: "edible history lesson!",
|
||||
length: Some(60),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -251,7 +251,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "cIYrJtAoftI",
|
||||
title: "and I\'m feeling good",
|
||||
name: "and I\'m feeling good",
|
||||
length: Some(53),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -277,7 +277,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "cCrH8Er5tf4",
|
||||
title: "Rating Korean Convenience Store Milk Flavors 🥛🍼",
|
||||
name: "Rating Korean Convenience Store Milk Flavors 🥛🍼",
|
||||
length: Some(60),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -303,7 +303,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "tav5wsH7pzU",
|
||||
title: "online dating?",
|
||||
name: "online dating?",
|
||||
length: Some(58),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -329,7 +329,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "5Vd4_GXjF7o",
|
||||
title: "Creating thumbnails has never been easier with Adobe Express",
|
||||
name: "Creating thumbnails has never been easier with Adobe Express",
|
||||
length: Some(26),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -355,7 +355,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "-FN1sEI8HkU",
|
||||
title: "my favorite color is green",
|
||||
name: "my favorite color is green",
|
||||
length: Some(45),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -381,7 +381,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "viT-dcl2DGE",
|
||||
title: "frodo baggins?",
|
||||
name: "frodo baggins?",
|
||||
length: Some(60),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -407,7 +407,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "N5AKQflK1TU",
|
||||
title: "When you impulse buy...",
|
||||
name: "When you impulse buy...",
|
||||
length: Some(60),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -433,7 +433,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "OzIFALQ_YtA",
|
||||
title: "taste testing gam!",
|
||||
name: "taste testing gam!",
|
||||
length: Some(60),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -459,7 +459,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "dAcJILbc_0Q",
|
||||
title: "How to: Korean rice wine 🍶 (makgeolli)",
|
||||
name: "How to: Korean rice wine 🍶 (makgeolli)",
|
||||
length: Some(59),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -485,7 +485,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "GvutfmW26JQ",
|
||||
title: "👹stay sour 🍋",
|
||||
name: "👹stay sour 🍋",
|
||||
length: Some(52),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -511,7 +511,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "MwWdlNamxN0",
|
||||
title: "what I do with leftovers",
|
||||
name: "what I do with leftovers",
|
||||
length: Some(60),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -537,7 +537,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "FsYaHsohjBc",
|
||||
title: "osechi ft. slim shady",
|
||||
name: "osechi ft. slim shady",
|
||||
length: Some(52),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -563,7 +563,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "o04Yo2qxqcc",
|
||||
title: "trailer l doob gourmand ep.3 k bbq",
|
||||
name: "trailer l doob gourmand ep.3 k bbq",
|
||||
length: Some(53),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -589,7 +589,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "JBUZE0mIlg8",
|
||||
title: "small but sure joy",
|
||||
name: "small but sure joy",
|
||||
length: Some(29),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -615,7 +615,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "SRrvxFc2b2c",
|
||||
title: "i don\'t believe in long distance relationships",
|
||||
name: "i don\'t believe in long distance relationships",
|
||||
length: Some(60),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -641,7 +641,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "cNx0ql9gnf4",
|
||||
title: "come over :)",
|
||||
name: "come over :)",
|
||||
length: Some(44),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -667,7 +667,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "fGQUWI4o__A",
|
||||
title: "Baskin Robbins in South Korea",
|
||||
name: "Baskin Robbins in South Korea",
|
||||
length: Some(53),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -693,7 +693,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "Q73VTjdqVA8",
|
||||
title: "dry hot pot",
|
||||
name: "dry hot pot",
|
||||
length: Some(51),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -719,7 +719,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "gTG2WDbiYGo",
|
||||
title: "time machine",
|
||||
name: "time machine",
|
||||
length: Some(49),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -745,7 +745,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "y5JK5YFp92g",
|
||||
title: "tiramissu",
|
||||
name: "tiramissu",
|
||||
length: Some(58),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -771,7 +771,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "pvSWHm4wlxY",
|
||||
title: "having kids",
|
||||
name: "having kids",
|
||||
length: Some(60),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -797,7 +797,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "CqFGACRrWJE",
|
||||
title: "just do it",
|
||||
name: "just do it",
|
||||
length: Some(60),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -823,7 +823,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "DdGr6t2NqKc",
|
||||
title: "coming soon",
|
||||
name: "coming soon",
|
||||
length: Some(58),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -849,7 +849,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "jKS44NMWuXw",
|
||||
title: "adult money",
|
||||
name: "adult money",
|
||||
length: Some(60),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -875,7 +875,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "kx1YtJM_vbI",
|
||||
title: "a fig\'s journey",
|
||||
name: "a fig\'s journey",
|
||||
length: Some(57),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -901,7 +901,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "Sdbzs-1WWH0",
|
||||
title: "How to.. Mozzarella 🧀",
|
||||
name: "How to.. Mozzarella 🧀",
|
||||
length: Some(54),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -927,7 +927,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "9qBHyJIDous",
|
||||
title: "how to drink like a real korean",
|
||||
name: "how to drink like a real korean",
|
||||
length: Some(57),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -953,7 +953,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "mBeFDb4gp8s",
|
||||
title: "mr. krabs soup",
|
||||
name: "mr. krabs soup",
|
||||
length: Some(59),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -979,7 +979,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "b38r1UYqoBQ",
|
||||
title: "in five years",
|
||||
name: "in five years",
|
||||
length: Some(57),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1005,7 +1005,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "RdFk4WaifEo",
|
||||
title: "a weeknight dinner",
|
||||
name: "a weeknight dinner",
|
||||
length: Some(59),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1031,7 +1031,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "GuyGyzZcumI",
|
||||
title: "McDonald\'s Michelin Burger",
|
||||
name: "McDonald\'s Michelin Burger",
|
||||
length: Some(59),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1057,7 +1057,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "07Zipsb3-qU",
|
||||
title: "cwispy potato pancake",
|
||||
name: "cwispy potato pancake",
|
||||
length: Some(59),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1083,7 +1083,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "3kaePnU6Clo",
|
||||
title: "authenticity is overrated",
|
||||
name: "authenticity is overrated",
|
||||
length: Some(58),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1109,7 +1109,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "rt4rXMftnpg",
|
||||
title: "you can kimchi anything (T&C applies)",
|
||||
name: "you can kimchi anything (T&C applies)",
|
||||
length: Some(60),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1135,7 +1135,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "DTyLUvbf128",
|
||||
title: "egg, soy, and perfect pot rice",
|
||||
name: "egg, soy, and perfect pot rice",
|
||||
length: Some(60),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1161,7 +1161,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "DzjLBgIe_aI",
|
||||
title: "love language",
|
||||
name: "love language",
|
||||
length: Some(60),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1187,7 +1187,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "9JboRKeJ2m4",
|
||||
title: "Rating Italian McDonald\'s",
|
||||
name: "Rating Italian McDonald\'s",
|
||||
length: Some(60),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1213,7 +1213,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "_Tl6h81EIn8",
|
||||
title: "Dining at a 3 Michelin Star Restaurant in Korea",
|
||||
name: "Dining at a 3 Michelin Star Restaurant in Korea",
|
||||
length: Some(55),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1239,7 +1239,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "Oap2LXS22AE",
|
||||
title: "a teaser",
|
||||
name: "a teaser",
|
||||
length: Some(40),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1265,7 +1265,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "kCHjQE27i5w",
|
||||
title: "my favorite instant ramen recipe pt.3",
|
||||
name: "my favorite instant ramen recipe pt.3",
|
||||
length: Some(47),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1291,7 +1291,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "W9P0FdBh-LU",
|
||||
title: "cat food onigiri 🍙 (neko manma onigiri)",
|
||||
name: "cat food onigiri 🍙 (neko manma onigiri)",
|
||||
length: Some(50),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1317,7 +1317,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "MmxysCGNaMk",
|
||||
title: "Why I would never date a YouTuber",
|
||||
name: "Why I would never date a YouTuber",
|
||||
length: Some(55),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1343,7 +1343,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "IrR3tT_IqZg",
|
||||
title: "arguing with family",
|
||||
name: "arguing with family",
|
||||
length: Some(59),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -121,7 +121,7 @@ Channel(
|
|||
items: [
|
||||
VideoItem(
|
||||
id: "EIcmfSzeaKk",
|
||||
title: "our new normal",
|
||||
name: "our new normal",
|
||||
length: Some(1106),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -162,7 +162,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "9NuhKCv3crg",
|
||||
title: "the end.",
|
||||
name: "the end.",
|
||||
length: Some(982),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -203,7 +203,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "38Gd6TdmNVs",
|
||||
title: "KOREAN BARBECUE l doob gourmand ep.3",
|
||||
name: "KOREAN BARBECUE l doob gourmand ep.3",
|
||||
length: Some(525),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -244,7 +244,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "l9TiwunjzgA",
|
||||
title: "long distance",
|
||||
name: "long distance",
|
||||
length: Some(1043),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -285,7 +285,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "pRVSdUxdsVw",
|
||||
title: "Repairing...",
|
||||
name: "Repairing...",
|
||||
length: Some(965),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -326,7 +326,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "2FJVhdOO0F0",
|
||||
title: "a health scare",
|
||||
name: "a health scare",
|
||||
length: Some(1238),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -367,7 +367,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "CutR_1SDDzY",
|
||||
title: "feels good to be back",
|
||||
name: "feels good to be back",
|
||||
length: Some(1159),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -408,7 +408,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "KUz7oArksR4",
|
||||
title: "running away",
|
||||
name: "running away",
|
||||
length: Some(1023),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -449,7 +449,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "sPb2gyN-hnE",
|
||||
title: "worth fighting for",
|
||||
name: "worth fighting for",
|
||||
length: Some(1232),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -490,7 +490,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "PXsK9-CFoH4",
|
||||
title: "waiting...",
|
||||
name: "waiting...",
|
||||
length: Some(1455),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -531,7 +531,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "r2ye6zW0nbM",
|
||||
title: "a wedding",
|
||||
name: "a wedding",
|
||||
length: Some(1207),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -572,7 +572,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "rriwHj8U664",
|
||||
title: "my seoul apartment tour",
|
||||
name: "my seoul apartment tour",
|
||||
length: Some(721),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -613,7 +613,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "FKJtrUeol3o",
|
||||
title: "with quantity comes quality",
|
||||
name: "with quantity comes quality",
|
||||
length: Some(1140),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -654,7 +654,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "zYHB38UlzE0",
|
||||
title: "Q&A l relationships, burnout, privilege, college advice, living alone, and life after youtube?",
|
||||
name: "Q&A l relationships, burnout, privilege, college advice, living alone, and life after youtube?",
|
||||
length: Some(775),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -695,7 +695,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "hGbQ2WM9nOo",
|
||||
title: "Why does everything bad for you taste good ㅣ CHILI OIL RAMEN",
|
||||
name: "Why does everything bad for you taste good ㅣ CHILI OIL RAMEN",
|
||||
length: Some(428),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -736,7 +736,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "PxGmP4v_A38",
|
||||
title: "Alone and Thriving l late night korean convenience store, muji kitchenware haul, spring cleaning!",
|
||||
name: "Alone and Thriving l late night korean convenience store, muji kitchenware haul, spring cleaning!",
|
||||
length: Some(1437),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -777,7 +777,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "8t-WyYcpEDE",
|
||||
title: "What I hate most",
|
||||
name: "What I hate most",
|
||||
length: Some(61),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -818,7 +818,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "RroYpLxxNjY",
|
||||
title: "I\'m Back. ㅣ cooking korean food, eating alone, working out, and 2M!",
|
||||
name: "I\'m Back. ㅣ cooking korean food, eating alone, working out, and 2M!",
|
||||
length: Some(1313),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -859,7 +859,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "l47QuudsZ34",
|
||||
title: "We ate our way through Florence (ft. mamadooby)",
|
||||
name: "We ate our way through Florence (ft. mamadooby)",
|
||||
length: Some(1109),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -900,7 +900,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "1VW7iXRIrc8",
|
||||
title: "Alone, in the City of Love",
|
||||
name: "Alone, in the City of Love",
|
||||
length: Some(1875),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -941,7 +941,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "6c58-749p6Y",
|
||||
title: "Old Friends & New",
|
||||
name: "Old Friends & New",
|
||||
length: Some(774),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -982,7 +982,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "Q2G53LuEUaU",
|
||||
title: "Where we stand",
|
||||
name: "Where we stand",
|
||||
length: Some(858),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1023,7 +1023,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "8rAOeowNQrI",
|
||||
title: "That\'s so last year",
|
||||
name: "That\'s so last year",
|
||||
length: Some(1286),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1064,7 +1064,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "0RGIdIKkbSI",
|
||||
title: "The Muffin Man",
|
||||
name: "The Muffin Man",
|
||||
length: Some(1052),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1105,7 +1105,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "NudTbo2CJMY",
|
||||
title: "Flying to London",
|
||||
name: "Flying to London",
|
||||
length: Some(1078),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1146,7 +1146,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "8mJk1ncGZig",
|
||||
title: "(not so) Teenage Angst",
|
||||
name: "(not so) Teenage Angst",
|
||||
length: Some(1376),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1187,7 +1187,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "qvgCi2WpbfE",
|
||||
title: "can\'t smell :s",
|
||||
name: "can\'t smell :s",
|
||||
length: Some(875),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1228,7 +1228,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "Sm4Yqtqr9f8",
|
||||
title: "I have covid",
|
||||
name: "I have covid",
|
||||
length: Some(814),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1269,7 +1269,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "ZRtf4ksF3qs",
|
||||
title: "Everything I ate in Busan & make up tutorial??",
|
||||
name: "Everything I ate in Busan & make up tutorial??",
|
||||
length: Some(1026),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1310,7 +1310,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "oG4Wth1oVBQ",
|
||||
title: "On the other side",
|
||||
name: "On the other side",
|
||||
length: Some(1592),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -150,7 +150,7 @@ Channel(
|
|||
items: [
|
||||
VideoItem(
|
||||
id: "4EcQYK_no5M",
|
||||
title: "EEVblog 1506 - History of Electricity with Kathy Loves Physics",
|
||||
name: "EEVblog 1506 - History of Electricity with Kathy Loves Physics",
|
||||
length: Some(6143),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -191,7 +191,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "zEzjVUzNAFA",
|
||||
title: "EEVblog 1505 - 120W Home Phantom Power? Audit Time!",
|
||||
name: "EEVblog 1505 - 120W Home Phantom Power? Audit Time!",
|
||||
length: Some(1464),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -232,7 +232,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "YIbQ3nudCA0",
|
||||
title: "EEVblog 1504 - The COOL thing you MISSED at Tesla AI Day 2022",
|
||||
name: "EEVblog 1504 - The COOL thing you MISSED at Tesla AI Day 2022",
|
||||
length: Some(1021),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -273,7 +273,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "W1Jl0rMRGSg",
|
||||
title: "EEVblog 1503 - Rigol HDO4000 12bit Oscilloscope TEARDOWN",
|
||||
name: "EEVblog 1503 - Rigol HDO4000 12bit Oscilloscope TEARDOWN",
|
||||
length: Some(1798),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -314,7 +314,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "YFKu_emNzpk",
|
||||
title: "EEVblog 1502 - Is Home Battery Storage Financially Viable?",
|
||||
name: "EEVblog 1502 - Is Home Battery Storage Financially Viable?",
|
||||
length: Some(1199),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -355,7 +355,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "gremHHvqYTE",
|
||||
title: "EEVblog 1501 - Rigol HDO4000 Low Noise 12bit Oscilloscope Unboxing & First Impression",
|
||||
name: "EEVblog 1501 - Rigol HDO4000 Low Noise 12bit Oscilloscope Unboxing & First Impression",
|
||||
length: Some(1794),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -396,7 +396,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "WHO8NBfpaO0",
|
||||
title: "eevBLAB 102 - Last Mile Autonomous Robot Deliveries WILL FAIL",
|
||||
name: "eevBLAB 102 - Last Mile Autonomous Robot Deliveries WILL FAIL",
|
||||
length: Some(742),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -437,7 +437,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "W1Q8CxL95_Y",
|
||||
title: "EEVblog 1500 - Automatic Transfer Switch REVERSE ENGINEERED",
|
||||
name: "EEVblog 1500 - Automatic Transfer Switch REVERSE ENGINEERED",
|
||||
length: Some(1770),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -478,7 +478,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "lagxSrPeoYg",
|
||||
title: "EEVblog 1499 - EcoFlow Delta Pro 3.6kWh Portable Battery TEARDOWN!",
|
||||
name: "EEVblog 1499 - EcoFlow Delta Pro 3.6kWh Portable Battery TEARDOWN!",
|
||||
length: Some(2334),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -519,7 +519,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "qTctWW9_FmE",
|
||||
title: "EEVblog 1498 - TransPod Fluxjet Hyperloop $550M Boondoggle!",
|
||||
name: "EEVblog 1498 - TransPod Fluxjet Hyperloop $550M Boondoggle!",
|
||||
length: Some(2399),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -560,7 +560,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "3t9G80wk0pk",
|
||||
title: "eevBLAB 101 - Why Are Tektronix Oscilloscopes So Expensive?",
|
||||
name: "eevBLAB 101 - Why Are Tektronix Oscilloscopes So Expensive?",
|
||||
length: Some(1423),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -601,7 +601,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "7dze5CnZnmk",
|
||||
title: "EEVblog 1497 - RIP Fluke. Thanks Energizer. NOT.",
|
||||
name: "EEVblog 1497 - RIP Fluke. Thanks Energizer. NOT.",
|
||||
length: Some(1168),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -642,7 +642,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "6XnrZpPYgBg",
|
||||
title: "EEVblog 1496 - Winning Mailbag",
|
||||
name: "EEVblog 1496 - Winning Mailbag",
|
||||
length: Some(3139),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -683,7 +683,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "Psp3ltpFvws",
|
||||
title: "eevBLAB 100 - Reuters Attacks Odysee - LOL",
|
||||
name: "eevBLAB 100 - Reuters Attacks Odysee - LOL",
|
||||
length: Some(855),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -724,7 +724,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "taVYTYz5vLE",
|
||||
title: "EEVblog 1495 - Quaze Wireless Power (AGAIN!) but for GAMING!",
|
||||
name: "EEVblog 1495 - Quaze Wireless Power (AGAIN!) but for GAMING!",
|
||||
length: Some(2592),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -765,7 +765,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "Y6cZrieFw-k",
|
||||
title: "EEVblog 1494 - FIVE Ways to Open a CHEAP SAFE!",
|
||||
name: "EEVblog 1494 - FIVE Ways to Open a CHEAP SAFE!",
|
||||
length: Some(1194),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -806,7 +806,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "Kr2XyhpUdUI",
|
||||
title: "EEVblog 1493 - MacGyver Project - Part 2",
|
||||
name: "EEVblog 1493 - MacGyver Project - Part 2",
|
||||
length: Some(1785),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -847,7 +847,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "rxGafdgkal8",
|
||||
title: "EEVblog 1492 - $5 Oscilloscope Repaired! + Oz GIVEAWAY",
|
||||
name: "EEVblog 1492 - $5 Oscilloscope Repaired! + Oz GIVEAWAY",
|
||||
length: Some(1163),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -888,7 +888,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "4yosozyeIP4",
|
||||
title: "EEVblog 1491 - The MacGyver Project - Part 1",
|
||||
name: "EEVblog 1491 - The MacGyver Project - Part 1",
|
||||
length: Some(1706),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -929,7 +929,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "06JtC2DC_dQ",
|
||||
title: "EEVblog 1490 - Insane Jaycar Dumpster Sale! 2022",
|
||||
name: "EEVblog 1490 - Insane Jaycar Dumpster Sale! 2022",
|
||||
length: Some(1700),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -970,7 +970,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "piquT76w9TI",
|
||||
title: "EEVblog 1489 - Mystery Teardown!",
|
||||
name: "EEVblog 1489 - Mystery Teardown!",
|
||||
length: Some(1466),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1011,7 +1011,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "pKuUKT-zU-g",
|
||||
title: "EEVblog 1488 - Tilt Five Augmented Reality AR Glasses - First Reaction!",
|
||||
name: "EEVblog 1488 - Tilt Five Augmented Reality AR Glasses - First Reaction!",
|
||||
length: Some(2152),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1052,7 +1052,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "_R4wQQNSO6k",
|
||||
title: "EEVblog 1487 - Do Solar Micro Inverters Take Power at Night?",
|
||||
name: "EEVblog 1487 - Do Solar Micro Inverters Take Power at Night?",
|
||||
length: Some(2399),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1093,7 +1093,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "ikp5BorIo_M",
|
||||
title: "EEVblog 1486 - What you DIDN\'T KNOW About Film Capacitor FAILURES!",
|
||||
name: "EEVblog 1486 - What you DIDN\'T KNOW About Film Capacitor FAILURES!",
|
||||
length: Some(1792),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1134,7 +1134,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "7O-QckjCXNo",
|
||||
title: "eevBLAB 99 - AI SPAM BOT Youtube Space/Science/Tech Channels? - WTF",
|
||||
name: "eevBLAB 99 - AI SPAM BOT Youtube Space/Science/Tech Channels? - WTF",
|
||||
length: Some(592),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1175,7 +1175,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "VutdTxF4E-0",
|
||||
title: "RIP The Old Garage Lab",
|
||||
name: "RIP The Old Garage Lab",
|
||||
length: Some(115),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1216,7 +1216,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "o7xfGuRaq94",
|
||||
title: "EEVblog 1485 - PedalCell CadenceX Bike Generator LOL FAIL!",
|
||||
name: "EEVblog 1485 - PedalCell CadenceX Bike Generator LOL FAIL!",
|
||||
length: Some(1026),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1257,7 +1257,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "3WSIfHOv3fc",
|
||||
title: "EEVblog 1484 - Kaba Mas X-09 High Security Electronic Lock Teardown",
|
||||
name: "EEVblog 1484 - Kaba Mas X-09 High Security Electronic Lock Teardown",
|
||||
length: Some(1106),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1298,7 +1298,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "8yXZJZCKImI",
|
||||
title: "EEVblog 1483 - Holy Mailbag Bomb Batman!",
|
||||
name: "EEVblog 1483 - Holy Mailbag Bomb Batman!",
|
||||
length: Some(3373),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1339,7 +1339,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "vJ4pW6LKJWU",
|
||||
title: "EEVblog 1482 - Mains Capacitor Zener Regulator Circuit",
|
||||
name: "EEVblog 1482 - Mains Capacitor Zener Regulator Circuit",
|
||||
length: Some(1132),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -150,7 +150,7 @@ Channel(
|
|||
items: [
|
||||
VideoItem(
|
||||
id: "gremHHvqYTE",
|
||||
title: "EEVblog 1501 - Rigol HDO4000 Low Noise 12bit Oscilloscope Unboxing & First Impression",
|
||||
name: "EEVblog 1501 - Rigol HDO4000 Low Noise 12bit Oscilloscope Unboxing & First Impression",
|
||||
length: Some(1794),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -191,7 +191,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "WHO8NBfpaO0",
|
||||
title: "eevBLAB 102 - Last Mile Autonomous Robot Deliveries WILL FAIL",
|
||||
name: "eevBLAB 102 - Last Mile Autonomous Robot Deliveries WILL FAIL",
|
||||
length: Some(742),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -232,7 +232,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "W1Q8CxL95_Y",
|
||||
title: "EEVblog 1500 - Automatic Transfer Switch REVERSE ENGINEERED",
|
||||
name: "EEVblog 1500 - Automatic Transfer Switch REVERSE ENGINEERED",
|
||||
length: Some(1770),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -273,7 +273,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "lagxSrPeoYg",
|
||||
title: "EEVblog 1499 - EcoFlow Delta Pro 3.6kWh Portable Battery TEARDOWN!",
|
||||
name: "EEVblog 1499 - EcoFlow Delta Pro 3.6kWh Portable Battery TEARDOWN!",
|
||||
length: Some(2334),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -314,7 +314,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "qTctWW9_FmE",
|
||||
title: "EEVblog 1498 - TransPod Fluxjet Hyperloop $550M Boondoggle!",
|
||||
name: "EEVblog 1498 - TransPod Fluxjet Hyperloop $550M Boondoggle!",
|
||||
length: Some(2399),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -355,7 +355,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "3t9G80wk0pk",
|
||||
title: "eevBLAB 101 - Why Are Tektronix Oscilloscopes So Expensive?",
|
||||
name: "eevBLAB 101 - Why Are Tektronix Oscilloscopes So Expensive?",
|
||||
length: Some(1423),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -396,7 +396,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "7dze5CnZnmk",
|
||||
title: "EEVblog 1497 - RIP Fluke. Thanks Energizer. NOT.",
|
||||
name: "EEVblog 1497 - RIP Fluke. Thanks Energizer. NOT.",
|
||||
length: Some(1168),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -437,7 +437,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "6XnrZpPYgBg",
|
||||
title: "EEVblog 1496 - Winning Mailbag",
|
||||
name: "EEVblog 1496 - Winning Mailbag",
|
||||
length: Some(3139),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -478,7 +478,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "Psp3ltpFvws",
|
||||
title: "eevBLAB 100 - Reuters Attacks Odysee - LOL",
|
||||
name: "eevBLAB 100 - Reuters Attacks Odysee - LOL",
|
||||
length: Some(855),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -519,7 +519,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "taVYTYz5vLE",
|
||||
title: "EEVblog 1495 - Quaze Wireless Power (AGAIN!) but for GAMING!",
|
||||
name: "EEVblog 1495 - Quaze Wireless Power (AGAIN!) but for GAMING!",
|
||||
length: Some(2592),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -560,7 +560,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "Y6cZrieFw-k",
|
||||
title: "EEVblog 1494 - FIVE Ways to Open a CHEAP SAFE!",
|
||||
name: "EEVblog 1494 - FIVE Ways to Open a CHEAP SAFE!",
|
||||
length: Some(1194),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -601,7 +601,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "Kr2XyhpUdUI",
|
||||
title: "EEVblog 1493 - MacGyver Project - Part 2",
|
||||
name: "EEVblog 1493 - MacGyver Project - Part 2",
|
||||
length: Some(1785),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -642,7 +642,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "rxGafdgkal8",
|
||||
title: "EEVblog 1492 - $5 Oscilloscope Repaired! + Oz GIVEAWAY",
|
||||
name: "EEVblog 1492 - $5 Oscilloscope Repaired! + Oz GIVEAWAY",
|
||||
length: Some(1163),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -683,7 +683,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "4yosozyeIP4",
|
||||
title: "EEVblog 1491 - The MacGyver Project - Part 1",
|
||||
name: "EEVblog 1491 - The MacGyver Project - Part 1",
|
||||
length: Some(1706),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -724,7 +724,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "06JtC2DC_dQ",
|
||||
title: "EEVblog 1490 - Insane Jaycar Dumpster Sale! 2022",
|
||||
name: "EEVblog 1490 - Insane Jaycar Dumpster Sale! 2022",
|
||||
length: Some(1700),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -765,7 +765,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "piquT76w9TI",
|
||||
title: "EEVblog 1489 - Mystery Teardown!",
|
||||
name: "EEVblog 1489 - Mystery Teardown!",
|
||||
length: Some(1466),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -806,7 +806,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "pKuUKT-zU-g",
|
||||
title: "EEVblog 1488 - Tilt Five Augmented Reality AR Glasses - First Reaction!",
|
||||
name: "EEVblog 1488 - Tilt Five Augmented Reality AR Glasses - First Reaction!",
|
||||
length: Some(2152),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -847,7 +847,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "_R4wQQNSO6k",
|
||||
title: "EEVblog 1487 - Do Solar Micro Inverters Take Power at Night?",
|
||||
name: "EEVblog 1487 - Do Solar Micro Inverters Take Power at Night?",
|
||||
length: Some(2399),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -888,7 +888,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "ikp5BorIo_M",
|
||||
title: "EEVblog 1486 - What you DIDN\'T KNOW About Film Capacitor FAILURES!",
|
||||
name: "EEVblog 1486 - What you DIDN\'T KNOW About Film Capacitor FAILURES!",
|
||||
length: Some(1792),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -929,7 +929,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "7O-QckjCXNo",
|
||||
title: "eevBLAB 99 - AI SPAM BOT Youtube Space/Science/Tech Channels? - WTF",
|
||||
name: "eevBLAB 99 - AI SPAM BOT Youtube Space/Science/Tech Channels? - WTF",
|
||||
length: Some(592),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -970,7 +970,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "VutdTxF4E-0",
|
||||
title: "RIP The Old Garage Lab",
|
||||
name: "RIP The Old Garage Lab",
|
||||
length: Some(115),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1011,7 +1011,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "o7xfGuRaq94",
|
||||
title: "EEVblog 1485 - PedalCell CadenceX Bike Generator LOL FAIL!",
|
||||
name: "EEVblog 1485 - PedalCell CadenceX Bike Generator LOL FAIL!",
|
||||
length: Some(1026),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1052,7 +1052,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "3WSIfHOv3fc",
|
||||
title: "EEVblog 1484 - Kaba Mas X-09 High Security Electronic Lock Teardown",
|
||||
name: "EEVblog 1484 - Kaba Mas X-09 High Security Electronic Lock Teardown",
|
||||
length: Some(1106),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1093,7 +1093,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "8yXZJZCKImI",
|
||||
title: "EEVblog 1483 - Holy Mailbag Bomb Batman!",
|
||||
name: "EEVblog 1483 - Holy Mailbag Bomb Batman!",
|
||||
length: Some(3373),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1134,7 +1134,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "vJ4pW6LKJWU",
|
||||
title: "EEVblog 1482 - Mains Capacitor Zener Regulator Circuit",
|
||||
name: "EEVblog 1482 - Mains Capacitor Zener Regulator Circuit",
|
||||
length: Some(1132),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1175,7 +1175,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "myqiqUE00fo",
|
||||
title: "EEVblog 1481 - Dodgy Dangerous Heater REPAIR",
|
||||
name: "EEVblog 1481 - Dodgy Dangerous Heater REPAIR",
|
||||
length: Some(1622),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1216,7 +1216,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "xIokNnjuam8",
|
||||
title: "EEVblog 1480 - Lightyear Zero Solar Powered Electric Car",
|
||||
name: "EEVblog 1480 - Lightyear Zero Solar Powered Electric Car",
|
||||
length: Some(1196),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1257,7 +1257,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "S3R4r2xvVYQ",
|
||||
title: "EEVblog 1479 - Is Your Calculator WRONG?",
|
||||
name: "EEVblog 1479 - Is Your Calculator WRONG?",
|
||||
length: Some(1066),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1298,7 +1298,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "RlwcdUnRw6w",
|
||||
title: "EEVblog 1478 - Waveform Update Rate Shootout - Tek 2 Series vs Others",
|
||||
name: "EEVblog 1478 - Waveform Update Rate Shootout - Tek 2 Series vs Others",
|
||||
length: Some(1348),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1339,7 +1339,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "R2fw2g6WFbg",
|
||||
title: "EEVblog 1477 - TEARDOWN! - NEW Tektronix 2 Series Oscilloscope",
|
||||
name: "EEVblog 1477 - TEARDOWN! - NEW Tektronix 2 Series Oscilloscope",
|
||||
length: Some(2718),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -134,7 +134,7 @@ Channel(
|
|||
items: [
|
||||
VideoItem(
|
||||
id: "csP93FGy0bs",
|
||||
title: "Chill Out Music Mix • 24/7 Live Radio | Relaxing Deep House, Chillout Lounge, Vocal & Instrumental",
|
||||
name: "Chill Out Music Mix • 24/7 Live Radio | Relaxing Deep House, Chillout Lounge, Vocal & Instrumental",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -175,7 +175,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "19hKXI1ENrY",
|
||||
title: "Deep House Radio | Relaxing & Chill House, Best Summer Mix 2022, Gym & Workout Music",
|
||||
name: "Deep House Radio | Relaxing & Chill House, Best Summer Mix 2022, Gym & Workout Music",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -216,7 +216,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "CqMUC5eXX7c",
|
||||
title: "Back To School / Work 📚 Deep Focus Chillout Mix | The Good Life Radio #4",
|
||||
name: "Back To School / Work 📚 Deep Focus Chillout Mix | The Good Life Radio #4",
|
||||
length: Some(4667),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -257,7 +257,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "A77SYlXKQEM",
|
||||
title: "Chillout Lounge 🏖\u{fe0f} Calm & Relaxing Background Music | The Good Life Radio #3",
|
||||
name: "Chillout Lounge 🏖\u{fe0f} Calm & Relaxing Background Music | The Good Life Radio #3",
|
||||
length: Some(1861),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -298,7 +298,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "72vkRHQfjbk",
|
||||
title: "Summer Lovers 💖 A Beautiful & Relaxing Chillout Deep House Mix | The Good Life Radio #2",
|
||||
name: "Summer Lovers 💖 A Beautiful & Relaxing Chillout Deep House Mix | The Good Life Radio #2",
|
||||
length: Some(1832),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -339,7 +339,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "AMWMDhibROw",
|
||||
title: "Relaxing & Chill House 🌴 Summer \'21 Chill-Out Mix | The Good Life Radio #1",
|
||||
name: "Relaxing & Chill House 🌴 Summer \'21 Chill-Out Mix | The Good Life Radio #1",
|
||||
length: Some(1949),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -380,7 +380,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "9UMxZofMNbA",
|
||||
title: "Chillout Lounge - Calm & Relaxing Background Music | Study, Work, Sleep, Meditation, Chill",
|
||||
name: "Chillout Lounge - Calm & Relaxing Background Music | Study, Work, Sleep, Meditation, Chill",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -421,7 +421,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "a2sEYVwBvX4",
|
||||
title: "Paratone - Heaven Is A Place On Earth (feat. kaii)",
|
||||
name: "Paratone - Heaven Is A Place On Earth (feat. kaii)",
|
||||
length: Some(161),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -462,7 +462,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "JAY-prtJnGY",
|
||||
title: "Joseph Feinstein - Where I Belong",
|
||||
name: "Joseph Feinstein - Where I Belong",
|
||||
length: Some(126),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -503,7 +503,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "DySa8OrQDi4",
|
||||
title: "LA Vision & Gigi D\'Agostino - Hollywood",
|
||||
name: "LA Vision & Gigi D\'Agostino - Hollywood",
|
||||
length: Some(200),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -544,7 +544,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "NqzXULaB8MA",
|
||||
title: "LO - Home",
|
||||
name: "LO - Home",
|
||||
length: Some(163),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -585,7 +585,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "UGzy6uhZkmw",
|
||||
title: "Luca - Sunset",
|
||||
name: "Luca - Sunset",
|
||||
length: Some(153),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -626,7 +626,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "iuvapHKpW8A",
|
||||
title: "nourii - Better Off (feat. BCS)",
|
||||
name: "nourii - Better Off (feat. BCS)",
|
||||
length: Some(126),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -667,7 +667,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "n_1Nwht-Gh4",
|
||||
title: "Deep House Covers & Remixes of Popular Songs 2020 🌴 Deep House, G-House, Chill-Out Music Playlist",
|
||||
name: "Deep House Covers & Remixes of Popular Songs 2020 🌴 Deep House, G-House, Chill-Out Music Playlist",
|
||||
length: Some(2940),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -708,7 +708,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "6TptI5BtP5U",
|
||||
title: "The Good Life Radio Mix #2 | Summer Memories ☀\u{fe0f} (Chill Music Playlist 2020)",
|
||||
name: "The Good Life Radio Mix #2 | Summer Memories ☀\u{fe0f} (Chill Music Playlist 2020)",
|
||||
length: Some(3448),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -749,7 +749,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "36YnV9STBqc",
|
||||
title: "The Good Life Radio\u{a0}•\u{a0}24/7 Live Radio | Best Relax House, Chillout, Study, Running, Gym, Happy Music",
|
||||
name: "The Good Life Radio\u{a0}•\u{a0}24/7 Live Radio | Best Relax House, Chillout, Study, Running, Gym, Happy Music",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -790,7 +790,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "7x6ii2TcsPE",
|
||||
title: "The Good Life Radio Mix #1 | Relaxing & Chill House Music Playlist 2020",
|
||||
name: "The Good Life Radio Mix #1 | Relaxing & Chill House Music Playlist 2020",
|
||||
length: Some(2726),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -831,7 +831,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "mxV5MBZYYDE",
|
||||
title: "Christmas Music with Vocals 🎅 Best Relaxing Christmas Songs 2020",
|
||||
name: "Christmas Music with Vocals 🎅 Best Relaxing Christmas Songs 2020",
|
||||
length: Some(5863),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -872,7 +872,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "hh2AOoPoAIo",
|
||||
title: "The Good Life Radio Mix 2019 🎅 Winter & Christmas Relax House Playlist [Best of Part 1]",
|
||||
name: "The Good Life Radio Mix 2019 🎅 Winter & Christmas Relax House Playlist [Best of Part 1]",
|
||||
length: Some(2530),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -913,7 +913,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "aFlvhtWsJ0g",
|
||||
title: "Chillout Playlist | Relaxing Summer Music Mix 2019 [Deep & Tropical House]",
|
||||
name: "Chillout Playlist | Relaxing Summer Music Mix 2019 [Deep & Tropical House]",
|
||||
length: Some(2483),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -954,7 +954,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "cD-d7u6fnEI",
|
||||
title: "Chill House Playlist | Relaxing Summer Music 2019",
|
||||
name: "Chill House Playlist | Relaxing Summer Music 2019",
|
||||
length: Some(3165),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -121,7 +121,7 @@ Channel(
|
|||
items: [
|
||||
VideoItem(
|
||||
id: "JBUZE0mIlg8",
|
||||
title: "small but sure joy",
|
||||
name: "small but sure joy",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -147,7 +147,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "SRrvxFc2b2c",
|
||||
title: "i don\'t believe in long distance relationships",
|
||||
name: "i don\'t believe in long distance relationships",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -173,7 +173,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "l9TiwunjzgA",
|
||||
title: "long distance",
|
||||
name: "long distance",
|
||||
length: Some(1043),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -214,7 +214,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "cNx0ql9gnf4",
|
||||
title: "come over :)",
|
||||
name: "come over :)",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -240,7 +240,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "fGQUWI4o__A",
|
||||
title: "Baskin Robbins in South Korea",
|
||||
name: "Baskin Robbins in South Korea",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -266,7 +266,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "Q73VTjdqVA8",
|
||||
title: "dry hot pot",
|
||||
name: "dry hot pot",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -292,7 +292,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "pRVSdUxdsVw",
|
||||
title: "Repairing...",
|
||||
name: "Repairing...",
|
||||
length: Some(965),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -333,7 +333,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "gTG2WDbiYGo",
|
||||
title: "time machine",
|
||||
name: "time machine",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -359,7 +359,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "y5JK5YFp92g",
|
||||
title: "tiramissu",
|
||||
name: "tiramissu",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -385,7 +385,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "pvSWHm4wlxY",
|
||||
title: "having kids",
|
||||
name: "having kids",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -411,7 +411,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "2FJVhdOO0F0",
|
||||
title: "a health scare",
|
||||
name: "a health scare",
|
||||
length: Some(1238),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -452,7 +452,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "CqFGACRrWJE",
|
||||
title: "just do it",
|
||||
name: "just do it",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -478,7 +478,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "CutR_1SDDzY",
|
||||
title: "feels good to be back",
|
||||
name: "feels good to be back",
|
||||
length: Some(1159),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -519,7 +519,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "DdGr6t2NqKc",
|
||||
title: "coming soon",
|
||||
name: "coming soon",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -545,7 +545,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "jKS44NMWuXw",
|
||||
title: "adult money",
|
||||
name: "adult money",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -571,7 +571,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "kx1YtJM_vbI",
|
||||
title: "a fig\'s journey",
|
||||
name: "a fig\'s journey",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -597,7 +597,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "Sdbzs-1WWH0",
|
||||
title: "How to.. Mozzarella 🧀",
|
||||
name: "How to.. Mozzarella 🧀",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -623,7 +623,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "9qBHyJIDous",
|
||||
title: "how to drink like a real korean",
|
||||
name: "how to drink like a real korean",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -649,7 +649,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "mBeFDb4gp8s",
|
||||
title: "mr. krabs soup",
|
||||
name: "mr. krabs soup",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -675,7 +675,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "b38r1UYqoBQ",
|
||||
title: "in five years",
|
||||
name: "in five years",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -701,7 +701,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "KUz7oArksR4",
|
||||
title: "running away",
|
||||
name: "running away",
|
||||
length: Some(1023),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -742,7 +742,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "RdFk4WaifEo",
|
||||
title: "a weeknight dinner",
|
||||
name: "a weeknight dinner",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -768,7 +768,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "GuyGyzZcumI",
|
||||
title: "McDonald\'s Michelin Burger",
|
||||
name: "McDonald\'s Michelin Burger",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -794,7 +794,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "07Zipsb3-qU",
|
||||
title: "cwispy potato pancake",
|
||||
name: "cwispy potato pancake",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -820,7 +820,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "3kaePnU6Clo",
|
||||
title: "authenticity is overrated",
|
||||
name: "authenticity is overrated",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -846,7 +846,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "rt4rXMftnpg",
|
||||
title: "you can kimchi anything (T&C applies)",
|
||||
name: "you can kimchi anything (T&C applies)",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -872,7 +872,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "DTyLUvbf128",
|
||||
title: "egg, soy, and perfect pot rice",
|
||||
name: "egg, soy, and perfect pot rice",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -898,7 +898,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "DzjLBgIe_aI",
|
||||
title: "love language",
|
||||
name: "love language",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -924,7 +924,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "sPb2gyN-hnE",
|
||||
title: "worth fighting for",
|
||||
name: "worth fighting for",
|
||||
length: Some(1232),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -965,7 +965,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "9JboRKeJ2m4",
|
||||
title: "Rating Italian McDonald\'s",
|
||||
name: "Rating Italian McDonald\'s",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -138,7 +138,7 @@ Channel(
|
|||
items: [
|
||||
VideoItem(
|
||||
id: "B-KjpyR4n5Q",
|
||||
title: "The Online Manosphere",
|
||||
name: "The Online Manosphere",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -179,7 +179,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "umDsCyZ67J0",
|
||||
title: "Ukraine - The Beginning of the End",
|
||||
name: "Ukraine - The Beginning of the End",
|
||||
length: Some(614),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -220,7 +220,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "dNgKGL8lQck",
|
||||
title: "Honest Russian Military Recruitment Video",
|
||||
name: "Honest Russian Military Recruitment Video",
|
||||
length: Some(62),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -261,7 +261,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "UVWciFJeFNA",
|
||||
title: "Self-Driving Cars Will Only Make Traffic Worse",
|
||||
name: "Self-Driving Cars Will Only Make Traffic Worse",
|
||||
length: Some(458),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -302,7 +302,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "vyWaax07_ks",
|
||||
title: "NEOM Is The Parody Of The Future",
|
||||
name: "NEOM Is The Parody Of The Future",
|
||||
length: Some(636),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -343,7 +343,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "onQ0ICkLEJw",
|
||||
title: "I Got An Email From \"The Dubai Sheikh\'s Personal Friend\"",
|
||||
name: "I Got An Email From \"The Dubai Sheikh\'s Personal Friend\"",
|
||||
length: Some(211),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -384,7 +384,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "yDEL1pTYOhs",
|
||||
title: "The \"Meritocracy\" Isn\'t Real",
|
||||
name: "The \"Meritocracy\" Isn\'t Real",
|
||||
length: Some(385),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -425,7 +425,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "EnVvlhhqWtw",
|
||||
title: "City Review - Prague: Beautiful and Disappointing",
|
||||
name: "City Review - Prague: Beautiful and Disappointing",
|
||||
length: Some(834),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -466,7 +466,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "Oxz4oY0T85Y",
|
||||
title: "European International Rail SUCKS, Here\'s Why",
|
||||
name: "European International Rail SUCKS, Here\'s Why",
|
||||
length: Some(810),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -507,7 +507,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "lxUEuOkblws",
|
||||
title: "Why the Straddling Bus Failed",
|
||||
name: "Why the Straddling Bus Failed",
|
||||
length: Some(614),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -548,7 +548,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "UG8jiKOtedk",
|
||||
title: "How Canadian Ukrainian Volunteer Got Exposed",
|
||||
name: "How Canadian Ukrainian Volunteer Got Exposed",
|
||||
length: Some(538),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -589,7 +589,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "bQld7iJJSyk",
|
||||
title: "Why Roads ALWAYS Fill Up, No Matter How Much We Widen Them",
|
||||
name: "Why Roads ALWAYS Fill Up, No Matter How Much We Widen Them",
|
||||
length: Some(159),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -630,7 +630,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "WUK0K5mdQ_s",
|
||||
title: "Egypt\'s New Capital is an Ozymandian Nightmare",
|
||||
name: "Egypt\'s New Capital is an Ozymandian Nightmare",
|
||||
length: Some(870),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -671,7 +671,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "LB-vsT1Sl68",
|
||||
title: "Why Car-Centric Cities are a GREAT Idea",
|
||||
name: "Why Car-Centric Cities are a GREAT Idea",
|
||||
length: Some(369),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -712,7 +712,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "p8NiM_p8n5A",
|
||||
title: "HE FIXED TRAFFIC",
|
||||
name: "HE FIXED TRAFFIC",
|
||||
length: Some(157),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -753,7 +753,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "U9YdnzOf4NQ",
|
||||
title: "Why a Mars Colony is a Stupid and Dangerous Idea",
|
||||
name: "Why a Mars Colony is a Stupid and Dangerous Idea",
|
||||
length: Some(1000),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -794,7 +794,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "CH55WpJxF1s",
|
||||
title: "What #Elongate Is Really About",
|
||||
name: "What #Elongate Is Really About",
|
||||
length: Some(122),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -835,7 +835,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "PPcsZwUv350",
|
||||
title: "Vladimir Putin\'s Three Choices",
|
||||
name: "Vladimir Putin\'s Three Choices",
|
||||
length: Some(505),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -876,7 +876,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "B78-FgNqdc8",
|
||||
title: "Was I WRONG About Electric Buses?",
|
||||
name: "Was I WRONG About Electric Buses?",
|
||||
length: Some(1536),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -917,7 +917,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "JCXLwOMSDxk",
|
||||
title: "If We Treated Afghanistan Like Ukraine",
|
||||
name: "If We Treated Afghanistan Like Ukraine",
|
||||
length: Some(92),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -958,7 +958,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "IpIWswLYAbA",
|
||||
title: "Who\'s Winning the War for Ukraine?",
|
||||
name: "Who\'s Winning the War for Ukraine?",
|
||||
length: Some(646),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -999,7 +999,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "NIItoD1Ebh0",
|
||||
title: "Old Habits Die Hard",
|
||||
name: "Old Habits Die Hard",
|
||||
length: Some(107),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1040,7 +1040,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "pENUV9DLa2g",
|
||||
title: "Anarcho-Capitalism In Practice III - The Final Attempt",
|
||||
name: "Anarcho-Capitalism In Practice III - The Final Attempt",
|
||||
length: Some(600),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1081,7 +1081,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "gFGQI8P9BMg",
|
||||
title: "How The Gravel Institute Lies To You About Ukraine",
|
||||
name: "How The Gravel Institute Lies To You About Ukraine",
|
||||
length: Some(2472),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1122,7 +1122,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "AVLevneWvaE",
|
||||
title: "Why Russia Can\'t Achieve Air Supremacy In Ukraine",
|
||||
name: "Why Russia Can\'t Achieve Air Supremacy In Ukraine",
|
||||
length: Some(188),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1163,7 +1163,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "MfRcY90OccY",
|
||||
title: "Can Ukraine Actually WIN This?",
|
||||
name: "Can Ukraine Actually WIN This?",
|
||||
length: Some(606),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1204,7 +1204,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "dQXwreYzJ40",
|
||||
title: "Here\'s What Will Happen To Ukraine [Update: yep, called it]",
|
||||
name: "Here\'s What Will Happen To Ukraine [Update: yep, called it]",
|
||||
length: Some(397),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1245,7 +1245,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "-OO3RiNMDB8",
|
||||
title: "Assessing The Russian Invasion Threat",
|
||||
name: "Assessing The Russian Invasion Threat",
|
||||
length: Some(655),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1286,7 +1286,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "obMTYs30E9A",
|
||||
title: "Ukraine - The Country That Defied Vladimir Putin",
|
||||
name: "Ukraine - The Country That Defied Vladimir Putin",
|
||||
length: Some(2498),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1327,7 +1327,7 @@ Channel(
|
|||
),
|
||||
VideoItem(
|
||||
id: "4-2bR1iFlhk",
|
||||
title: "\"Wait, Russia isn\'t in NATO?!\" Insane Debate on Ukraine, US Politics, and more!",
|
||||
name: "\"Wait, Russia isn\'t in NATO?!\" Insane Debate on Ukraine, US Politics, and more!",
|
||||
length: Some(12151),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -8,7 +8,7 @@ ChannelRss(
|
|||
videos: [
|
||||
ChannelRssVideo(
|
||||
id: "Kti0T9JF0go",
|
||||
title: "KitKat V PTC York Production | Nestlé B-Roll",
|
||||
name: "KitKat V PTC York Production | Nestlé B-Roll",
|
||||
description: "Footage from the production for the test launch of KitKat V in 2021 at Nestlé’s Confectionery Product Technology Center in York. \n\nYou can download this B-roll stock footage from our corporate website here: http://www.nestle.com/media/videos\n\nFor regular Nestlé updates, follow:\nhttps://www.facebook.com/Nestle \nhttps://www.instagram.com/Nestle \nhttps://www.twitter.com/Nestle",
|
||||
thumbnail: Thumbnail(
|
||||
url: "https://i4.ytimg.com/vi/Kti0T9JF0go/hqdefault.jpg",
|
||||
|
@ -22,7 +22,7 @@ ChannelRss(
|
|||
),
|
||||
ChannelRssVideo(
|
||||
id: "0L2TOCyvCH8",
|
||||
title: "KitKat V Hamburg Production | Nestlé B-Roll",
|
||||
name: "KitKat V Hamburg Production | Nestlé B-Roll",
|
||||
description: "Footage from the production line of KitKat V at Nestlé’s factory in Hamburg, Germany.\n\nYou can download this B-roll stock footage from our corporate website here: http://www.nestle.com/media/videos\n\nFor regular Nestlé updates, follow:\nhttps://www.facebook.com/Nestle \nhttps://www.instagram.com/Nestle \nhttps://www.twitter.com/Nestle",
|
||||
thumbnail: Thumbnail(
|
||||
url: "https://i1.ytimg.com/vi/0L2TOCyvCH8/hqdefault.jpg",
|
||||
|
@ -36,7 +36,7 @@ ChannelRss(
|
|||
),
|
||||
ChannelRssVideo(
|
||||
id: "PIXvtaQmnjA",
|
||||
title: "R+D Accelerator | Nestlé Innovates",
|
||||
name: "R+D Accelerator | Nestlé Innovates",
|
||||
description: "Our R&D Accelerator brings together Nestlé scientists, students and start-ups to advance science and technology by accelerating the development of innovative products and systems.\u{a0}\u{200b}Got an idea to submit? Go ahead! https://rdaccelerator.nestle.com/\n\n#Nestlé Innovates #shorts",
|
||||
thumbnail: Thumbnail(
|
||||
url: "https://i1.ytimg.com/vi/PIXvtaQmnjA/hqdefault.jpg",
|
||||
|
@ -50,7 +50,7 @@ ChannelRss(
|
|||
),
|
||||
ChannelRssVideo(
|
||||
id: "OAq0FBdxuuI",
|
||||
title: "R+D Accelerator | Nestlé Innovates",
|
||||
name: "R+D Accelerator | Nestlé Innovates",
|
||||
description: "Do you have an innovation you could unlock with Nestlé partnership? Our R&D Accelerator harnesses the expertise of Nestlé’s global R&D network in food and nutrition as well as leading academic institutions and a wide range of innovation partners, suppliers and start-ups. Find out how to advance your idea with science and technology here: https://rdaccelerator.nestle.com/\n\n#NestleInnovates #shorts",
|
||||
thumbnail: Thumbnail(
|
||||
url: "https://i4.ytimg.com/vi/OAq0FBdxuuI/hqdefault.jpg",
|
||||
|
@ -64,7 +64,7 @@ ChannelRss(
|
|||
),
|
||||
ChannelRssVideo(
|
||||
id: "rh2ryMOIQ8k",
|
||||
title: "R+D Accelerator | Nestlé Innovates",
|
||||
name: "R+D Accelerator | Nestlé Innovates",
|
||||
description: "Calling all food and nutrition entrepreneurs! Got an idea adn looking for the science, technology and experts to put it into action? Check out our R&D Accelerator that brings all those together in the pursuit of developing innovative products and systems: https://rdaccelerator.nestle.com/\n\n#NestleInnovates #shorts",
|
||||
thumbnail: Thumbnail(
|
||||
url: "https://i3.ytimg.com/vi/rh2ryMOIQ8k/hqdefault.jpg",
|
||||
|
@ -78,7 +78,7 @@ ChannelRss(
|
|||
),
|
||||
ChannelRssVideo(
|
||||
id: "Q0xHfgCmb0g",
|
||||
title: "R+D Accelerator | Nestlé Innovates",
|
||||
name: "R+D Accelerator | Nestlé Innovates",
|
||||
description: "Our R&D Accelerator brings together Nestlé scientists, students and start-ups to advance science and technology by accelerating the development of innovative products and systems.\u{a0}\u{200b}Got an idea to submit? Go ahead! https://rdaccelerator.nestle.com/\n\n#NestleInnovates #shorts",
|
||||
thumbnail: Thumbnail(
|
||||
url: "https://i2.ytimg.com/vi/Q0xHfgCmb0g/hqdefault.jpg",
|
||||
|
@ -92,7 +92,7 @@ ChannelRss(
|
|||
),
|
||||
ChannelRssVideo(
|
||||
id: "jD_EcIB4kq4",
|
||||
title: "Brain Health | Nestlé Innovates",
|
||||
name: "Brain Health | Nestlé Innovates",
|
||||
description: "Aging is a complex journey. Getting the most out of your health shouldn’t have to be. That’s why our teams have dug into the data to support with living the fullest life in our later years. Check it out: https://nes.tl/HealthScience\n\n#NestleInnovates #shorts",
|
||||
thumbnail: Thumbnail(
|
||||
url: "https://i3.ytimg.com/vi/jD_EcIB4kq4/hqdefault.jpg",
|
||||
|
@ -106,7 +106,7 @@ ChannelRss(
|
|||
),
|
||||
ChannelRssVideo(
|
||||
id: "KNSHhxGGAik",
|
||||
title: "Gut Microbiome | Nestlé Innovates",
|
||||
name: "Gut Microbiome | Nestlé Innovates",
|
||||
description: "In-depth research has given us an understanding of the gut microbiome. Now check out the health solutions we’ve worked on as a result: https://nes.tl/HealthScience\n\n#NestleInnovates #shorts",
|
||||
thumbnail: Thumbnail(
|
||||
url: "https://i4.ytimg.com/vi/KNSHhxGGAik/hqdefault.jpg",
|
||||
|
@ -120,7 +120,7 @@ ChannelRss(
|
|||
),
|
||||
ChannelRssVideo(
|
||||
id: "bPtEA9yjHVU",
|
||||
title: "Cellular Decline | Nestlé Innovates",
|
||||
name: "Cellular Decline | Nestlé Innovates",
|
||||
description: "Age-associated cellular decline can reduce a person\'s energy level, muscle function, immune response, and overall health. Our research and development teams believe health science can help address this. Discover the results their work has yielded: https://nes.tl/HealthScience\n\n#NestleInnovates #shorts",
|
||||
thumbnail: Thumbnail(
|
||||
url: "https://i3.ytimg.com/vi/bPtEA9yjHVU/hqdefault.jpg",
|
||||
|
@ -134,7 +134,7 @@ ChannelRss(
|
|||
),
|
||||
ChannelRssVideo(
|
||||
id: "T0ugeidZ44k",
|
||||
title: "Nescafé Gold Roastery Collection | Nestlé Innovates",
|
||||
name: "Nescafé Gold Roastery Collection | Nestlé Innovates",
|
||||
description: "Our Nescafé Gold Blend Roastery Collection is carefully crafted for a great taste thanks to our teams\' experimenting with roasting levels and times. With a range of flavors and intensities to choose from, there’s something for everyone. Find your fave: https://nes.tl/NescafeGoldCollection \n\n#NestleInnovates #Shorts",
|
||||
thumbnail: Thumbnail(
|
||||
url: "https://i1.ytimg.com/vi/T0ugeidZ44k/hqdefault.jpg",
|
||||
|
@ -148,7 +148,7 @@ ChannelRss(
|
|||
),
|
||||
ChannelRssVideo(
|
||||
id: "DhMa-669pKU",
|
||||
title: "Garden Gourmet Vuna | Nestlé Innovates",
|
||||
name: "Garden Gourmet Vuna | Nestlé Innovates",
|
||||
description: "Cracking open a jar of Vuna you don\'t believe you\'re eating anything other than tuna. This is thanks to our creative R&D colleagues. Check out this groundbreaking creation made from only six ingredients: https://nes.tl/VUNA-Story \n\n#NestleInnovates #Shorts",
|
||||
thumbnail: Thumbnail(
|
||||
url: "https://i1.ytimg.com/vi/DhMa-669pKU/hqdefault.jpg",
|
||||
|
@ -162,7 +162,7 @@ ChannelRss(
|
|||
),
|
||||
ChannelRssVideo(
|
||||
id: "IVHIRHyEha0",
|
||||
title: "Wunda | Nestlé Innovates",
|
||||
name: "Wunda | Nestlé Innovates",
|
||||
description: "A milk-alternative powered by pea-protein and carbon neutral from creation sounds to good to be true? Not so. Check out the innovation that brought Wunda to life: https://nes.tl/WundaStory \n\n#NestleInnovates #Shorts",
|
||||
thumbnail: Thumbnail(
|
||||
url: "https://i2.ytimg.com/vi/IVHIRHyEha0/hqdefault.jpg",
|
||||
|
@ -176,7 +176,7 @@ ChannelRss(
|
|||
),
|
||||
ChannelRssVideo(
|
||||
id: "EKsM6WrGR7k",
|
||||
title: "Plant-based Milo | Nestlé Innovates",
|
||||
name: "Plant-based Milo | Nestlé Innovates",
|
||||
description: "Our Milo teams wanted to ensure that everyone has the chance to enjoy their iconic chocolate-malt flavor and crunch. That\'s why they\'ve created nutritious, plant-based options. Learn more here: https://nes.tl/MiloPlantBased \n\n#NestleInnovates #Shorts",
|
||||
thumbnail: Thumbnail(
|
||||
url: "https://i2.ytimg.com/vi/EKsM6WrGR7k/hqdefault.jpg",
|
||||
|
@ -190,7 +190,7 @@ ChannelRss(
|
|||
),
|
||||
ChannelRssVideo(
|
||||
id: "VhpNpEC5RNs",
|
||||
title: "Smarties Paper Packaging | Nestlé Innovates",
|
||||
name: "Smarties Paper Packaging | Nestlé Innovates",
|
||||
description: "Have you heard about the first global confectionery brand to use recyclable paper packaging? Hint: they\'re pretty smart. Get the detes here: https://nes.tl/SmartiesPaperStory\n\n#NestleInnovates #shorts",
|
||||
thumbnail: Thumbnail(
|
||||
url: "https://i3.ytimg.com/vi/VhpNpEC5RNs/hqdefault.jpg",
|
||||
|
@ -204,7 +204,7 @@ ChannelRss(
|
|||
),
|
||||
ChannelRssVideo(
|
||||
id: "Z1lTKnUzSDk",
|
||||
title: "Nescafé Gold Iced Latte | Nestlé Innovates",
|
||||
name: "Nescafé Gold Iced Latte | Nestlé Innovates",
|
||||
description: "Our coffee teams developed Nescafe Gold Iced Lattes – a range for those who want to enjoy refreshing coffee shop style drinks at home. See how we\'re meeting all tastes and preferences through innovation: https://nes.tl/DailyGrinds \n\n#NestleInnovates #shorts",
|
||||
thumbnail: Thumbnail(
|
||||
url: "https://i3.ytimg.com/vi/Z1lTKnUzSDk/hqdefault.jpg",
|
||||
|
|
|
@ -38,7 +38,7 @@ MusicArtist(
|
|||
tracks: [
|
||||
TrackItem(
|
||||
id: "ORrFJ63nlcA",
|
||||
title: "Perfect",
|
||||
name: "Perfect",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -70,7 +70,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "xTvyyoF_LZY",
|
||||
title: "Shape of You",
|
||||
name: "Shape of You",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -102,7 +102,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "SlbfAYvA_gI",
|
||||
title: "Photograph",
|
||||
name: "Photograph",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -134,7 +134,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "hJWSZDJb-W4",
|
||||
title: "Bad Habits",
|
||||
name: "Bad Habits",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -166,7 +166,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "G1ej5up7JG0",
|
||||
title: "Shivers",
|
||||
name: "Shivers",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -198,7 +198,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "23g5HBOg3Ic",
|
||||
title: "Celestial",
|
||||
name: "Celestial",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -227,7 +227,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "VERcf4ALkmo",
|
||||
title: "Noche de Novela",
|
||||
name: "Noche de Novela",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -260,7 +260,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "2Vv-BfVoq4g",
|
||||
title: "Perfect",
|
||||
name: "Perfect",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -289,7 +289,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "JGwWNGJdvx8",
|
||||
title: "Shape of You",
|
||||
name: "Shape of You",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -318,7 +318,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "nSDgHBxUbVQ",
|
||||
title: "Photograph",
|
||||
name: "Photograph",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -347,7 +347,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "orJSJGHjBLI",
|
||||
title: "Bad Habits",
|
||||
name: "Bad Habits",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -376,7 +376,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Il0S8BoucSA",
|
||||
title: "Shivers",
|
||||
name: "Shivers",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -405,7 +405,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "lp-EO5I60KA",
|
||||
title: "Thinking Out Loud",
|
||||
name: "Thinking Out Loud",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -434,7 +434,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "5QIbxwNQR0s",
|
||||
title: "Peru",
|
||||
name: "Peru",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -467,7 +467,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "y83x7MgzWOA",
|
||||
title: "I Don’t Care",
|
||||
name: "I Don’t Care",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -38,7 +38,7 @@ MusicArtist(
|
|||
tracks: [
|
||||
TrackItem(
|
||||
id: "ORrFJ63nlcA",
|
||||
title: "Perfect",
|
||||
name: "Perfect",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -70,7 +70,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "xTvyyoF_LZY",
|
||||
title: "Shape of You",
|
||||
name: "Shape of You",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -102,7 +102,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "SlbfAYvA_gI",
|
||||
title: "Photograph",
|
||||
name: "Photograph",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -134,7 +134,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "hJWSZDJb-W4",
|
||||
title: "Bad Habits",
|
||||
name: "Bad Habits",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -166,7 +166,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "G1ej5up7JG0",
|
||||
title: "Shivers",
|
||||
name: "Shivers",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -198,7 +198,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "23g5HBOg3Ic",
|
||||
title: "Celestial",
|
||||
name: "Celestial",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -227,7 +227,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "VERcf4ALkmo",
|
||||
title: "Noche de Novela",
|
||||
name: "Noche de Novela",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -260,7 +260,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "2Vv-BfVoq4g",
|
||||
title: "Perfect",
|
||||
name: "Perfect",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -289,7 +289,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "JGwWNGJdvx8",
|
||||
title: "Shape of You",
|
||||
name: "Shape of You",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -318,7 +318,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "nSDgHBxUbVQ",
|
||||
title: "Photograph",
|
||||
name: "Photograph",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -347,7 +347,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "orJSJGHjBLI",
|
||||
title: "Bad Habits",
|
||||
name: "Bad Habits",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -376,7 +376,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Il0S8BoucSA",
|
||||
title: "Shivers",
|
||||
name: "Shivers",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -405,7 +405,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "lp-EO5I60KA",
|
||||
title: "Thinking Out Loud",
|
||||
name: "Thinking Out Loud",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -434,7 +434,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "5QIbxwNQR0s",
|
||||
title: "Peru",
|
||||
name: "Peru",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -467,7 +467,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "y83x7MgzWOA",
|
||||
title: "I Don’t Care",
|
||||
name: "I Don’t Care",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -38,7 +38,7 @@ MusicArtist(
|
|||
tracks: [
|
||||
TrackItem(
|
||||
id: "aWxWb6iBC_s",
|
||||
title: "Gäa",
|
||||
name: "Gäa",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -70,7 +70,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "pI0Rancanz0",
|
||||
title: "Vergiss mein nicht",
|
||||
name: "Vergiss mein nicht",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -102,7 +102,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "kNdPylPd4JM",
|
||||
title: "Kuliko Jana - Eine neue Zeit",
|
||||
name: "Kuliko Jana - Eine neue Zeit",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -134,7 +134,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "DsviLYh1CB0",
|
||||
title: "Eldamar",
|
||||
name: "Eldamar",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -166,7 +166,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "wNgCQjct_Ys",
|
||||
title: "Zeit der Sommernächte (Single Mix)",
|
||||
name: "Zeit der Sommernächte (Single Mix)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -202,7 +202,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "btPcPR3fJfQ",
|
||||
title: "Akustik Version „AUFHÖREN“.♥\u{fe0f}",
|
||||
name: "Akustik Version „AUFHÖREN“.♥\u{fe0f}",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -226,7 +226,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "dFdac41o3mQ",
|
||||
title: "AUFHÖREN",
|
||||
name: "AUFHÖREN",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -255,7 +255,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "C_pGRMlCM3U",
|
||||
title: "Gäa",
|
||||
name: "Gäa",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -284,7 +284,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "SUioohuufeE",
|
||||
title: "Eldamar",
|
||||
name: "Eldamar",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -313,7 +313,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "yHv2oXYVbZg",
|
||||
title: "Zeit der Sommernächte (single mix) (feat. Safri Duo)",
|
||||
name: "Zeit der Sommernächte (single mix) (feat. Safri Duo)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -342,7 +342,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "QnzAiQZZ1uw",
|
||||
title: "MUSIK MUSIK",
|
||||
name: "MUSIK MUSIK",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -371,7 +371,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "cnF-BVrVs1M",
|
||||
title: "Senta - Was immer es ist (Offizielles Video)",
|
||||
name: "Senta - Was immer es ist (Offizielles Video)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -38,7 +38,7 @@ MusicArtist(
|
|||
tracks: [
|
||||
TrackItem(
|
||||
id: "Kx7B-XvmFtE",
|
||||
title: "Believer",
|
||||
name: "Believer",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -70,7 +70,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "uZpH7EQ_PwE",
|
||||
title: "Bones",
|
||||
name: "Bones",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -102,7 +102,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "WmQHSkjgyDM",
|
||||
title: "Enemy (from the series Arcane League of Legends)",
|
||||
name: "Enemy (from the series Arcane League of Legends)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -146,7 +146,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "9ssQKlLxBdQ",
|
||||
title: "Thunder",
|
||||
name: "Thunder",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -178,7 +178,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "pXu6JC6-d_o",
|
||||
title: "Natural",
|
||||
name: "Natural",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -210,7 +210,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "ca8C6EQa5zc",
|
||||
title: "Bones (twocolors Remix) [Official Remix Video]",
|
||||
name: "Bones (twocolors Remix) [Official Remix Video]",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -243,7 +243,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "30AToHb1ZJM",
|
||||
title: "Enemy (Live from Montreal 2022) (feat. League of Legends, Arcane & JID)",
|
||||
name: "Enemy (Live from Montreal 2022) (feat. League of Legends, Arcane & JID)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -272,7 +272,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "iH1YfDu19KM",
|
||||
title: "I Don’t Like Myself (Official Music Video)",
|
||||
name: "I Don’t Like Myself (Official Music Video)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -301,7 +301,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "wBb_nAc4TPM",
|
||||
title: "On Top Of The World (Live from Red Rocks, 2013)",
|
||||
name: "On Top Of The World (Live from Red Rocks, 2013)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -330,7 +330,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "u2f89b5ha0o",
|
||||
title: "The River (Lyric Video)",
|
||||
name: "The River (Lyric Video)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -359,7 +359,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "7wtfhZwyrcc",
|
||||
title: "Believer (Official Music Video)",
|
||||
name: "Believer (Official Music Video)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -388,7 +388,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "TO-_3tck2tg",
|
||||
title: "Bones (Official Music Video)",
|
||||
name: "Bones (Official Music Video)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -417,7 +417,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "D9G1VOjN_84",
|
||||
title: "Enemy (from the series Arcane League of Legends) (feat. League of Legends, JID & Arcane)",
|
||||
name: "Enemy (from the series Arcane League of Legends) (feat. League of Legends, JID & Arcane)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -446,7 +446,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "fKopy74weus",
|
||||
title: "Thunder",
|
||||
name: "Thunder",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -475,7 +475,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "0I647GU3Jsc",
|
||||
title: "Natural",
|
||||
name: "Natural",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -38,7 +38,7 @@ MusicArtist(
|
|||
tracks: [
|
||||
TrackItem(
|
||||
id: "BGcUVJXViqQ",
|
||||
title: "고블린 Goblin",
|
||||
name: "고블린 Goblin",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -70,7 +70,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "7_Bav4c7UGM",
|
||||
title: "온더문 On The Moon",
|
||||
name: "온더문 On The Moon",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -102,7 +102,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "kzUZABVj5UQ",
|
||||
title: "도로시 Dorothy",
|
||||
name: "도로시 Dorothy",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -134,7 +134,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "P5uE7KDkDFE",
|
||||
title: "Goblin",
|
||||
name: "Goblin",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -163,7 +163,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "kxjZwdLWFrc",
|
||||
title: "SULLI 설리\' 온더문 (On The Moon)\' MV",
|
||||
name: "SULLI 설리\' 온더문 (On The Moon)\' MV",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -192,7 +192,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "-aneeaddeXc",
|
||||
title: "⌗ ₊𓂃 dorothy — sulli 𔘓 sub. español",
|
||||
name: "⌗ ₊𓂃 dorothy — sulli 𔘓 sub. español",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -221,7 +221,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "YWijFdsj_Ew",
|
||||
title: "sulli - goblin (sped up)",
|
||||
name: "sulli - goblin (sped up)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -250,7 +250,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "94q_2Zsq2os",
|
||||
title: "Sulli - On The Moon (sped up)",
|
||||
name: "Sulli - On The Moon (sped up)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -279,7 +279,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "fBce3VihpIQ",
|
||||
title: "sulli - goblin (sped up)",
|
||||
name: "sulli - goblin (sped up)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -308,7 +308,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "0-HXdJc-zDQ",
|
||||
title: "Sulli - Dorothy (sped up)",
|
||||
name: "Sulli - Dorothy (sped up)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -337,7 +337,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Bae4Fv7GlMY",
|
||||
title: "Sulli\'nin goblin M/V\'sindeki korkutucu detaylar!😱💥",
|
||||
name: "Sulli\'nin goblin M/V\'sindeki korkutucu detaylar!😱💥",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -366,7 +366,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Rq_JkcROjsI",
|
||||
title: "𝗀𝗈𝖻𝗅𝗂𝗇 // 𝗌𝗎𝗅𝗅𝗂 ༄ 𝗌𝗅𝗈𝗐𝖾𝖽 + 𝗋𝖾𝗏𝖾𝗋𝖻",
|
||||
name: "𝗀𝗈𝖻𝗅𝗂𝗇 // 𝗌𝗎𝗅𝗅𝗂 ༄ 𝗌𝗅𝗈𝗐𝖾𝖽 + 𝗋𝖾𝗏𝖾𝗋𝖻",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -395,7 +395,7 @@ MusicArtist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "STNyxlYFyVY",
|
||||
title: "SULLI - Goblin (Clean Instrumental)",
|
||||
name: "SULLI - Goblin (Clean Instrumental)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -6,7 +6,7 @@ MusicCharts(
|
|||
top_tracks: [
|
||||
TrackItem(
|
||||
id: "zwa7NzNBQig",
|
||||
title: "Tomorrow 2",
|
||||
name: "Tomorrow 2",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -39,7 +39,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "UhbixyxgsiU",
|
||||
title: "Just Wanna Rock",
|
||||
name: "Just Wanna Rock",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -68,7 +68,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "saGYMhApaH8",
|
||||
title: "Me porto bonito (feat. Chencho Corleone)",
|
||||
name: "Me porto bonito (feat. Chencho Corleone)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -97,7 +97,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "8n5dJwWXrbo",
|
||||
title: "IShowSpeed - World Cup (Official Music Video)",
|
||||
name: "IShowSpeed - World Cup (Official Music Video)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -126,7 +126,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Cr8K88UcO0s",
|
||||
title: "Tití me preguntó",
|
||||
name: "Tití me preguntó",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -155,7 +155,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "pfxyk1glEq4",
|
||||
title: "Under The Influence",
|
||||
name: "Under The Influence",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -184,7 +184,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "VtKcDwz6hiM",
|
||||
title: "No Se Va (En Vivo)",
|
||||
name: "No Se Va (En Vivo)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -213,7 +213,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "aAkMkVFwAoo",
|
||||
title: "All I Want for Christmas Is You (Make My Wish Come True Edition)",
|
||||
name: "All I Want for Christmas Is You (Make My Wish Come True Edition)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -242,7 +242,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "3V8aen7Flhs",
|
||||
title: "Hi Haters",
|
||||
name: "Hi Haters",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -271,7 +271,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "rb0bjyt1OD0",
|
||||
title: "Tukoh Taka - Official FIFA Fan Festival™ Anthem | Nicki Minaj, Maluma, & Myriam Fares (FIFA Sound)",
|
||||
name: "Tukoh Taka - Official FIFA Fan Festival™ Anthem | Nicki Minaj, Maluma, & Myriam Fares (FIFA Sound)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -300,7 +300,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "-1vsm5bhoyE",
|
||||
title: "No Se Va",
|
||||
name: "No Se Va",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -329,7 +329,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "ao3SN7fkQQU",
|
||||
title: "Billete Grande",
|
||||
name: "Billete Grande",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -362,7 +362,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "J9QwBwUnhQo",
|
||||
title: "Got It Right",
|
||||
name: "Got It Right",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -391,7 +391,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "WyhU6Zb_fhY",
|
||||
title: "California Breeze",
|
||||
name: "California Breeze",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -420,7 +420,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "aV-pJ8BBxj8",
|
||||
title: "Shabooya (feat. Slimeroni & Aleza)",
|
||||
name: "Shabooya (feat. Slimeroni & Aleza)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -457,7 +457,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "gSeBZqcTHLc",
|
||||
title: "Stand On It",
|
||||
name: "Stand On It",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -486,7 +486,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Vzkr-G1QEh8",
|
||||
title: "Back End",
|
||||
name: "Back End",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -515,7 +515,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "SK37InR9j38",
|
||||
title: "GATÚBELA",
|
||||
name: "GATÚBELA",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -548,7 +548,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "C2YSX4sV_bA",
|
||||
title: "Letter to Takeoff",
|
||||
name: "Letter to Takeoff",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -577,7 +577,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "ca48oMV59LU",
|
||||
title: "PROVENZA",
|
||||
name: "PROVENZA",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -606,7 +606,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "TUbmIriJlp4",
|
||||
title: "Messy",
|
||||
name: "Messy",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -639,7 +639,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Z02zptUN8gI",
|
||||
title: "Cairo",
|
||||
name: "Cairo",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -672,7 +672,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Uq9gPaIzbe8",
|
||||
title: "Unholy (Official Music Video)",
|
||||
name: "Unholy (Official Music Video)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -705,7 +705,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "b1kbLwvqugk",
|
||||
title: "Anti-Hero",
|
||||
name: "Anti-Hero",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -734,7 +734,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "VF-FGf_ZZiI",
|
||||
title: "Bad Habit (Official Video)",
|
||||
name: "Bad Habit (Official Video)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -763,7 +763,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Om0rYw6qzb8",
|
||||
title: "Hotel Lobby (Official Video)",
|
||||
name: "Hotel Lobby (Official Video)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -796,7 +796,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "PrSBuEFdRFU",
|
||||
title: "Rich Flex",
|
||||
name: "Rich Flex",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -829,7 +829,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "9YdgldMKGGU",
|
||||
title: "Get Away (Official Visualizer)",
|
||||
name: "Get Away (Official Visualizer)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -858,7 +858,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "kiUIkL4aZ5o",
|
||||
title: "Meek Mill - God Did (Official Video)",
|
||||
name: "Meek Mill - God Did (Official Video)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -887,7 +887,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "mTkPFsVC5NE",
|
||||
title: "Forever (Lyric Video)",
|
||||
name: "Forever (Lyric Video)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -920,7 +920,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "YsMB0i5YTOc",
|
||||
title: "wait in the truck (Official Music Video) (feat. Lainey Wilson)",
|
||||
name: "wait in the truck (Official Music Video) (feat. Lainey Wilson)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -949,7 +949,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "3CkLMG5NwUg",
|
||||
title: "You Proof",
|
||||
name: "You Proof",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -978,7 +978,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "9yvzvUgzxxg",
|
||||
title: "Blessed",
|
||||
name: "Blessed",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1007,7 +1007,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "gPCCYMeXin0",
|
||||
title: "Made You Look",
|
||||
name: "Made You Look",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1036,7 +1036,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "gkkuezo7kX4",
|
||||
title: "El Gavilán",
|
||||
name: "El Gavilán",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1073,7 +1073,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "D2nyu8d7Sq0",
|
||||
title: "2 Million Up (Official Video)",
|
||||
name: "2 Million Up (Official Video)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1102,7 +1102,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "SXrcyqCPu4E",
|
||||
title: "Break My Heart",
|
||||
name: "Break My Heart",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1131,7 +1131,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "p38WgakuYDo",
|
||||
title: "Moscow Mule",
|
||||
name: "Moscow Mule",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1160,7 +1160,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "n4Z1cpdkgQU",
|
||||
title: "Son Of A Sinner",
|
||||
name: "Son Of A Sinner",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1189,7 +1189,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "4F_vcZ6KD9Q",
|
||||
title: "In A Minute",
|
||||
name: "In A Minute",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1220,7 +1220,7 @@ MusicCharts(
|
|||
trending_tracks: [
|
||||
TrackItem(
|
||||
id: "_u-7rWKnVVo",
|
||||
title: "Metallica: Lux Æterna (Official Music Video)",
|
||||
name: "Metallica: Lux Æterna (Official Music Video)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1244,7 +1244,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "UhbixyxgsiU",
|
||||
title: "Just Wanna Rock",
|
||||
name: "Just Wanna Rock",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1268,7 +1268,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "zugAhfd2r0g",
|
||||
title: "ITZY “Cheshire” M/V @ITZY",
|
||||
name: "ITZY “Cheshire” M/V @ITZY",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1292,7 +1292,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "5jJJYYaw8vw",
|
||||
title: "Pop Out (Official Video)",
|
||||
name: "Pop Out (Official Video)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1320,7 +1320,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "VMZefv4Vrwg",
|
||||
title: "Nas ft. @21 Savage - One Mic, One Gun (Official Audio)",
|
||||
name: "Nas ft. @21 Savage - One Mic, One Gun (Official Audio)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1344,7 +1344,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "3V8aen7Flhs",
|
||||
title: "Hi Haters",
|
||||
name: "Hi Haters",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1368,7 +1368,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "rb0bjyt1OD0",
|
||||
title: "Tukoh Taka - Official FIFA Fan Festival™ Anthem | Nicki Minaj, Maluma, & Myriam Fares (FIFA Sound)",
|
||||
name: "Tukoh Taka - Official FIFA Fan Festival™ Anthem | Nicki Minaj, Maluma, & Myriam Fares (FIFA Sound)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1392,7 +1392,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Ut1OzEVUiM4",
|
||||
title: "Red Velvet 레드벨벳 \'Birthday\' MV",
|
||||
name: "Red Velvet 레드벨벳 \'Birthday\' MV",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1416,7 +1416,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "rAr3-Pn9yRI",
|
||||
title: "JS4E",
|
||||
name: "JS4E",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1440,7 +1440,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "PtPewTyPmUg",
|
||||
title: "Jelly Roll - \"she\" (Official Audio)",
|
||||
name: "Jelly Roll - \"she\" (Official Audio)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1464,7 +1464,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "G6xgMW7U0aY",
|
||||
title: "712PM (Directed by Travis Scott)",
|
||||
name: "712PM (Directed by Travis Scott)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1488,7 +1488,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "C2YSX4sV_bA",
|
||||
title: "Letter to Takeoff",
|
||||
name: "Letter to Takeoff",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1512,7 +1512,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "kiUIkL4aZ5o",
|
||||
title: "Meek Mill - God Did (Official Video)",
|
||||
name: "Meek Mill - God Did (Official Video)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1536,7 +1536,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "9YdgldMKGGU",
|
||||
title: "Get Away (Official Visualizer)",
|
||||
name: "Get Away (Official Visualizer)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1560,7 +1560,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Z02zptUN8gI",
|
||||
title: "Cairo",
|
||||
name: "Cairo",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1588,7 +1588,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "S0_888ZjlAA",
|
||||
title: "Arcangel, Bad Bunny - La Jumpa (Visualizer) | SR. SANTOS",
|
||||
name: "Arcangel, Bad Bunny - La Jumpa (Visualizer) | SR. SANTOS",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1612,7 +1612,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "J9QwBwUnhQo",
|
||||
title: "Got It Right",
|
||||
name: "Got It Right",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1636,7 +1636,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "DWRj2BB8YHs",
|
||||
title: "AMG",
|
||||
name: "AMG",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1668,7 +1668,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "hX0aI5Jz8i8",
|
||||
title: "Texas",
|
||||
name: "Texas",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1692,7 +1692,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Dw9VmOLwxoM",
|
||||
title: "Thought You Should Know (Official Music Video)",
|
||||
name: "Thought You Should Know (Official Music Video)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -6,7 +6,7 @@ MusicCharts(
|
|||
top_tracks: [
|
||||
TrackItem(
|
||||
id: "rb0bjyt1OD0",
|
||||
title: "Tukoh Taka - Official FIFA Fan Festival™ Anthem | Nicki Minaj, Maluma, & Myriam Fares (FIFA Sound)",
|
||||
name: "Tukoh Taka - Official FIFA Fan Festival™ Anthem | Nicki Minaj, Maluma, & Myriam Fares (FIFA Sound)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -35,7 +35,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "jEdfjuG0Fx4",
|
||||
title: "정국 (Jung Kook) \'Dreamers\' @ FIFA World Cup Qatar 2022 Opening Ceremony",
|
||||
name: "정국 (Jung Kook) \'Dreamers\' @ FIFA World Cup Qatar 2022 Opening Ceremony",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -68,7 +68,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "pRpeEdMmmQ0",
|
||||
title: "Waka Waka (This Time for Africa) (The Official 2010 FIFA Worl... (feat. Freshlyground)",
|
||||
name: "Waka Waka (This Time for Africa) (The Official 2010 FIFA Worl... (feat. Freshlyground)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -97,7 +97,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Gzs60iBgd3E",
|
||||
title: "Duki: Bzrp Music Sessions, Vol. 50",
|
||||
name: "Duki: Bzrp Music Sessions, Vol. 50",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -130,7 +130,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "sABN7goDbZ8",
|
||||
title: "#Power Star #Pawan Singh का पॉवरफ\u{941}ल #VIDEO | हरी हरी ओढ\u{93c}नी | Ft. #Dimpal Singh | Bhojpuri Song",
|
||||
name: "#Power Star #Pawan Singh का पॉवरफ\u{941}ल #VIDEO | हरी हरी ओढ\u{93c}नी | Ft. #Dimpal Singh | Bhojpuri Song",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -163,7 +163,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "saGYMhApaH8",
|
||||
title: "Me porto bonito (feat. Chencho Corleone)",
|
||||
name: "Me porto bonito (feat. Chencho Corleone)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -192,7 +192,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "zuVV9Y55gvc",
|
||||
title: "Ranjithame",
|
||||
name: "Ranjithame",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -225,7 +225,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "TiM_TFpT_DE",
|
||||
title: "La Bachata",
|
||||
name: "La Bachata",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -254,7 +254,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "WcIcVapfqXw",
|
||||
title: "Calm Down",
|
||||
name: "Calm Down",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -287,7 +287,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Cr8K88UcO0s",
|
||||
title: "Tití me preguntó",
|
||||
name: "Tití me preguntó",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -316,7 +316,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "BddP6PYo2gs",
|
||||
title: "Kesariya",
|
||||
name: "Kesariya",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -345,7 +345,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "POe9SOEKotk",
|
||||
title: "Shut Down",
|
||||
name: "Shut Down",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -374,7 +374,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Z02zptUN8gI",
|
||||
title: "Cairo",
|
||||
name: "Cairo",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -407,7 +407,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "e8laLiWolGg",
|
||||
title: "Arhbo",
|
||||
name: "Arhbo",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -448,7 +448,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "SK37InR9j38",
|
||||
title: "GATÚBELA",
|
||||
name: "GATÚBELA",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -481,7 +481,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "5kJMtNWUytY",
|
||||
title: "#Video | Dilwa Le Gaile Raja\u{200b} - दिलवा ल\u{947} गईल\u{947} राजा | #Neelam Giri | #Shilpi Raj | Bhojpuri Song 2022",
|
||||
name: "#Video | Dilwa Le Gaile Raja\u{200b} - दिलवा ल\u{947} गईल\u{947} राजा | #Neelam Giri | #Shilpi Raj | Bhojpuri Song 2022",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -510,7 +510,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "gQlMMD8auMs",
|
||||
title: "Pink Venom",
|
||||
name: "Pink Venom",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -539,7 +539,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "D0gWr9K8Lb4",
|
||||
title: "Chann Sitare",
|
||||
name: "Chann Sitare",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -568,7 +568,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "7ouFkoU8Ap8",
|
||||
title: "Hey Mor (feat. Feid)",
|
||||
name: "Hey Mor (feat. Feid)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -597,7 +597,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "-1vsm5bhoyE",
|
||||
title: "No Se Va",
|
||||
name: "No Se Va",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -626,7 +626,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "gnMdTTeY1FY",
|
||||
title: "ياسر عبد الوهاب & زيد الحبيب - قلبي ( حصريا\u{64b} ) Yaser Abd Alwahab ft Zaid Alhabeeb - Qalby - 2022",
|
||||
name: "ياسر عبد الوهاب & زيد الحبيب - قلبي ( حصريا\u{64b} ) Yaser Abd Alwahab ft Zaid Alhabeeb - Qalby - 2022",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -655,7 +655,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "ca48oMV59LU",
|
||||
title: "PROVENZA",
|
||||
name: "PROVENZA",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -684,7 +684,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "VtKcDwz6hiM",
|
||||
title: "No Se Va (En Vivo)",
|
||||
name: "No Se Va (En Vivo)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -713,7 +713,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "5g2hT4GmAGU",
|
||||
title: "DESPECHÁ",
|
||||
name: "DESPECHÁ",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -742,7 +742,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "CQLsdm1ZYAw",
|
||||
title: "Calm Down",
|
||||
name: "Calm Down",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -775,7 +775,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "UhbixyxgsiU",
|
||||
title: "Just Wanna Rock",
|
||||
name: "Just Wanna Rock",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -804,7 +804,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "mxF58TYuPaM",
|
||||
title: "Devoto (feat. Elvis de Yongol)",
|
||||
name: "Devoto (feat. Elvis de Yongol)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -833,7 +833,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "8n5dJwWXrbo",
|
||||
title: "IShowSpeed - World Cup (Official Music Video)",
|
||||
name: "IShowSpeed - World Cup (Official Music Video)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -862,7 +862,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "j5y6xLpRwx4",
|
||||
title: "Monotonía",
|
||||
name: "Monotonía",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -895,7 +895,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "jRxDUsGmwuc",
|
||||
title: "Feliz Cumpleaños Ferxxo",
|
||||
name: "Feliz Cumpleaños Ferxxo",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -924,7 +924,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "RgKAFK5djSk",
|
||||
title: "See You Again (feat. Charlie Puth)",
|
||||
name: "See You Again (feat. Charlie Puth)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -953,7 +953,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "TGtWWb9emYI",
|
||||
title: "We Are One (Ole Ola) [The Official 2014 FIFA World Cup Song] ... (feat. Claudia Leitte & Jennifer Lopez)",
|
||||
name: "We Are One (Ole Ola) [The Official 2014 FIFA World Cup Song] ... (feat. Claudia Leitte & Jennifer Lopez)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -982,7 +982,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "no0RhhdJMlE",
|
||||
title: "Do It Right",
|
||||
name: "Do It Right",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1011,7 +1011,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "dzsuE5ugxf4",
|
||||
title: "Waka Waka (Esto es África) (feat. Freshlyground)",
|
||||
name: "Waka Waka (Esto es África) (feat. Freshlyground)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1040,7 +1040,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "aAkMkVFwAoo",
|
||||
title: "All I Want for Christmas Is You (Make My Wish Come True Edition)",
|
||||
name: "All I Want for Christmas Is You (Make My Wish Come True Edition)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1069,7 +1069,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "jpYkoa-uE_c",
|
||||
title: "Jehda Nasha",
|
||||
name: "Jehda Nasha",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1106,7 +1106,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "A_g3lMcWVy0",
|
||||
title: "Quevedo: Bzrp Music Sessions, Vol. 52",
|
||||
name: "Quevedo: Bzrp Music Sessions, Vol. 52",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1139,7 +1139,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "gIOyB9ZXn8s",
|
||||
title: "Into the Unknown (From \"Frozen 2\")",
|
||||
name: "Into the Unknown (From \"Frozen 2\")",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1172,7 +1172,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "MwpMEbgC7DA",
|
||||
title: "Another Love (Official Video)",
|
||||
name: "Another Love (Official Video)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1201,7 +1201,7 @@ MusicCharts(
|
|||
),
|
||||
TrackItem(
|
||||
id: "AJleGCGFyIg",
|
||||
title: "Dos Besitos (feat. Salastkbron & Gusty dj)",
|
||||
name: "Dos Besitos (feat. Salastkbron & Gusty dj)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -5,7 +5,7 @@ expression: map_res.c
|
|||
TrackDetails(
|
||||
track: TrackItem(
|
||||
id: "ZeerrnuLi5E",
|
||||
title: "Black Mamba",
|
||||
name: "Black Mamba",
|
||||
duration: Some(230),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -5,7 +5,7 @@ expression: map_res.c
|
|||
TrackDetails(
|
||||
track: TrackItem(
|
||||
id: "7nigXQS1Xb0",
|
||||
title: "INVU",
|
||||
name: "INVU",
|
||||
duration: Some(205),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -7,7 +7,7 @@ Paginator(
|
|||
items: [
|
||||
TrackItem(
|
||||
id: "4TWR90KJl84",
|
||||
title: "Next Level",
|
||||
name: "Next Level",
|
||||
duration: Some(236),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -41,7 +41,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Y8JFxS1HlDo",
|
||||
title: "LOVE DIVE",
|
||||
name: "LOVE DIVE",
|
||||
duration: Some(179),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -75,7 +75,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "CM4CkVFmTds",
|
||||
title: "I CAN\'T STOP ME",
|
||||
name: "I CAN\'T STOP ME",
|
||||
duration: Some(221),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -109,7 +109,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "_ysomCGaZLw",
|
||||
title: "In the Morning",
|
||||
name: "In the Morning",
|
||||
duration: Some(185),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -143,7 +143,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "gQlMMD8auMs",
|
||||
title: "Pink Venom",
|
||||
name: "Pink Venom",
|
||||
duration: Some(194),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -177,7 +177,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "uR8Mrt1IpXg",
|
||||
title: "Psycho",
|
||||
name: "Psycho",
|
||||
duration: Some(216),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -211,7 +211,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "PkKnp4SdE-w",
|
||||
title: "Hot Sauce",
|
||||
name: "Hot Sauce",
|
||||
duration: Some(212),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -245,7 +245,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "4vbDFu0PUew",
|
||||
title: "FEARLESS OFFICIAL M/V",
|
||||
name: "FEARLESS OFFICIAL M/V",
|
||||
duration: Some(183),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -279,7 +279,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "A5H8zBb3iao",
|
||||
title: "90\'s Love",
|
||||
name: "90\'s Love",
|
||||
duration: Some(227),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -313,7 +313,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "_xJUCsyMQes",
|
||||
title: "Best Friend (feat. Doja Cat)",
|
||||
name: "Best Friend (feat. Doja Cat)",
|
||||
duration: Some(202),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -342,7 +342,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "n0j5NPptyM0",
|
||||
title: "WA DA DA",
|
||||
name: "WA DA DA",
|
||||
duration: Some(198),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -376,7 +376,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "3GWscde8rM8",
|
||||
title: "O.O",
|
||||
name: "O.O",
|
||||
duration: Some(214),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -410,7 +410,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "uBY1AoiF5Vo",
|
||||
title: "Step Back",
|
||||
name: "Step Back",
|
||||
duration: Some(231),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -444,7 +444,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "WPdWvnAAurg",
|
||||
title: "Savage",
|
||||
name: "Savage",
|
||||
duration: Some(259),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -478,7 +478,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "tyrVtwE8Gv0",
|
||||
title: "Make A Wish (Birthday Song)",
|
||||
name: "Make A Wish (Birthday Song)",
|
||||
duration: Some(249),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -512,7 +512,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Jh4QFaPmdss",
|
||||
title: "TOMBOY",
|
||||
name: "TOMBOY",
|
||||
duration: Some(198),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -546,7 +546,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "2OvyA2__Eas",
|
||||
title: "英雄; Kick It",
|
||||
name: "英雄; Kick It",
|
||||
duration: Some(239),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -580,7 +580,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "dYRITmpFbJ4",
|
||||
title: "Girls",
|
||||
name: "Girls",
|
||||
duration: Some(269),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -614,7 +614,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "POe9SOEKotk",
|
||||
title: "Shut Down",
|
||||
name: "Shut Down",
|
||||
duration: Some(181),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -648,7 +648,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "pSudEWBAYRE",
|
||||
title: "Love Shot",
|
||||
name: "Love Shot",
|
||||
duration: Some(210),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -682,7 +682,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "nnVjsos40qk",
|
||||
title: "환상동화 (Secret Story of the Swan)",
|
||||
name: "환상동화 (Secret Story of the Swan)",
|
||||
duration: Some(202),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -716,7 +716,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "H69tJmsgd9I",
|
||||
title: "Dreams Come True",
|
||||
name: "Dreams Come True",
|
||||
duration: Some(221),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -750,7 +750,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "0IBSemQmno8",
|
||||
title: "ZOO",
|
||||
name: "ZOO",
|
||||
duration: Some(189),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -784,7 +784,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "MjCZfZfucEc",
|
||||
title: "LOCO",
|
||||
name: "LOCO",
|
||||
duration: Some(233),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -813,7 +813,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "tg2uF3R_Ozo",
|
||||
title: "DUMB DUMB",
|
||||
name: "DUMB DUMB",
|
||||
duration: Some(179),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -7,7 +7,7 @@ Paginator(
|
|||
items: [
|
||||
TrackItem(
|
||||
id: "hh5GKVa8VtM",
|
||||
title: "LOVE DIVE (LOVE DIVE)",
|
||||
name: "LOVE DIVE (LOVE DIVE)",
|
||||
duration: Some(178),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -59,7 +59,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "u1uvv_yKhH8",
|
||||
title: "Fine",
|
||||
name: "Fine",
|
||||
duration: Some(210),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -111,7 +111,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "QiziJ40kTz0",
|
||||
title: "FOREVER 1",
|
||||
name: "FOREVER 1",
|
||||
duration: Some(203),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -163,7 +163,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "OXWz_x6-dro",
|
||||
title: "Feel My Rhythm",
|
||||
name: "Feel My Rhythm",
|
||||
duration: Some(211),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -215,7 +215,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "ghrlZIMDzbM",
|
||||
title: "Hype Boy",
|
||||
name: "Hype Boy",
|
||||
duration: Some(180),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -267,7 +267,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "04tYkKUPPv4",
|
||||
title: "LILAC (라일락)",
|
||||
name: "LILAC (라일락)",
|
||||
duration: Some(215),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -319,7 +319,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "wjCrjR5WpgQ",
|
||||
title: "Dreams Come True",
|
||||
name: "Dreams Come True",
|
||||
duration: Some(205),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -371,7 +371,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "wkVlb8rSies",
|
||||
title: "Dun Dun Dance",
|
||||
name: "Dun Dun Dance",
|
||||
duration: Some(221),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -423,7 +423,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "RdU3F5vN3_s",
|
||||
title: "Nxde",
|
||||
name: "Nxde",
|
||||
duration: Some(179),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -475,7 +475,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "950BdJKBhGo",
|
||||
title: "Shut Down",
|
||||
name: "Shut Down",
|
||||
duration: Some(176),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -527,7 +527,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "W0x7GcZkvH4",
|
||||
title: "RUN2U (RUN2U)",
|
||||
name: "RUN2U (RUN2U)",
|
||||
duration: Some(214),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -579,7 +579,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "0EK_M2taRIM",
|
||||
title: "ELEVEN (ELEVEN)",
|
||||
name: "ELEVEN (ELEVEN)",
|
||||
duration: Some(179),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -631,7 +631,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "INLFlN-PZq4",
|
||||
title: "Weekend",
|
||||
name: "Weekend",
|
||||
duration: Some(234),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -683,7 +683,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "8JXc4idKS_c",
|
||||
title: "Roller Coaster",
|
||||
name: "Roller Coaster",
|
||||
duration: Some(212),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -735,7 +735,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "vFFT1iAUNDE",
|
||||
title: "Scared To Be Lonely",
|
||||
name: "Scared To Be Lonely",
|
||||
duration: Some(221),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -791,7 +791,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "g92HIac9ufA",
|
||||
title: "After LIKE",
|
||||
name: "After LIKE",
|
||||
duration: Some(177),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -843,7 +843,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "CinJhZF5ZuA",
|
||||
title: "불티 Spark",
|
||||
name: "불티 Spark",
|
||||
duration: Some(218),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -895,7 +895,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "t7hmovsG_f0",
|
||||
title: "Heart Burn (열이올라요 (Heart Burn))",
|
||||
name: "Heart Burn (열이올라요 (Heart Burn))",
|
||||
duration: Some(194),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -947,7 +947,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "FrEDny55ch8",
|
||||
title: "Rollin\'",
|
||||
name: "Rollin\'",
|
||||
duration: Some(198),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -999,7 +999,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "PyyT5tHbOLw",
|
||||
title: "Psycho",
|
||||
name: "Psycho",
|
||||
duration: Some(210),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1051,7 +1051,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "_ZkUb7iIOqQ",
|
||||
title: "Square (2017)",
|
||||
name: "Square (2017)",
|
||||
duration: Some(261),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1103,7 +1103,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "UxZH9lRdLD0",
|
||||
title: "Stronger (What Doesn\'t Kill You)",
|
||||
name: "Stronger (What Doesn\'t Kill You)",
|
||||
duration: Some(222),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1155,7 +1155,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "aYlXNpaQydk",
|
||||
title: "REALLY REALLY",
|
||||
name: "REALLY REALLY",
|
||||
duration: Some(204),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1207,7 +1207,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "SZiwpL62to8",
|
||||
title: "ANTIFRAGILE",
|
||||
name: "ANTIFRAGILE",
|
||||
duration: Some(185),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1259,7 +1259,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "mbg1Cn6Ua9U",
|
||||
title: "다시 만난 세계 Into The New World",
|
||||
name: "다시 만난 세계 Into The New World",
|
||||
duration: Some(266),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -6,7 +6,7 @@ MusicRelated(
|
|||
tracks: [
|
||||
TrackItem(
|
||||
id: "QiziJ40kTz0",
|
||||
title: "FOREVER 1",
|
||||
name: "FOREVER 1",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -38,7 +38,7 @@ MusicRelated(
|
|||
),
|
||||
TrackItem(
|
||||
id: "g92HIac9ufA",
|
||||
title: "After LIKE",
|
||||
name: "After LIKE",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -70,7 +70,7 @@ MusicRelated(
|
|||
),
|
||||
TrackItem(
|
||||
id: "khgCIMs_lVQ",
|
||||
title: "삠삠 (BEAM BEAM)",
|
||||
name: "삠삠 (BEAM BEAM)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -102,7 +102,7 @@ MusicRelated(
|
|||
),
|
||||
TrackItem(
|
||||
id: "i2VGa-ETiM4",
|
||||
title: "Life\'s Too Short",
|
||||
name: "Life\'s Too Short",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -134,7 +134,7 @@ MusicRelated(
|
|||
),
|
||||
TrackItem(
|
||||
id: "INLFlN-PZq4",
|
||||
title: "Weekend",
|
||||
name: "Weekend",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -166,7 +166,7 @@ MusicRelated(
|
|||
),
|
||||
TrackItem(
|
||||
id: "ZzbNM2l-AAA",
|
||||
title: "Hello",
|
||||
name: "Hello",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -198,7 +198,7 @@ MusicRelated(
|
|||
),
|
||||
TrackItem(
|
||||
id: "i4loHXi8f3A",
|
||||
title: "Forever 약속",
|
||||
name: "Forever 약속",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -230,7 +230,7 @@ MusicRelated(
|
|||
),
|
||||
TrackItem(
|
||||
id: "miqQAzOXPBo",
|
||||
title: "달라달라 DALLA DALLA",
|
||||
name: "달라달라 DALLA DALLA",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -262,7 +262,7 @@ MusicRelated(
|
|||
),
|
||||
TrackItem(
|
||||
id: "hh5GKVa8VtM",
|
||||
title: "LOVE DIVE (LOVE DIVE)",
|
||||
name: "LOVE DIVE (LOVE DIVE)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -294,7 +294,7 @@ MusicRelated(
|
|||
),
|
||||
TrackItem(
|
||||
id: "dzwSnvfKEtw",
|
||||
title: "Vanilla",
|
||||
name: "Vanilla",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -326,7 +326,7 @@ MusicRelated(
|
|||
),
|
||||
TrackItem(
|
||||
id: "REmUidcJt5I",
|
||||
title: "Savage",
|
||||
name: "Savage",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -358,7 +358,7 @@ MusicRelated(
|
|||
),
|
||||
TrackItem(
|
||||
id: "OXWz_x6-dro",
|
||||
title: "Feel My Rhythm",
|
||||
name: "Feel My Rhythm",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -390,7 +390,7 @@ MusicRelated(
|
|||
),
|
||||
TrackItem(
|
||||
id: "aFoqCI75WoY",
|
||||
title: "TOMBOY",
|
||||
name: "TOMBOY",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -422,7 +422,7 @@ MusicRelated(
|
|||
),
|
||||
TrackItem(
|
||||
id: "_Pm74XignKI",
|
||||
title: "Can\'t Control Myself",
|
||||
name: "Can\'t Control Myself",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -454,7 +454,7 @@ MusicRelated(
|
|||
),
|
||||
TrackItem(
|
||||
id: "-uOShlFu1v8",
|
||||
title: "SNEAKERS",
|
||||
name: "SNEAKERS",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -486,7 +486,7 @@ MusicRelated(
|
|||
),
|
||||
TrackItem(
|
||||
id: "LP9sF1v-vz4",
|
||||
title: "도깨비불 Illusion",
|
||||
name: "도깨비불 Illusion",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -518,7 +518,7 @@ MusicRelated(
|
|||
),
|
||||
TrackItem(
|
||||
id: "KJrPsT2X-yk",
|
||||
title: "Weapon (With Newnion & FLOOR) (Prod. by Czaer)",
|
||||
name: "Weapon (With Newnion & FLOOR) (Prod. by Czaer)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -550,7 +550,7 @@ MusicRelated(
|
|||
),
|
||||
TrackItem(
|
||||
id: "tkzYyEp4zB4",
|
||||
title: "Next Level",
|
||||
name: "Next Level",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -582,7 +582,7 @@ MusicRelated(
|
|||
),
|
||||
TrackItem(
|
||||
id: "ZpD59tu5_Rk",
|
||||
title: "ICY",
|
||||
name: "ICY",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -614,7 +614,7 @@ MusicRelated(
|
|||
),
|
||||
TrackItem(
|
||||
id: "_eNXeEx9Hvk",
|
||||
title: "You can\'t sit with us (You can\'t sit with us)",
|
||||
name: "You can\'t sit with us (You can\'t sit with us)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -648,7 +648,7 @@ MusicRelated(
|
|||
other_versions: [
|
||||
TrackItem(
|
||||
id: "NU611fxGyPU",
|
||||
title: "Black Mamba",
|
||||
name: "Black Mamba",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -672,7 +672,7 @@ MusicRelated(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Yi2nsnpw5h0",
|
||||
title: "aespa - Black Mamba (Official Instrumental)",
|
||||
name: "aespa - Black Mamba (Official Instrumental)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -696,7 +696,7 @@ MusicRelated(
|
|||
),
|
||||
TrackItem(
|
||||
id: "2Qefh0W_H88",
|
||||
title: "aespa - black mamba (𝒔𝒍𝒐𝒘𝒆𝒅 𝒏 𝒓𝒆𝒗𝒆𝒓𝒃)",
|
||||
name: "aespa - black mamba (𝒔𝒍𝒐𝒘𝒆𝒅 𝒏 𝒓𝒆𝒗𝒆𝒓𝒃)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -720,7 +720,7 @@ MusicRelated(
|
|||
),
|
||||
TrackItem(
|
||||
id: "oo89OQvzkIo",
|
||||
title: "AESPA (에스파) – BLACK MAMBA [8D USE HEADPHONE] 🎧",
|
||||
name: "AESPA (에스파) – BLACK MAMBA [8D USE HEADPHONE] 🎧",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -5,7 +5,7 @@ expression: map_res.c
|
|||
[
|
||||
TrackItem(
|
||||
id: "skl6N3zGv-s",
|
||||
title: "Adieu",
|
||||
name: "Adieu",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -34,7 +34,7 @@ expression: map_res.c
|
|||
),
|
||||
TrackItem(
|
||||
id: "gFERoNpcnFU",
|
||||
title: "Marteria - Wald (Official Video)",
|
||||
name: "Marteria - Wald (Official Video)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -63,7 +63,7 @@ expression: map_res.c
|
|||
),
|
||||
TrackItem(
|
||||
id: "bmEzom5sfCI",
|
||||
title: "ELIF X PA SPORTS - ICH DENK AN DICH (Official Video)",
|
||||
name: "ELIF X PA SPORTS - ICH DENK AN DICH (Official Video)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -92,7 +92,7 @@ expression: map_res.c
|
|||
),
|
||||
TrackItem(
|
||||
id: "QHY2pm7uT3k",
|
||||
title: "HOME RUN",
|
||||
name: "HOME RUN",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -121,7 +121,7 @@ expression: map_res.c
|
|||
),
|
||||
TrackItem(
|
||||
id: "Su42LK7I4NM",
|
||||
title: "R3HAB, Timmy Trumpet, W&W - Poison [Tomorrowland Music]",
|
||||
name: "R3HAB, Timmy Trumpet, W&W - Poison [Tomorrowland Music]",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -150,7 +150,7 @@ expression: map_res.c
|
|||
),
|
||||
TrackItem(
|
||||
id: "mly7ha04bEE",
|
||||
title: "SAMRA x JOEL BRANDENSTEIN - REGEN (prod. by Lukas Lulou Loules) [Official Video]",
|
||||
name: "SAMRA x JOEL BRANDENSTEIN - REGEN (prod. by Lukas Lulou Loules) [Official Video]",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -179,7 +179,7 @@ expression: map_res.c
|
|||
),
|
||||
TrackItem(
|
||||
id: "c91bmLbGt-g",
|
||||
title: "Der Berg ruft",
|
||||
name: "Der Berg ruft",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -216,7 +216,7 @@ expression: map_res.c
|
|||
),
|
||||
TrackItem(
|
||||
id: "IwzkfMmNMpM",
|
||||
title: "정국 Jung Kook (of BTS) featuring Fahad Al Kubaisi - Dreamers | FIFA World Cup 2022 Soundtrack",
|
||||
name: "정국 Jung Kook (of BTS) featuring Fahad Al Kubaisi - Dreamers | FIFA World Cup 2022 Soundtrack",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -245,7 +245,7 @@ expression: map_res.c
|
|||
),
|
||||
TrackItem(
|
||||
id: "_-spkuonX2k",
|
||||
title: "Blau zu Grau",
|
||||
name: "Blau zu Grau",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -278,7 +278,7 @@ expression: map_res.c
|
|||
),
|
||||
TrackItem(
|
||||
id: "48pBUciAbRY",
|
||||
title: "CAPITAL BRA - BALLERLAIKA (prod. by LUCRY & CESA)",
|
||||
name: "CAPITAL BRA - BALLERLAIKA (prod. by LUCRY & CESA)",
|
||||
duration: None,
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -42,7 +42,7 @@ MusicAlbum(
|
|||
tracks: [
|
||||
TrackItem(
|
||||
id: "YQHsXMglC9A",
|
||||
title: "Hello",
|
||||
name: "Hello",
|
||||
duration: Some(296),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -63,7 +63,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "fk4BbF7B29w",
|
||||
title: "Send My Love (To Your New Lover)",
|
||||
name: "Send My Love (To Your New Lover)",
|
||||
duration: Some(224),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -84,7 +84,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "z7NEG3SGZ_g",
|
||||
title: "I Miss You",
|
||||
name: "I Miss You",
|
||||
duration: Some(349),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -105,7 +105,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "a1IuJLebHgM",
|
||||
title: "When We Were Young",
|
||||
name: "When We Were Young",
|
||||
duration: Some(291),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -126,7 +126,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "-fsCc7Be1H0",
|
||||
title: "Remedy",
|
||||
name: "Remedy",
|
||||
duration: Some(246),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -147,7 +147,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "l8djdhhFuxo",
|
||||
title: "Water Under the Bridge",
|
||||
name: "Water Under the Bridge",
|
||||
duration: Some(241),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -168,7 +168,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Qiu59lZShCo",
|
||||
title: "River Lea",
|
||||
name: "River Lea",
|
||||
duration: Some(226),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -189,7 +189,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "-hzFTJDJGkQ",
|
||||
title: "Love in the Dark",
|
||||
name: "Love in the Dark",
|
||||
duration: Some(286),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -210,7 +210,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Db9ciJPIaEU",
|
||||
title: "Million Years Ago",
|
||||
name: "Million Years Ago",
|
||||
duration: Some(228),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -231,7 +231,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "jb5g4UFHmfQ",
|
||||
title: "All I Ask",
|
||||
name: "All I Ask",
|
||||
duration: Some(272),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -252,7 +252,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "1kZsaRkVEUY",
|
||||
title: "Sweetest Devotion",
|
||||
name: "Sweetest Devotion",
|
||||
duration: Some(252),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
|
|
@ -42,7 +42,7 @@ MusicAlbum(
|
|||
tracks: [
|
||||
TrackItem(
|
||||
id: "g0iRiJ_ck48",
|
||||
title: "Aulë und Yavanna",
|
||||
name: "Aulë und Yavanna",
|
||||
duration: Some(216),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -63,7 +63,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "rREEBXp0y9s",
|
||||
title: "Numenor",
|
||||
name: "Numenor",
|
||||
duration: Some(224),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -84,7 +84,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "zvU5Y8Q19hU",
|
||||
title: "Das Mädchen und die Liebe (feat. Santiano)",
|
||||
name: "Das Mädchen und die Liebe (feat. Santiano)",
|
||||
duration: Some(176),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -105,7 +105,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "ARKLrzzTQA0",
|
||||
title: "Niënna",
|
||||
name: "Niënna",
|
||||
duration: Some(215),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -126,7 +126,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "tstLgN8A_Ng",
|
||||
title: "Der fahle Mond",
|
||||
name: "Der fahle Mond",
|
||||
duration: Some(268),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -147,7 +147,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "k2DjgQOY3Ts",
|
||||
title: "Weise den Weg",
|
||||
name: "Weise den Weg",
|
||||
duration: Some(202),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -168,7 +168,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "azHwhecxEsI",
|
||||
title: "Zeit der Sommernächte",
|
||||
name: "Zeit der Sommernächte",
|
||||
duration: Some(185),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -189,7 +189,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "_FcsdYIQ2co",
|
||||
title: "Märchen enden gut",
|
||||
name: "Märchen enden gut",
|
||||
duration: Some(226),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -210,7 +210,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "27bOWEbshyE",
|
||||
title: "Das Mädchen und der Tod",
|
||||
name: "Das Mädchen und der Tod",
|
||||
duration: Some(207),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -231,7 +231,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "riD_3oZwt8w",
|
||||
title: "Wir sehn uns wieder",
|
||||
name: "Wir sehn uns wieder",
|
||||
duration: Some(211),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -252,7 +252,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "8GNvjF3no9s",
|
||||
title: "Tanz mit mir",
|
||||
name: "Tanz mit mir",
|
||||
duration: Some(179),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -273,7 +273,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "YHMFzf1uN2U",
|
||||
title: "Nachtigall",
|
||||
name: "Nachtigall",
|
||||
duration: Some(218),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -294,7 +294,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "jvV-z5F3oAo",
|
||||
title: "Gayatri Mantra",
|
||||
name: "Gayatri Mantra",
|
||||
duration: Some(277),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -315,7 +315,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "u8_9cxlrh8k",
|
||||
title: "Sing mir deine Lieder",
|
||||
name: "Sing mir deine Lieder",
|
||||
duration: Some(204),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -336,7 +336,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "gSvKcvM1Wk0",
|
||||
title: "Laurië lantar",
|
||||
name: "Laurië lantar",
|
||||
duration: Some(202),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -357,7 +357,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "wQHgKRJ0pDQ",
|
||||
title: "Wächter vor dem Tor",
|
||||
name: "Wächter vor dem Tor",
|
||||
duration: Some(222),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -378,7 +378,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Ckz5i6-hzf0",
|
||||
title: "Stroh zu Gold",
|
||||
name: "Stroh zu Gold",
|
||||
duration: Some(177),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -399,7 +399,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "y5zuUgyFqrc",
|
||||
title: "Sonnenwendnacht",
|
||||
name: "Sonnenwendnacht",
|
||||
duration: Some(220),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
|
|
@ -46,7 +46,7 @@ MusicAlbum(
|
|||
tracks: [
|
||||
TrackItem(
|
||||
id: "XX0epju-YvY",
|
||||
title: "Der Himmel reißt auf",
|
||||
name: "Der Himmel reißt auf",
|
||||
duration: Some(183),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
|
|
@ -37,7 +37,7 @@ MusicAlbum(
|
|||
tracks: [
|
||||
TrackItem(
|
||||
id: "JWeJHN5P-E8",
|
||||
title: "Teeth",
|
||||
name: "Teeth",
|
||||
duration: Some(205),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -58,7 +58,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "5jd-AhBwcCQ",
|
||||
title: "Die A Little",
|
||||
name: "Die A Little",
|
||||
duration: Some(174),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -79,7 +79,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "_cmORZMgv6I",
|
||||
title: "fuck, i\'m lonely (feat. Anne-Marie)",
|
||||
name: "fuck, i\'m lonely (feat. Anne-Marie)",
|
||||
duration: Some(199),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -100,7 +100,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "M_kVMsFaGYs",
|
||||
title: "Swim Home",
|
||||
name: "Swim Home",
|
||||
duration: Some(187),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -121,7 +121,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "c8AfY6yhdkM",
|
||||
title: "Another Summer Night Without You",
|
||||
name: "Another Summer Night Without You",
|
||||
duration: Some(159),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -142,7 +142,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "DSQEKEegiH0",
|
||||
title: "Miss U",
|
||||
name: "Miss U",
|
||||
duration: Some(186),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -163,7 +163,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "2TTOKQSzuQY",
|
||||
title: "Favorite Drug",
|
||||
name: "Favorite Drug",
|
||||
duration: Some(209),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -184,7 +184,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "iRaX0BfME70",
|
||||
title: "Keeping It In The Dark",
|
||||
name: "Keeping It In The Dark",
|
||||
duration: Some(209),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -205,7 +205,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Kn3cruxYj0c",
|
||||
title: "All That (feat. Jeremih)",
|
||||
name: "All That (feat. Jeremih)",
|
||||
duration: Some(174),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -226,7 +226,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "-P1FyntN_Uc",
|
||||
title: "This Baby Don’t Cry",
|
||||
name: "This Baby Don’t Cry",
|
||||
duration: Some(185),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -247,7 +247,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "njdlNT1RRo4",
|
||||
title: "Walk Forever By My Side",
|
||||
name: "Walk Forever By My Side",
|
||||
duration: Some(237),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -268,7 +268,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Si-CXM8CHqQ",
|
||||
title: "Ordinary World (feat. White Sea)",
|
||||
name: "Ordinary World (feat. White Sea)",
|
||||
duration: Some(246),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
|
|
@ -37,7 +37,7 @@ MusicAlbum(
|
|||
tracks: [
|
||||
TrackItem(
|
||||
id: "8IqLxg0GqXc",
|
||||
title: "Waka Boom (My Way) (feat. Lee Young Ji)",
|
||||
name: "Waka Boom (My Way) (feat. Lee Young Ji)",
|
||||
duration: Some(274),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -58,7 +58,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "9WYpLYAEub0",
|
||||
title: "AURA",
|
||||
name: "AURA",
|
||||
duration: Some(216),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -79,7 +79,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "R48tE237bW4",
|
||||
title: "THE GIRLS (Can’t turn me down)",
|
||||
name: "THE GIRLS (Can’t turn me down)",
|
||||
duration: Some(239),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -100,7 +100,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "-UzsoR6z-vg",
|
||||
title: "Red Sun!",
|
||||
name: "Red Sun!",
|
||||
duration: Some(254),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -121,7 +121,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "kbNVyn8Ex28",
|
||||
title: "POSE",
|
||||
name: "POSE",
|
||||
duration: Some(187),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -142,7 +142,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "NJrQZUzWP5Y",
|
||||
title: "Whistle",
|
||||
name: "Whistle",
|
||||
duration: Some(224),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
|
|
@ -34,7 +34,7 @@ MusicPlaylist(
|
|||
items: [
|
||||
TrackItem(
|
||||
id: "Bkj3IVIO2Os",
|
||||
title: "Die immer lacht (radio 2016 mix)",
|
||||
name: "Die immer lacht (radio 2016 mix)",
|
||||
duration: Some(216),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -62,7 +62,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "8rRj5ZXRNko",
|
||||
title: "Faded Love",
|
||||
name: "Faded Love",
|
||||
duration: Some(191),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -86,7 +86,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "lHZtcC67yrY",
|
||||
title: "Hulapalu",
|
||||
name: "Hulapalu",
|
||||
duration: Some(188),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -110,7 +110,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "TSkVVVBS9k8",
|
||||
title: "Was du Liebe nennst",
|
||||
name: "Was du Liebe nennst",
|
||||
duration: Some(237),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -134,7 +134,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "lc-cnCRhE7c",
|
||||
title: "Senorita (feat. Pietro Lombardi)",
|
||||
name: "Senorita (feat. Pietro Lombardi)",
|
||||
duration: Some(250),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -158,7 +158,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "3ryohiCVq3M",
|
||||
title: "Namika - Lieblingsmensch (Official Video)",
|
||||
name: "Namika - Lieblingsmensch (Official Video)",
|
||||
duration: Some(191),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -182,7 +182,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "BNHamTwxJ6Q",
|
||||
title: "Warum hast du nicht nein gesagt (Club Mix / Videoclip)",
|
||||
name: "Warum hast du nicht nein gesagt (Club Mix / Videoclip)",
|
||||
duration: Some(217),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -210,7 +210,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "5mqelmYUcI0",
|
||||
title: "Louis Louis",
|
||||
name: "Louis Louis",
|
||||
duration: Some(218),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -234,7 +234,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "k9EYjn5f_nE",
|
||||
title: "Auf uns",
|
||||
name: "Auf uns",
|
||||
duration: Some(244),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -258,7 +258,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "fkMg_X9lHMc",
|
||||
title: "Marteria - Kids (2 Finger an den Kopf) [Offizielles Video]",
|
||||
name: "Marteria - Kids (2 Finger an den Kopf) [Offizielles Video]",
|
||||
duration: Some(230),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -282,7 +282,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "4wOoLLDXbDY",
|
||||
title: "Easy",
|
||||
name: "Easy",
|
||||
duration: Some(195),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -306,7 +306,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Z_mf9aCHag8",
|
||||
title: "Bist Du Real (feat. moe.)",
|
||||
name: "Bist Du Real (feat. moe.)",
|
||||
duration: Some(186),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -330,7 +330,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "cZ58odQo87A",
|
||||
title: "Ich will nur dass du weißt - Radio Edit (feat. Adel Tawil)",
|
||||
name: "Ich will nur dass du weißt - Radio Edit (feat. Adel Tawil)",
|
||||
duration: Some(222),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -354,7 +354,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "1il3RFk5Okw",
|
||||
title: "Chöre (Willkommen bei den Hartmanns Version)",
|
||||
name: "Chöre (Willkommen bei den Hartmanns Version)",
|
||||
duration: Some(209),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -378,7 +378,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "8WQMBv2deYQ",
|
||||
title: "Traum",
|
||||
name: "Traum",
|
||||
duration: Some(219),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -402,7 +402,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "vGrfFzagzHs",
|
||||
title: "Whatever",
|
||||
name: "Whatever",
|
||||
duration: Some(207),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -426,7 +426,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "1gDbpWC_9pE",
|
||||
title: "Wie schön du bist",
|
||||
name: "Wie schön du bist",
|
||||
duration: Some(216),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -450,7 +450,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "p-AWcCCbBHw",
|
||||
title: "Heute mit mir",
|
||||
name: "Heute mit mir",
|
||||
duration: Some(256),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -474,7 +474,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "RPN88D_HjMU",
|
||||
title: "Xavier Naidoo - Ich kenne nichts (Das so schön ist wie du) [Official Video]",
|
||||
name: "Xavier Naidoo - Ich kenne nichts (Das so schön ist wie du) [Official Video]",
|
||||
duration: Some(332),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -502,7 +502,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "5PST7Ld4wWU",
|
||||
title: "Wenn sie tanzt (Single Version)",
|
||||
name: "Wenn sie tanzt (Single Version)",
|
||||
duration: Some(225),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -526,7 +526,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "opoDBF_b-fg",
|
||||
title: "Willst du",
|
||||
name: "Willst du",
|
||||
duration: Some(307),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -550,7 +550,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "AMT9IOyXmBM",
|
||||
title: "Einer dieser Steine (feat. Mark Forster)",
|
||||
name: "Einer dieser Steine (feat. Mark Forster)",
|
||||
duration: Some(258),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -574,7 +574,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "VP5B1UmgHfc",
|
||||
title: "Ne Leiche (feat. Sido)",
|
||||
name: "Ne Leiche (feat. Sido)",
|
||||
duration: Some(328),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -598,7 +598,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "vcuQpbs0yT0",
|
||||
title: "Ya Salam",
|
||||
name: "Ya Salam",
|
||||
duration: Some(224),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -622,7 +622,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "LeMLVEJLruQ",
|
||||
title: "Ich & Du (feat. Sebastian Hämer)",
|
||||
name: "Ich & Du (feat. Sebastian Hämer)",
|
||||
duration: Some(229),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -646,7 +646,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "MtDPKJSsBgc",
|
||||
title: "Au Revoir (Videoclip)",
|
||||
name: "Au Revoir (Videoclip)",
|
||||
duration: Some(227),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -670,7 +670,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "4tDpYxNYqPg",
|
||||
title: "Scheissmelodie (Single Edit)",
|
||||
name: "Scheissmelodie (Single Edit)",
|
||||
duration: Some(209),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -694,7 +694,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "EkWjaoH7k6w",
|
||||
title: "Ist da jemand (Official Video)",
|
||||
name: "Ist da jemand (Official Video)",
|
||||
duration: Some(251),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -718,7 +718,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "tERRFWuYG48",
|
||||
title: "Barfuß am Klavier",
|
||||
name: "Barfuß am Klavier",
|
||||
duration: Some(202),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -742,7 +742,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "wCcJuN47UcY",
|
||||
title: "Halt dich an mir fest",
|
||||
name: "Halt dich an mir fest",
|
||||
duration: Some(213),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -766,7 +766,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "qdtLCfEcPL4",
|
||||
title: "Alles neu",
|
||||
name: "Alles neu",
|
||||
duration: Some(272),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -790,7 +790,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "wjXUBG15eZ8",
|
||||
title: "Holz",
|
||||
name: "Holz",
|
||||
duration: Some(214),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -814,7 +814,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "HBjDZMJUduo",
|
||||
title: "Nein, Mann! (Radio Edit)",
|
||||
name: "Nein, Mann! (Radio Edit)",
|
||||
duration: Some(231),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -838,7 +838,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "xkXQQ0IAbk0",
|
||||
title: "Bon Voyage (Alistair x KidSoFly Remix (Remix EP))",
|
||||
name: "Bon Voyage (Alistair x KidSoFly Remix (Remix EP))",
|
||||
duration: Some(159),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -862,7 +862,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "DraA3PUuoQc",
|
||||
title: "Pocahontas",
|
||||
name: "Pocahontas",
|
||||
duration: Some(192),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -886,7 +886,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "wMIGQp4YhuU",
|
||||
title: "Alles kann besser werden",
|
||||
name: "Alles kann besser werden",
|
||||
duration: Some(269),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -910,7 +910,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "38lrK74voaI",
|
||||
title: "Magisch (feat. Edin)",
|
||||
name: "Magisch (feat. Edin)",
|
||||
duration: Some(270),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -934,7 +934,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "2qW9rOSFF1M",
|
||||
title: "An ihnen vorbei",
|
||||
name: "An ihnen vorbei",
|
||||
duration: Some(220),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -962,7 +962,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "tMILH6UEfPA",
|
||||
title: "Kleiner Cabrón (Instrumental)",
|
||||
name: "Kleiner Cabrón (Instrumental)",
|
||||
duration: Some(213),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -986,7 +986,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "izHB2EdMngg",
|
||||
title: "Ich sterb für dich",
|
||||
name: "Ich sterb für dich",
|
||||
duration: Some(190),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1010,7 +1010,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "haECT-SerHk",
|
||||
title: "Atemlos durch die Nacht (A | Class Kuduro edit)",
|
||||
name: "Atemlos durch die Nacht (A | Class Kuduro edit)",
|
||||
duration: Some(219),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1034,7 +1034,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "cVikZ8Oe_XA",
|
||||
title: "Rock Me Amadeus",
|
||||
name: "Rock Me Amadeus",
|
||||
duration: Some(225),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1058,7 +1058,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "drFsXLChrWc",
|
||||
title: "Holland",
|
||||
name: "Holland",
|
||||
duration: Some(213),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1082,7 +1082,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "1EMFt7m_8yE",
|
||||
title: "Ich muss immer an dich denken",
|
||||
name: "Ich muss immer an dich denken",
|
||||
duration: Some(217),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1106,7 +1106,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "_yWU0lFghxU",
|
||||
title: "Ding (feat. Saïan Supa Crew)",
|
||||
name: "Ding (feat. Saïan Supa Crew)",
|
||||
duration: Some(211),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1130,7 +1130,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "XlD-LO3ogFM",
|
||||
title: "Wir sind groß (Lyric Video)",
|
||||
name: "Wir sind groß (Lyric Video)",
|
||||
duration: Some(204),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1154,7 +1154,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "nAzjWqNfgvc",
|
||||
title: "Unter meiner Haut (Radio Mix) (feat. Wincent Weiss)",
|
||||
name: "Unter meiner Haut (Radio Mix) (feat. Wincent Weiss)",
|
||||
duration: Some(218),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1182,7 +1182,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "PySC3RGhZJU",
|
||||
title: "Bad Chick",
|
||||
name: "Bad Chick",
|
||||
duration: Some(218),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1206,7 +1206,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "G-iwLoyH6ZE",
|
||||
title: "Nur noch Gucci",
|
||||
name: "Nur noch Gucci",
|
||||
duration: Some(232),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1230,7 +1230,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "fgCOUO-s8nY",
|
||||
title: "Still (Videoclip)",
|
||||
name: "Still (Videoclip)",
|
||||
duration: Some(238),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1254,7 +1254,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "m-Ik3yy728Y",
|
||||
title: "Auf anderen Wegen",
|
||||
name: "Auf anderen Wegen",
|
||||
duration: Some(245),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1278,7 +1278,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "U0_UYW5Y4cM",
|
||||
title: "I sing a Liad für di",
|
||||
name: "I sing a Liad für di",
|
||||
duration: Some(188),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1302,7 +1302,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "rsrDYTEicq8",
|
||||
title: "Primo",
|
||||
name: "Primo",
|
||||
duration: Some(214),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1326,7 +1326,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "2aU4wRgl_0E",
|
||||
title: "Nice Girl 2.0",
|
||||
name: "Nice Girl 2.0",
|
||||
duration: Some(169),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1350,7 +1350,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "FzcJxJAxFtw",
|
||||
title: "Ti amo",
|
||||
name: "Ti amo",
|
||||
duration: Some(267),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1378,7 +1378,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "2hyibXdOp5w",
|
||||
title: "XAVAS (Xavier Naidoo & Kool Savas) \"Schau nicht mehr zurück\" (Official HD Video 2012)",
|
||||
name: "XAVAS (Xavier Naidoo & Kool Savas) \"Schau nicht mehr zurück\" (Official HD Video 2012)",
|
||||
duration: Some(234),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1402,7 +1402,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "YaKG5cUVB30",
|
||||
title: "Ali Bumaye - Sex ohne Grund feat. Shindy",
|
||||
name: "Ali Bumaye - Sex ohne Grund feat. Shindy",
|
||||
duration: Some(166),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1426,7 +1426,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Ahwc-ouFeTQ",
|
||||
title: "Willst du",
|
||||
name: "Willst du",
|
||||
duration: Some(224),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1450,7 +1450,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "SoImFhORKpg",
|
||||
title: "Bonez MC & RAF Camora feat. Gzuz & Maxwell - Kontrollieren (prod. by Beataura & RAF Camora)",
|
||||
name: "Bonez MC & RAF Camora feat. Gzuz & Maxwell - Kontrollieren (prod. by Beataura & RAF Camora)",
|
||||
duration: Some(232),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1474,7 +1474,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "jP4-XrbGt3M",
|
||||
title: "Sowieso",
|
||||
name: "Sowieso",
|
||||
duration: Some(161),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1498,7 +1498,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Yy2RsG4lnm4",
|
||||
title: "1000 Träume weit (Tornero)",
|
||||
name: "1000 Träume weit (Tornero)",
|
||||
duration: Some(254),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1522,7 +1522,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "388e_8mu1t4",
|
||||
title: "SDP feat. Sido - Die Nacht von Freitag auf Montag",
|
||||
name: "SDP feat. Sido - Die Nacht von Freitag auf Montag",
|
||||
duration: Some(241),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1546,7 +1546,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "dHHtPi-j7dQ",
|
||||
title: "Wolke 7",
|
||||
name: "Wolke 7",
|
||||
duration: Some(239),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1570,7 +1570,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "d8ERTCVXIUE",
|
||||
title: "Lass sie tanzen (Square Dance) [Instrumental]",
|
||||
name: "Lass sie tanzen (Square Dance) [Instrumental]",
|
||||
duration: Some(251),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1594,7 +1594,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "vQXn3EzzYY4",
|
||||
title: "Weil Du mich nur verarscht hast (Instrumental)",
|
||||
name: "Weil Du mich nur verarscht hast (Instrumental)",
|
||||
duration: Some(208),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1618,7 +1618,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "zA-BTpC-yvI",
|
||||
title: "Qa bone",
|
||||
name: "Qa bone",
|
||||
duration: Some(202),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1642,7 +1642,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "rnzIN9H_G10",
|
||||
title: "Leiser (Pseudo Video)",
|
||||
name: "Leiser (Pseudo Video)",
|
||||
duration: Some(209),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1666,7 +1666,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "fcBbT1GTxqM",
|
||||
title: "Kay One - Ich brech die Herzen",
|
||||
name: "Kay One - Ich brech die Herzen",
|
||||
duration: Some(229),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1690,7 +1690,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "wCDsm_dt1cI",
|
||||
title: "Du schaffst das schon (Oktoberfest-Mix)",
|
||||
name: "Du schaffst das schon (Oktoberfest-Mix)",
|
||||
duration: Some(190),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1714,7 +1714,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "4j3AOJV1J8I",
|
||||
title: "23 - Bushido & Sido feat. Peter Maffay - Erwachsen sein",
|
||||
name: "23 - Bushido & Sido feat. Peter Maffay - Erwachsen sein",
|
||||
duration: Some(218),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1738,7 +1738,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "RtuW08ZIgvg",
|
||||
title: "Und wenn ein Lied - Radio Edit",
|
||||
name: "Und wenn ein Lied - Radio Edit",
|
||||
duration: Some(249),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1762,7 +1762,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "cbTXqKBIQ40",
|
||||
title: "Eiserner Steg [Klavier Version] (feat. Matthias Schweighöfer)",
|
||||
name: "Eiserner Steg [Klavier Version] (feat. Matthias Schweighöfer)",
|
||||
duration: Some(250),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1786,7 +1786,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "oSd0Lph4luY",
|
||||
title: "Deja Vu (Instrumental)",
|
||||
name: "Deja Vu (Instrumental)",
|
||||
duration: Some(229),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1810,7 +1810,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "oq0rrYrufYU",
|
||||
title: "Herz über Kopf (Official Video)",
|
||||
name: "Herz über Kopf (Official Video)",
|
||||
duration: Some(209),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1834,7 +1834,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "0-P_YkS0z8s",
|
||||
title: "Augenblick (feat. Summer Cem)",
|
||||
name: "Augenblick (feat. Summer Cem)",
|
||||
duration: Some(208),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1858,7 +1858,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "4BAKb2p450Q",
|
||||
title: "Nur noch kurz die Welt retten",
|
||||
name: "Nur noch kurz die Welt retten",
|
||||
duration: Some(191),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1882,7 +1882,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "yqObMM_QzVQ",
|
||||
title: "Im Ascheregen",
|
||||
name: "Im Ascheregen",
|
||||
duration: Some(303),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1906,7 +1906,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "dlvStoOyEzE",
|
||||
title: "Du bist schön",
|
||||
name: "Du bist schön",
|
||||
duration: Some(246),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1930,7 +1930,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "VNttGAaek2U",
|
||||
title: "Lass uns gehen",
|
||||
name: "Lass uns gehen",
|
||||
duration: Some(214),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1954,7 +1954,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "TxZMfufRJfo",
|
||||
title: "Oft gefragt",
|
||||
name: "Oft gefragt",
|
||||
duration: Some(189),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1978,7 +1978,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "6agT2asF4as",
|
||||
title: "Mon Chéri",
|
||||
name: "Mon Chéri",
|
||||
duration: Some(230),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2002,7 +2002,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "EcW0n83La5A",
|
||||
title: "Lieblingslied",
|
||||
name: "Lieblingslied",
|
||||
duration: Some(212),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2026,7 +2026,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "_b61hg8UlZM",
|
||||
title: "Lambo Diablo GT",
|
||||
name: "Lambo Diablo GT",
|
||||
duration: Some(285),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2050,7 +2050,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "kDMFranvFuQ",
|
||||
title: "Diese Liebe",
|
||||
name: "Diese Liebe",
|
||||
duration: Some(359),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2074,7 +2074,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "1apku0pVDeE",
|
||||
title: "Feuerwerk",
|
||||
name: "Feuerwerk",
|
||||
duration: Some(213),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2098,7 +2098,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "g6JYzOjglBs",
|
||||
title: "Aufstehn! (feat. CeeLo Green)",
|
||||
name: "Aufstehn! (feat. CeeLo Green)",
|
||||
duration: Some(231),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2122,7 +2122,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "GYK-NfOo7b4",
|
||||
title: "Dickes B (feat. Black Kappa)",
|
||||
name: "Dickes B (feat. Black Kappa)",
|
||||
duration: Some(240),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2146,7 +2146,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "omUuR45iU0g",
|
||||
title: "Hayvan (feat. Summer Cem)",
|
||||
name: "Hayvan (feat. Summer Cem)",
|
||||
duration: Some(291),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2170,7 +2170,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "w7BE3inS-NM",
|
||||
title: "Bis hier und noch weiter (Official Video) (feat. KC Rebell & Summer Cem)",
|
||||
name: "Bis hier und noch weiter (Official Video) (feat. KC Rebell & Summer Cem)",
|
||||
duration: Some(228),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2194,7 +2194,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "FM-5BPMnhm0",
|
||||
title: "Tanz aus der Reihe!",
|
||||
name: "Tanz aus der Reihe!",
|
||||
duration: Some(234),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2218,7 +2218,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "MnNZNfixTOw",
|
||||
title: "Wie soll ein Mensch das ertragen",
|
||||
name: "Wie soll ein Mensch das ertragen",
|
||||
duration: Some(278),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2242,7 +2242,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "qe80EeU8cT8",
|
||||
title: "Wann (MTV Unplugged) (feat. Cassandra Steen)",
|
||||
name: "Wann (MTV Unplugged) (feat. Cassandra Steen)",
|
||||
duration: Some(327),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2266,7 +2266,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "-s2-6KYgqpQ",
|
||||
title: "Narben",
|
||||
name: "Narben",
|
||||
duration: Some(264),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2290,7 +2290,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "RSlp874hESE",
|
||||
title: "Kollegah & Farid Bang - \"ZIEH DEN RUCKSACK AUS\" [ official Video ]",
|
||||
name: "Kollegah & Farid Bang - \"ZIEH DEN RUCKSACK AUS\" [ official Video ]",
|
||||
duration: Some(162),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2318,7 +2318,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "oTI3tRQ_-3k",
|
||||
title: "SDP - Wenn ich groß bin",
|
||||
name: "SDP - Wenn ich groß bin",
|
||||
duration: Some(225),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2342,7 +2342,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "_okA84gaEJw",
|
||||
title: "Von Party zu Party",
|
||||
name: "Von Party zu Party",
|
||||
duration: Some(221),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2366,7 +2366,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "pLHnnJRaP7Q",
|
||||
title: "Herzrasen (Original Radio Edit)",
|
||||
name: "Herzrasen (Original Radio Edit)",
|
||||
duration: Some(207),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2390,7 +2390,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "H2hGrsExuyc",
|
||||
title: "¿ Was hast du gedacht ?",
|
||||
name: "¿ Was hast du gedacht ?",
|
||||
duration: Some(188),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2414,7 +2414,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "RsZvjqG2lec",
|
||||
title: "Wenn Worte meine Sprache wären",
|
||||
name: "Wenn Worte meine Sprache wären",
|
||||
duration: Some(196),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2438,7 +2438,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "qYRCiQ6d35w",
|
||||
title: "Mörder (instrumental)",
|
||||
name: "Mörder (instrumental)",
|
||||
duration: Some(240),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -34,7 +34,7 @@ MusicPlaylist(
|
|||
items: [
|
||||
TrackItem(
|
||||
id: "X82TrticM4A",
|
||||
title: "Minecraft SHINE (Trailer)",
|
||||
name: "Minecraft SHINE (Trailer)",
|
||||
duration: Some(80),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -58,7 +58,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "RPGLMuxkLCs",
|
||||
title: "DAS LAGERFEUERLIED - Minecraft SHINE #001 [Deutsch/HD]",
|
||||
name: "DAS LAGERFEUERLIED - Minecraft SHINE #001 [Deutsch/HD]",
|
||||
duration: Some(1356),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -82,7 +82,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "z-ALpnnQLrk",
|
||||
title: "MAGISCHES FURZMONSTER - Minecraft SHINE #002 [Deutsch/HD]",
|
||||
name: "MAGISCHES FURZMONSTER - Minecraft SHINE #002 [Deutsch/HD]",
|
||||
duration: Some(1039),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -106,7 +106,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "_rrbTTv8zcQ",
|
||||
title: "UNTERIRDISCHE RIESENPILZHÖHLEN - Minecraft SHINE #003 [Deutsch/HD]",
|
||||
name: "UNTERIRDISCHE RIESENPILZHÖHLEN - Minecraft SHINE #003 [Deutsch/HD]",
|
||||
duration: Some(1447),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -130,7 +130,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "JE16OKTawLw",
|
||||
title: "BESTE AXT IM SPIEL GEFUNDEN?! - Minecraft SHINE #004 [Deutsch/HD]",
|
||||
name: "BESTE AXT IM SPIEL GEFUNDEN?! - Minecraft SHINE #004 [Deutsch/HD]",
|
||||
duration: Some(1238),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -154,7 +154,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "RQNY0Wzm7DQ",
|
||||
title: "ERZERAUSCH IM MINENSCHACHT - Minecraft SHINE #005 [Deutsch/HD]",
|
||||
name: "ERZERAUSCH IM MINENSCHACHT - Minecraft SHINE #005 [Deutsch/HD]",
|
||||
duration: Some(1405),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -178,7 +178,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "uhy24PKBkd0",
|
||||
title: "FUSIONSOFEN & ERSTER IM NETHER?! - Minecraft SHINE #006 [Deutsch/HD]",
|
||||
name: "FUSIONSOFEN & ERSTER IM NETHER?! - Minecraft SHINE #006 [Deutsch/HD]",
|
||||
duration: Some(1569),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -202,7 +202,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "OL1hQadBHfs",
|
||||
title: "EPISCHER ROGUEDUNGEON - Minecraft SHINE #007 [Deutsch/HD]",
|
||||
name: "EPISCHER ROGUEDUNGEON - Minecraft SHINE #007 [Deutsch/HD]",
|
||||
duration: Some(1534),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -226,7 +226,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Zge_SUfk0r8",
|
||||
title: "DIAMANTZOMBIES auf NETHEREBENE - Minecraft SHINE #008 [Deutsch/HD]",
|
||||
name: "DIAMANTZOMBIES auf NETHEREBENE - Minecraft SHINE #008 [Deutsch/HD]",
|
||||
duration: Some(1726),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -250,7 +250,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "yFGIeU_IDE4",
|
||||
title: "HÖLLISCHE SCHLACHT um 2 DIAMANTBLÖCKE - Minecraft SHINE #009 [Deutsch/HD]",
|
||||
name: "HÖLLISCHE SCHLACHT um 2 DIAMANTBLÖCKE - Minecraft SHINE #009 [Deutsch/HD]",
|
||||
duration: Some(1669),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -274,7 +274,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "P6MVqfQzPIg",
|
||||
title: "MAGISCHER OBSIDIANTOTEM?! - Minecraft SHINE #010 [Deutsch/HD]",
|
||||
name: "MAGISCHER OBSIDIANTOTEM?! - Minecraft SHINE #010 [Deutsch/HD]",
|
||||
duration: Some(1526),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -298,7 +298,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "9n0pLDn8Z_I",
|
||||
title: "GRÜNER FEUEROGER & WITHERWARZEN - Minecraft SHINE #011 [Deutsch/HD]",
|
||||
name: "GRÜNER FEUEROGER & WITHERWARZEN - Minecraft SHINE #011 [Deutsch/HD]",
|
||||
duration: Some(1482),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -322,7 +322,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "oXbx2YtIkeQ",
|
||||
title: "MYSTERIÖSES Grab & ONYX ohne ENDE!! - Minecraft SHINE #012 [Deutsch/HD]",
|
||||
name: "MYSTERIÖSES Grab & ONYX ohne ENDE!! - Minecraft SHINE #012 [Deutsch/HD]",
|
||||
duration: Some(1518),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -346,7 +346,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "pfBBTTwxo8Q",
|
||||
title: "ATLANTIS ENTDECKT!! - Minecraft SHINE #013 [Deutsch/HD]",
|
||||
name: "ATLANTIS ENTDECKT!! - Minecraft SHINE #013 [Deutsch/HD]",
|
||||
duration: Some(1479),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -370,7 +370,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "WxtRqzxSAh0",
|
||||
title: "ZUSAMMENFASSUNG & Nodop\'s ANGRIFF - Minecraft SHINE #014 [Deutsch/HD]",
|
||||
name: "ZUSAMMENFASSUNG & Nodop\'s ANGRIFF - Minecraft SHINE #014 [Deutsch/HD]",
|
||||
duration: Some(1902),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -394,7 +394,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "ianUckvxtLw",
|
||||
title: "FRIEDHOFDUNGEON mit NODÖPCHEN - Minecraft SHINE #016 [Deutsch/HD]",
|
||||
name: "FRIEDHOFDUNGEON mit NODÖPCHEN - Minecraft SHINE #016 [Deutsch/HD]",
|
||||
duration: Some(1766),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -418,7 +418,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "eb2Ghj1g1ic",
|
||||
title: "Die BESTE FALLE aller ZEITEN!! - Minecraft SHINE #015 [Deutsch/HD]",
|
||||
name: "Die BESTE FALLE aller ZEITEN!! - Minecraft SHINE #015 [Deutsch/HD]",
|
||||
duration: Some(1324),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -442,7 +442,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "8TpEsyVtCog",
|
||||
title: "MEGAGEMETZEL zu FÜNFT - Minecraft SHINE #017 [Deutsch/HD]",
|
||||
name: "MEGAGEMETZEL zu FÜNFT - Minecraft SHINE #017 [Deutsch/HD]",
|
||||
duration: Some(1629),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -466,7 +466,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "KD_WAei4LMg",
|
||||
title: "WITHER BOSSFIGHT - Minecraft SHINE #018 [Deutsch/HD]",
|
||||
name: "WITHER BOSSFIGHT - Minecraft SHINE #018 [Deutsch/HD]",
|
||||
duration: Some(1645),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -490,7 +490,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "qfpOCrtweKk",
|
||||
title: "LABERSTUNDE mit ArazhulHD - Minecraft SHINE #019 [Deutsch/HD]",
|
||||
name: "LABERSTUNDE mit ArazhulHD - Minecraft SHINE #019 [Deutsch/HD]",
|
||||
duration: Some(1052),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -514,7 +514,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "6gv3nrOA_bQ",
|
||||
title: "BUSRITUALE & Seltsame LEHRER - Minecraft SHINE #021 [Deutsch/HD]",
|
||||
name: "BUSRITUALE & Seltsame LEHRER - Minecraft SHINE #021 [Deutsch/HD]",
|
||||
duration: Some(1769),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -538,7 +538,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "waaic6UnkU8",
|
||||
title: "LEHM, LEHM und mehr LEEEHM!! - Minecraft SHINE #022 [Deutsch/HD]",
|
||||
name: "LEHM, LEHM und mehr LEEEHM!! - Minecraft SHINE #022 [Deutsch/HD]",
|
||||
duration: Some(1081),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -562,7 +562,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "lSy4MLC_uV4",
|
||||
title: "Neue DIMENSIONEN?? - Minecraft SHINE #023 [Deutsch/HD]",
|
||||
name: "Neue DIMENSIONEN?? - Minecraft SHINE #023 [Deutsch/HD]",
|
||||
duration: Some(1682),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -586,7 +586,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "BuN8-U_quok",
|
||||
title: "DUNGEONSTATUEN - Minecraft SHINE #024 [Deutsch/HD]",
|
||||
name: "DUNGEONSTATUEN - Minecraft SHINE #024 [Deutsch/HD]",
|
||||
duration: Some(1597),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -610,7 +610,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "g_UTG10nzaQ",
|
||||
title: "THYRIUMBOGEN & Dimensional DOORS - Minecraft SHINE #025 [Deutsch/HD]",
|
||||
name: "THYRIUMBOGEN & Dimensional DOORS - Minecraft SHINE #025 [Deutsch/HD]",
|
||||
duration: Some(1852),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -634,7 +634,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "kNykFWaDbGw",
|
||||
title: "MEIN ERSTER PVP KILL?! - Minecraft SHINE #026 [Deutsch/HD]",
|
||||
name: "MEIN ERSTER PVP KILL?! - Minecraft SHINE #026 [Deutsch/HD]",
|
||||
duration: Some(1869),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -658,7 +658,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "gJF7vxCYTgY",
|
||||
title: "SPELLBOUND FARM - Minecraft SHINE #027 [Deutsch/HD]",
|
||||
name: "SPELLBOUND FARM - Minecraft SHINE #027 [Deutsch/HD]",
|
||||
duration: Some(2161),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -682,7 +682,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "CodZMQ_Anc0",
|
||||
title: "VIEEELE bunte ZAUBERPILZE - Minecraft SHINE #028 [Deutsch/HD]",
|
||||
name: "VIEEELE bunte ZAUBERPILZE - Minecraft SHINE #028 [Deutsch/HD]",
|
||||
duration: Some(1768),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -706,7 +706,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "oKHMTKJdZ_M",
|
||||
title: "STREAMUPDATE & BIOMREISE - Minecraft SHINE #029 [Deutsch/HD]",
|
||||
name: "STREAMUPDATE & BIOMREISE - Minecraft SHINE #029 [Deutsch/HD]",
|
||||
duration: Some(1771),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -730,7 +730,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "--O_Eyok_eE",
|
||||
title: "AUF NACH TROPICRAFT - Minecraft SHINE #030 [Deutsch/HD]",
|
||||
name: "AUF NACH TROPICRAFT - Minecraft SHINE #030 [Deutsch/HD]",
|
||||
duration: Some(1661),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -754,7 +754,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "2bT3ljKMSo8",
|
||||
title: "SCHATZTRUHE GEFUNDEN!! - Minecraft SHINE #031 [Deutsch/HD]",
|
||||
name: "SCHATZTRUHE GEFUNDEN!! - Minecraft SHINE #031 [Deutsch/HD]",
|
||||
duration: Some(1429),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -778,7 +778,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "YRAX_slrbsI",
|
||||
title: "ZAUBERWALD und TROPISCHER DSCHUNGEL - Minecraft SHINE #032 [Deutsch/HD]",
|
||||
name: "ZAUBERWALD und TROPISCHER DSCHUNGEL - Minecraft SHINE #032 [Deutsch/HD]",
|
||||
duration: Some(1257),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -802,7 +802,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "aRRbCEwUSuw",
|
||||
title: "MESABIOM & JOUSTS - Minecraft SHINE #033 [Deutsch/HD]",
|
||||
name: "MESABIOM & JOUSTS - Minecraft SHINE #033 [Deutsch/HD]",
|
||||
duration: Some(1131),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -826,7 +826,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "5sV8SzTbJS8",
|
||||
title: "Komplette SMELTERY GEFUNDEN!! - Minecraft SHINE #034 [Deutsch/HD]",
|
||||
name: "Komplette SMELTERY GEFUNDEN!! - Minecraft SHINE #034 [Deutsch/HD]",
|
||||
duration: Some(1405),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -850,7 +850,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "ZxxZlU2o1TE",
|
||||
title: "ROGUEDUNGEON EXTREME - Minecraft SHINE #035 [Deutsch/HD]",
|
||||
name: "ROGUEDUNGEON EXTREME - Minecraft SHINE #035 [Deutsch/HD]",
|
||||
duration: Some(1555),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -874,7 +874,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "gIjo5at4AxE",
|
||||
title: "LEGENDÄRER LOOT - Minecraft SHINE #036 [Deutsch/HD]",
|
||||
name: "LEGENDÄRER LOOT - Minecraft SHINE #036 [Deutsch/HD]",
|
||||
duration: Some(1405),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -898,7 +898,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "NSGk7-kyeEU",
|
||||
title: "I BELIEVE I CAN FLY - Minecraft SHINE #037 [Deutsch/HD]",
|
||||
name: "I BELIEVE I CAN FLY - Minecraft SHINE #037 [Deutsch/HD]",
|
||||
duration: Some(829),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -922,7 +922,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "cgJtZ7Otc4Y",
|
||||
title: "ROGUEFRIEDHOF mit WITHERBOSS - Minecraft SHINE #038 [Deutsch/HD]",
|
||||
name: "ROGUEFRIEDHOF mit WITHERBOSS - Minecraft SHINE #038 [Deutsch/HD]",
|
||||
duration: Some(1392),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -946,7 +946,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "l5LQu3Q0nWY",
|
||||
title: "MONSTERCALYPSE & RETTUNGSAKTION - Minecraft SHINE #039 [Deutsch/HD]",
|
||||
name: "MONSTERCALYPSE & RETTUNGSAKTION - Minecraft SHINE #039 [Deutsch/HD]",
|
||||
duration: Some(1580),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -970,7 +970,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "YX4Z3ZlWUFc",
|
||||
title: "HINTERHALT von GEGNERN!! - Minecraft SHINE #040 [Deutsch/HD]",
|
||||
name: "HINTERHALT von GEGNERN!! - Minecraft SHINE #040 [Deutsch/HD]",
|
||||
duration: Some(1847),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -994,7 +994,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "LoyvqR41lKw",
|
||||
title: "CARPENTER\'s BLOCKS - Minecraft SHINE #041 [Deutsch/HD]",
|
||||
name: "CARPENTER\'s BLOCKS - Minecraft SHINE #041 [Deutsch/HD]",
|
||||
duration: Some(1524),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1018,7 +1018,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "HbQtMZbtx_Q",
|
||||
title: "DER ETERNAL FROST!! - Minecraft SHINE #043 [Deutsch/HD]",
|
||||
name: "DER ETERNAL FROST!! - Minecraft SHINE #043 [Deutsch/HD]",
|
||||
duration: Some(1514),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1042,7 +1042,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "0DHRbP9ecgw",
|
||||
title: "FROSTDUNGEONS in der OVERWORLD!! - Minecraft SHINE #044 [Deutsch/HD]",
|
||||
name: "FROSTDUNGEONS in der OVERWORLD!! - Minecraft SHINE #044 [Deutsch/HD]",
|
||||
duration: Some(1567),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1066,7 +1066,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "rFOFkvk-xus",
|
||||
title: "BOSSRÜSTUNG XXL - Minecraft SHINE #045 [Deutsch/HD]",
|
||||
name: "BOSSRÜSTUNG XXL - Minecraft SHINE #045 [Deutsch/HD]",
|
||||
duration: Some(2050),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1090,7 +1090,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "P8zxnSihJ_8",
|
||||
title: "ZAUBERN & TROLLEN mit Nodop - Minecraft SHINE #046 [Deutsch/HD]",
|
||||
name: "ZAUBERN & TROLLEN mit Nodop - Minecraft SHINE #046 [Deutsch/HD]",
|
||||
duration: Some(1828),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1114,7 +1114,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "RWgeHl9XkCY",
|
||||
title: "NACHHILFE für BALUI - Minecraft SHINE #047 [Deutsch/HD]",
|
||||
name: "NACHHILFE für BALUI - Minecraft SHINE #047 [Deutsch/HD]",
|
||||
duration: Some(1926),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1138,7 +1138,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "I1n539enNNY",
|
||||
title: "SPIELER GETÖTET!! - Minecraft SHINE #048 [Deutsch/HD]",
|
||||
name: "SPIELER GETÖTET!! - Minecraft SHINE #048 [Deutsch/HD]",
|
||||
duration: Some(1836),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1162,7 +1162,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "70VKekyZz5g",
|
||||
title: "VORBEREITUNG auf den DRACHEN - Minecraft SHINE #049 [Deutsch/HD]",
|
||||
name: "VORBEREITUNG auf den DRACHEN - Minecraft SHINE #049 [Deutsch/HD]",
|
||||
duration: Some(1916),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1186,7 +1186,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "2OWJ1bwFu6Y",
|
||||
title: "Donnernder ENDERDRACHENKAMPF - Minecraft SHINE #050 [Deutsch/HD]",
|
||||
name: "Donnernder ENDERDRACHENKAMPF - Minecraft SHINE #050 [Deutsch/HD]",
|
||||
duration: Some(1718),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1210,7 +1210,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "zLiSA2i-niw",
|
||||
title: "Superspitzhacke & Necrotic Bones - Minecraft SHINE #051 [Deutsch/HD]",
|
||||
name: "Superspitzhacke & Necrotic Bones - Minecraft SHINE #051 [Deutsch/HD]",
|
||||
duration: Some(1253),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1234,7 +1234,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "wyXlw7nMpko",
|
||||
title: "TREMEP, das ENDERAUGE!! - Minecraft SHINE #052 [Deutsch/HD]",
|
||||
name: "TREMEP, das ENDERAUGE!! - Minecraft SHINE #052 [Deutsch/HD]",
|
||||
duration: Some(1924),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1258,7 +1258,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "NrU4fhzvFpA",
|
||||
title: "TORNADO & ENDERPOKALYPSE!! - Minecraft SHINE #053 [Deutsch/HD]",
|
||||
name: "TORNADO & ENDERPOKALYPSE!! - Minecraft SHINE #053 [Deutsch/HD]",
|
||||
duration: Some(1654),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1282,7 +1282,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "1xhKegaA1hQ",
|
||||
title: "RIESIGE SMELTERY - Minecraft SHINE #054 [Deutsch/HD]",
|
||||
name: "RIESIGE SMELTERY - Minecraft SHINE #054 [Deutsch/HD]",
|
||||
duration: Some(1796),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1306,7 +1306,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "9F4lZ8psBtg",
|
||||
title: "TINKER\'s CONSTRUCT - Minecraft SHINE #055 [Deutsch/HD]",
|
||||
name: "TINKER\'s CONSTRUCT - Minecraft SHINE #055 [Deutsch/HD]",
|
||||
duration: Some(1514),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1330,7 +1330,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "G3uUtejX9to",
|
||||
title: "CUTLASS und HAMMERACTION - Minecraft SHINE #056 [Deutsch/HD]",
|
||||
name: "CUTLASS und HAMMERACTION - Minecraft SHINE #056 [Deutsch/HD]",
|
||||
duration: Some(1615),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1354,7 +1354,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "-0Xn5pViCss",
|
||||
title: "QUARZFESTIVAL - Minecraft SHINE #057 [Deutsch/HD]",
|
||||
name: "QUARZFESTIVAL - Minecraft SHINE #057 [Deutsch/HD]",
|
||||
duration: Some(1353),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1378,7 +1378,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "a7u71Fco99I",
|
||||
title: "DUALWITHERKAMPF & EXOSUIT - Minecraft SHINE #058 [Deutsch/HD]",
|
||||
name: "DUALWITHERKAMPF & EXOSUIT - Minecraft SHINE #058 [Deutsch/HD]",
|
||||
duration: Some(1377),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1402,7 +1402,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "H6uUbvcgKdk",
|
||||
title: "ALLE GETROLLT?! 1. APRIL!! - Minecraft SHINE #060 [Deutsch/HD]",
|
||||
name: "ALLE GETROLLT?! 1. APRIL!! - Minecraft SHINE #060 [Deutsch/HD]",
|
||||
duration: Some(1751),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1426,7 +1426,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "tPRTCauHtkw",
|
||||
title: "THAUMELONE - Minecraft SHINE #061 [Deutsch/HD]",
|
||||
name: "THAUMELONE - Minecraft SHINE #061 [Deutsch/HD]",
|
||||
duration: Some(1604),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1450,7 +1450,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "pMKAQExcarM",
|
||||
title: "ICH BIN EIN MAGIER!! - Minecraft SHINE #062 [Deutsch/HD]",
|
||||
name: "ICH BIN EIN MAGIER!! - Minecraft SHINE #062 [Deutsch/HD]",
|
||||
duration: Some(1202),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1474,7 +1474,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "7E-z-7KCdBI",
|
||||
title: "ENDER PORTER und SPELLBOUND - Minecraft SHINE #063 [Deutsch/HD]",
|
||||
name: "ENDER PORTER und SPELLBOUND - Minecraft SHINE #063 [Deutsch/HD]",
|
||||
duration: Some(1715),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1498,7 +1498,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "EPtbC0ZVddo",
|
||||
title: "PORTABLE HOLE & Melonenstatuen - Minecraft SHINE #064 [Deutsch/HD]",
|
||||
name: "PORTABLE HOLE & Melonenstatuen - Minecraft SHINE #064 [Deutsch/HD]",
|
||||
duration: Some(1696),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1522,7 +1522,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "TpPHng0eGJs",
|
||||
title: "ZUKUNFT des PROJEKTS - Minecraft SHINE #065 [Deutsch/HD]",
|
||||
name: "ZUKUNFT des PROJEKTS - Minecraft SHINE #065 [Deutsch/HD]",
|
||||
duration: Some(1215),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1546,7 +1546,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "rt2QFQwJYcs",
|
||||
title: "GIGANTISCHER METEOR!! - Minecraft SHINE #066 [Deutsch/HD]",
|
||||
name: "GIGANTISCHER METEOR!! - Minecraft SHINE #066 [Deutsch/HD]",
|
||||
duration: Some(1593),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1570,7 +1570,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "WPyfaztFDQ4",
|
||||
title: "Der EREBUS und die GHAST QUEEN - Minecraft SHINE #067 [Deutsch/HD]",
|
||||
name: "Der EREBUS und die GHAST QUEEN - Minecraft SHINE #067 [Deutsch/HD]",
|
||||
duration: Some(1687),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1594,7 +1594,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "5lmumP0DaUw",
|
||||
title: "MINI-BEST OF und KABOOM!! - Minecraft SHINE #069 (Finale) [Deutsch/HD]",
|
||||
name: "MINI-BEST OF und KABOOM!! - Minecraft SHINE #069 (Finale) [Deutsch/HD]",
|
||||
duration: Some(1044),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -36,7 +36,7 @@ MusicPlaylist(
|
|||
items: [
|
||||
TrackItem(
|
||||
id: "ospQ06jJe-I",
|
||||
title: "Lift Me Up (Visualizer)",
|
||||
name: "Lift Me Up (Visualizer)",
|
||||
duration: Some(197),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -60,7 +60,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "nBZlrbrBO1I",
|
||||
title: "Forget Me",
|
||||
name: "Forget Me",
|
||||
duration: Some(257),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -84,7 +84,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "AcTDlsUej2w",
|
||||
title: "Come Back Home (From \"Purple Hearts\")",
|
||||
name: "Come Back Home (From \"Purple Hearts\")",
|
||||
duration: Some(204),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -108,7 +108,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "k6ZoE4RrcDs",
|
||||
title: "Overpass Graffiti",
|
||||
name: "Overpass Graffiti",
|
||||
duration: Some(287),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -132,7 +132,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "2n5GKLdrTfk",
|
||||
title: "In The Stars (Lyric Video)",
|
||||
name: "In The Stars (Lyric Video)",
|
||||
duration: Some(217),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -156,7 +156,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "psuRGfAaju4",
|
||||
title: "Fireflies",
|
||||
name: "Fireflies",
|
||||
duration: Some(233),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -180,7 +180,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "_JGGLJMpVks",
|
||||
title: "TV",
|
||||
name: "TV",
|
||||
duration: Some(282),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -204,7 +204,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "1YUBbF24H44",
|
||||
title: "because i liked a boy (Official Video)",
|
||||
name: "because i liked a boy (Official Video)",
|
||||
duration: Some(206),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -228,7 +228,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "E0WRQpjckYg",
|
||||
title: "Older (feat. Sierra Deaton)",
|
||||
name: "Older (feat. Sierra Deaton)",
|
||||
duration: Some(197),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -252,7 +252,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "mqiH0ZSkM9I",
|
||||
title: "Hold Back the River",
|
||||
name: "Hold Back the River",
|
||||
duration: Some(247),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -276,7 +276,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "UAWcs5H-qgQ",
|
||||
title: "The A Team",
|
||||
name: "The A Team",
|
||||
duration: Some(290),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -300,7 +300,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "bqO3Y5e4Dow",
|
||||
title: "Hard For Me",
|
||||
name: "Hard For Me",
|
||||
duration: Some(173),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -324,7 +324,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "ouEezpuPc3A",
|
||||
title: "Don’t Give Up on Me (from “Five Feet Apart”)",
|
||||
name: "Don’t Give Up on Me (from “Five Feet Apart”)",
|
||||
duration: Some(216),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -348,7 +348,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "i-qT5n_5Mys",
|
||||
title: "Happiest Year",
|
||||
name: "Happiest Year",
|
||||
duration: Some(278),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -372,7 +372,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "PMGY8fLwess",
|
||||
title: "Falling Like The Stars",
|
||||
name: "Falling Like The Stars",
|
||||
duration: Some(256),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -396,7 +396,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "2ebfSItB0oM",
|
||||
title: "Take Me Home",
|
||||
name: "Take Me Home",
|
||||
duration: Some(273),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -420,7 +420,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "c4BLVznuWnU",
|
||||
title: "Lego House",
|
||||
name: "Lego House",
|
||||
duration: Some(246),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -444,7 +444,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "c0wUKCekI34",
|
||||
title: "Another Day (Official Music Video)",
|
||||
name: "Another Day (Official Music Video)",
|
||||
duration: Some(188),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -468,7 +468,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "vNfgVjZF8_4",
|
||||
title: "Someday (Official Music Video)",
|
||||
name: "Someday (Official Music Video)",
|
||||
duration: Some(192),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -492,7 +492,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "XPpTgCho5ZA",
|
||||
title: "This Love Closed Captioned",
|
||||
name: "This Love Closed Captioned",
|
||||
duration: Some(206),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -516,7 +516,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "-oqAU5VxFWs",
|
||||
title: "Mr. Jones",
|
||||
name: "Mr. Jones",
|
||||
duration: Some(270),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -540,7 +540,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "CA1VHbdq5hY",
|
||||
title: "Lie Again (Official Music Video)",
|
||||
name: "Lie Again (Official Music Video)",
|
||||
duration: Some(236),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -564,7 +564,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "aNzCDt2eidg",
|
||||
title: "Skinny Love",
|
||||
name: "Skinny Love",
|
||||
duration: Some(214),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -588,7 +588,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "A48hOToMuRE",
|
||||
title: "Outnumbered",
|
||||
name: "Outnumbered",
|
||||
duration: Some(247),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -612,7 +612,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "qHm9MG9xw1o",
|
||||
title: "Secrets",
|
||||
name: "Secrets",
|
||||
duration: Some(233),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -636,7 +636,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "74NhLkjIeMs",
|
||||
title: "Yours",
|
||||
name: "Yours",
|
||||
duration: Some(201),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -660,7 +660,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "EptPhiK_q0E",
|
||||
title: "Let Somebody Go (Lyric Video) (feat. Selena Gomez)",
|
||||
name: "Let Somebody Go (Lyric Video) (feat. Selena Gomez)",
|
||||
duration: Some(242),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -684,7 +684,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "44u7_wQ1s0g",
|
||||
title: "Wonder Woman",
|
||||
name: "Wonder Woman",
|
||||
duration: Some(167),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -708,7 +708,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "toOyxylnNkI",
|
||||
title: "How Could You (Official Audio)",
|
||||
name: "How Could You (Official Audio)",
|
||||
duration: Some(186),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -732,7 +732,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "ljXSjIph5ZM",
|
||||
title: "Too Much to Ask",
|
||||
name: "Too Much to Ask",
|
||||
duration: Some(226),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -756,7 +756,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "DJFMRLIe-0o",
|
||||
title: "Lie to Me",
|
||||
name: "Lie to Me",
|
||||
duration: Some(191),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -784,7 +784,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "goqqohUitmw",
|
||||
title: "People Watching (Official Video)",
|
||||
name: "People Watching (Official Video)",
|
||||
duration: Some(210),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -808,7 +808,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "_LwX7GCE5rI",
|
||||
title: "Slide Away",
|
||||
name: "Slide Away",
|
||||
duration: Some(236),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -832,7 +832,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "7KHPC-kEQOA",
|
||||
title: "WDIA (Would Do It Again) (Official Lyric Video)",
|
||||
name: "WDIA (Would Do It Again) (Official Lyric Video)",
|
||||
duration: Some(193),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -860,7 +860,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "26PAgklYYvo",
|
||||
title: "Broken Strings (feat. Nelly Furtado)",
|
||||
name: "Broken Strings (feat. Nelly Furtado)",
|
||||
duration: Some(261),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -884,7 +884,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "bO3S8CKafbE",
|
||||
title: "Put A Little Love On Me (Official)",
|
||||
name: "Put A Little Love On Me (Official)",
|
||||
duration: Some(235),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -908,7 +908,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "tMsbeyeTtpk",
|
||||
title: "I\'ll Never Not Love You",
|
||||
name: "I\'ll Never Not Love You",
|
||||
duration: Some(245),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -932,7 +932,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "fvXn3rmhdc4",
|
||||
title: "Better Alone",
|
||||
name: "Better Alone",
|
||||
duration: Some(209),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -956,7 +956,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "2p4n7JgdCsc",
|
||||
title: "As If (Official Video)",
|
||||
name: "As If (Official Video)",
|
||||
duration: Some(336),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -980,7 +980,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "HtNS1afUOnE",
|
||||
title: "Stop And Stare Closed Captioned",
|
||||
name: "Stop And Stare Closed Captioned",
|
||||
duration: Some(295),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1004,7 +1004,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "ufbDvPaVrzs",
|
||||
title: "Innocence and Sadness (Live From Mission Sound Studios, Brook...",
|
||||
name: "Innocence and Sadness (Live From Mission Sound Studios, Brook...",
|
||||
duration: Some(252),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1028,7 +1028,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "H1_icnjg6MY",
|
||||
title: "Blue",
|
||||
name: "Blue",
|
||||
duration: Some(207),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1052,7 +1052,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "7Lna4Hu4-AQ",
|
||||
title: "Butterflies",
|
||||
name: "Butterflies",
|
||||
duration: Some(195),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1080,7 +1080,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "K9qu2QMBguw",
|
||||
title: "I See Fire (From \"The Hobbit - The Desolation Of Smaug\")",
|
||||
name: "I See Fire (From \"The Hobbit - The Desolation Of Smaug\")",
|
||||
duration: Some(300),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1112,7 +1112,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "uWeqeQkjLto",
|
||||
title: "1973",
|
||||
name: "1973",
|
||||
duration: Some(234),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1136,7 +1136,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "X_ZOGHUWwqE",
|
||||
title: "Kids Again",
|
||||
name: "Kids Again",
|
||||
duration: Some(214),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1160,7 +1160,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "mHeK0Cwr9sg",
|
||||
title: "Hero",
|
||||
name: "Hero",
|
||||
duration: Some(197),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1184,7 +1184,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "0Bf3CJZ4hvg",
|
||||
title: "When You Love Someone",
|
||||
name: "When You Love Someone",
|
||||
duration: Some(227),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1208,7 +1208,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "7TCncxWNcPU",
|
||||
title: "Mr. Forgettable",
|
||||
name: "Mr. Forgettable",
|
||||
duration: Some(188),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1232,7 +1232,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "PxNYvk_0Onw",
|
||||
title: "Please Don\'t Say You Love Me",
|
||||
name: "Please Don\'t Say You Love Me",
|
||||
duration: Some(208),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1256,7 +1256,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "WLoWBe9BRP4",
|
||||
title: "Good Without (Official Music Video)",
|
||||
name: "Good Without (Official Music Video)",
|
||||
duration: Some(187),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1280,7 +1280,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "1XYLKoEETVA",
|
||||
title: "Hold Me Like You Used To",
|
||||
name: "Hold Me Like You Used To",
|
||||
duration: Some(193),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1304,7 +1304,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Ghl_vkEV3tc",
|
||||
title: "Mr. Percocet (Official Video)",
|
||||
name: "Mr. Percocet (Official Video)",
|
||||
duration: Some(193),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1328,7 +1328,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "5qHRMFQ0pLg",
|
||||
title: "Dreamer",
|
||||
name: "Dreamer",
|
||||
duration: Some(182),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1352,7 +1352,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "X-vispdELDo",
|
||||
title: "Survive My Own Mind (Official Music Video)",
|
||||
name: "Survive My Own Mind (Official Music Video)",
|
||||
duration: Some(199),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1376,7 +1376,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "il_L6c_fOvs",
|
||||
title: "amnesia - Camylio (Visualizer)",
|
||||
name: "amnesia - Camylio (Visualizer)",
|
||||
duration: Some(173),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1400,7 +1400,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "hCjcgoubkPM",
|
||||
title: "Mess Her Up (Official Video)",
|
||||
name: "Mess Her Up (Official Video)",
|
||||
duration: Some(226),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1424,7 +1424,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "nwXlRq_QyTI",
|
||||
title: "A Little Bit Yours (Mandarin Version) (feat. Eric Chou)",
|
||||
name: "A Little Bit Yours (Mandarin Version) (feat. Eric Chou)",
|
||||
duration: Some(246),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1448,7 +1448,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "ZdsER1S3t8k",
|
||||
title: "Hurt Somebody",
|
||||
name: "Hurt Somebody",
|
||||
duration: Some(175),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1476,7 +1476,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "fyrsExw_LUg",
|
||||
title: "Bad",
|
||||
name: "Bad",
|
||||
duration: Some(243),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1500,7 +1500,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "BS4t017LSoA",
|
||||
title: "Bad Habits (Acoustic Version)",
|
||||
name: "Bad Habits (Acoustic Version)",
|
||||
duration: Some(233),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1532,7 +1532,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "0AYzzzBaPBI",
|
||||
title: "They Own This Town",
|
||||
name: "They Own This Town",
|
||||
duration: Some(246),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1556,7 +1556,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "zM0K3LC7Aak",
|
||||
title: "Avalanche (Live Session)",
|
||||
name: "Avalanche (Live Session)",
|
||||
duration: Some(220),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1580,7 +1580,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "1le0xDbrVj8",
|
||||
title: "True Romance",
|
||||
name: "True Romance",
|
||||
duration: Some(244),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1604,7 +1604,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "RdFaKz71-5M",
|
||||
title: "LET THE GRASS GROW (Visualizer)",
|
||||
name: "LET THE GRASS GROW (Visualizer)",
|
||||
duration: Some(181),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1628,7 +1628,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "d6hUByfuhM4",
|
||||
title: "Colours Of You",
|
||||
name: "Colours Of You",
|
||||
duration: Some(218),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1652,7 +1652,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "-uxeu0MbNR0",
|
||||
title: "oh, mexico",
|
||||
name: "oh, mexico",
|
||||
duration: Some(191),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1676,7 +1676,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "35VK8yonvsc",
|
||||
title: "Everybody Needs Someone",
|
||||
name: "Everybody Needs Someone",
|
||||
duration: Some(216),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1700,7 +1700,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "ELD3aRzbVQg",
|
||||
title: "Run to You (Marcapasos & Janosh Remix)",
|
||||
name: "Run to You (Marcapasos & Janosh Remix)",
|
||||
duration: Some(201),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1724,7 +1724,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "BD7HwXv18aU",
|
||||
title: "Blue - Magnetic (packshot video)",
|
||||
name: "Blue - Magnetic (packshot video)",
|
||||
duration: Some(192),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1748,7 +1748,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "WJJLfUwIVR4",
|
||||
title: "christina perri - home [official audio]",
|
||||
name: "christina perri - home [official audio]",
|
||||
duration: Some(219),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1772,7 +1772,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "NjW1S0WIiJw",
|
||||
title: "FREE",
|
||||
name: "FREE",
|
||||
duration: Some(223),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1796,7 +1796,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "-4szr0EMrgk",
|
||||
title: "32 Floors",
|
||||
name: "32 Floors",
|
||||
duration: Some(185),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1820,7 +1820,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "88NWeOGrxys",
|
||||
title: "The Middle",
|
||||
name: "The Middle",
|
||||
duration: Some(199),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1852,7 +1852,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "BxqtS-7GxFM",
|
||||
title: "Never Seen the Rain (alternate version)",
|
||||
name: "Never Seen the Rain (alternate version)",
|
||||
duration: Some(296),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1876,7 +1876,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "KUKt_LbaBnM",
|
||||
title: "Better Now (Official Audio)",
|
||||
name: "Better Now (Official Audio)",
|
||||
duration: Some(200),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1900,7 +1900,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "bhL7A8k6kU8",
|
||||
title: "Madelyn",
|
||||
name: "Madelyn",
|
||||
duration: Some(203),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1924,7 +1924,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "mUN36hFtazE",
|
||||
title: "All My Heroes",
|
||||
name: "All My Heroes",
|
||||
duration: Some(206),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1948,7 +1948,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "dcBZP_pt0uY",
|
||||
title: "Little Bit of Love (Strings)",
|
||||
name: "Little Bit of Love (Strings)",
|
||||
duration: Some(231),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1972,7 +1972,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "m342B1Vv3tM",
|
||||
title: "Dust (feat. Betty Who)",
|
||||
name: "Dust (feat. Betty Who)",
|
||||
duration: Some(202),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1996,7 +1996,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "N_5RiRBvPSk",
|
||||
title: "SHIVERS (image of you)",
|
||||
name: "SHIVERS (image of you)",
|
||||
duration: Some(178),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2028,7 +2028,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Q5kH0wg_sKo",
|
||||
title: "Will You Love Me Tomorrow",
|
||||
name: "Will You Love Me Tomorrow",
|
||||
duration: Some(173),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2060,7 +2060,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "j9zlc5zufl8",
|
||||
title: "The Game",
|
||||
name: "The Game",
|
||||
duration: Some(181),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2092,7 +2092,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "ufxjiU7BgR4",
|
||||
title: "Fall Into Me",
|
||||
name: "Fall Into Me",
|
||||
duration: Some(224),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2124,7 +2124,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "7OfB_8rrtug",
|
||||
title: "Grace (We All Try)",
|
||||
name: "Grace (We All Try)",
|
||||
duration: Some(206),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2156,7 +2156,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "UqmvAc81XuM",
|
||||
title: "Don\'t Lay It All On Me",
|
||||
name: "Don\'t Lay It All On Me",
|
||||
duration: Some(232),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2188,7 +2188,7 @@ MusicPlaylist(
|
|||
),
|
||||
TrackItem(
|
||||
id: "QDULTFB8gSY",
|
||||
title: "Words as Weapons",
|
||||
name: "Words as Weapons",
|
||||
duration: Some(199),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -6,7 +6,7 @@ MusicSearchResult(
|
|||
tracks: [
|
||||
TrackItem(
|
||||
id: "ZeerrnuLi5E",
|
||||
title: "Black Mamba",
|
||||
name: "Black Mamba",
|
||||
duration: Some(230),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -30,7 +30,7 @@ MusicSearchResult(
|
|||
),
|
||||
TrackItem(
|
||||
id: "BL-aIpCLWnU",
|
||||
title: "Black Mamba",
|
||||
name: "Black Mamba",
|
||||
duration: Some(175),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -62,7 +62,7 @@ MusicSearchResult(
|
|||
),
|
||||
TrackItem(
|
||||
id: "cATe8Toht70",
|
||||
title: "Black Mamba",
|
||||
name: "Black Mamba",
|
||||
duration: Some(74),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -98,7 +98,7 @@ MusicSearchResult(
|
|||
),
|
||||
TrackItem(
|
||||
id: "WwNKyoizf8k",
|
||||
title: "BLACK MAMBA",
|
||||
name: "BLACK MAMBA",
|
||||
duration: Some(182),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -130,7 +130,7 @@ MusicSearchResult(
|
|||
),
|
||||
TrackItem(
|
||||
id: "yQUU29NwNF4",
|
||||
title: "aespa(에스파) - Black Mamba @인기가요 inkigayo 20201122",
|
||||
name: "aespa(에스파) - Black Mamba @인기가요 inkigayo 20201122",
|
||||
duration: Some(213),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -154,7 +154,7 @@ MusicSearchResult(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Ky5RT5oGg0w",
|
||||
title: "Black Mamba",
|
||||
name: "Black Mamba",
|
||||
duration: Some(287),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -178,7 +178,7 @@ MusicSearchResult(
|
|||
),
|
||||
TrackItem(
|
||||
id: "dz9bieeSVRw",
|
||||
title: "aespa - Black Mamba (Music Bank) | KBS WORLD TV 201127",
|
||||
name: "aespa - Black Mamba (Music Bank) | KBS WORLD TV 201127",
|
||||
duration: Some(192),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -6,7 +6,7 @@ MusicSearchResult(
|
|||
tracks: [
|
||||
TrackItem(
|
||||
id: "ITdJEc_81h4",
|
||||
title: "Pop (Radio Version)",
|
||||
name: "Pop (Radio Version)",
|
||||
duration: Some(176),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -38,7 +38,7 @@ MusicSearchResult(
|
|||
),
|
||||
TrackItem(
|
||||
id: "VHLPvrlclmQ",
|
||||
title: "Pop im Radio",
|
||||
name: "Pop im Radio",
|
||||
duration: Some(224),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -70,7 +70,7 @@ MusicSearchResult(
|
|||
),
|
||||
TrackItem(
|
||||
id: "R9TPed_ohKM",
|
||||
title: "POP!",
|
||||
name: "POP!",
|
||||
duration: Some(169),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -102,7 +102,7 @@ MusicSearchResult(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Ej1nxBxFSKc",
|
||||
title: "Non-Stop-Pop FM (Hosted by Cara Delevingne) [Grand Theft Auto V] | Pop, R&B, Dance-pop Music Mix",
|
||||
name: "Non-Stop-Pop FM (Hosted by Cara Delevingne) [Grand Theft Auto V] | Pop, R&B, Dance-pop Music Mix",
|
||||
duration: Some(8752),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -126,7 +126,7 @@ MusicSearchResult(
|
|||
),
|
||||
TrackItem(
|
||||
id: "26OrUhkRa3c",
|
||||
title: "Top Hits 2020 Video Mix (CLEAN) | Hip Hop 2020 - (POP HITS 2020, TOP 40 HITS, BEST POP HITS,TOP 40)",
|
||||
name: "Top Hits 2020 Video Mix (CLEAN) | Hip Hop 2020 - (POP HITS 2020, TOP 40 HITS, BEST POP HITS,TOP 40)",
|
||||
duration: Some(10012),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -150,7 +150,7 @@ MusicSearchResult(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Idk-oFqn3kM",
|
||||
title: "THE BEST CHARTS POP HITS 2021 I THE BEST MUSIC RADIO CHARTS I",
|
||||
name: "THE BEST CHARTS POP HITS 2021 I THE BEST MUSIC RADIO CHARTS I",
|
||||
duration: Some(8795),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -6,7 +6,7 @@ MusicSearchResult(
|
|||
tracks: [
|
||||
TrackItem(
|
||||
id: "6485PhOtHzY",
|
||||
title: "Lieblingsmensch",
|
||||
name: "Lieblingsmensch",
|
||||
duration: Some(191),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -38,7 +38,7 @@ MusicSearchResult(
|
|||
),
|
||||
TrackItem(
|
||||
id: "pt0YvfnhGgI",
|
||||
title: "Lieblingsmensch",
|
||||
name: "Lieblingsmensch",
|
||||
duration: Some(524),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -70,7 +70,7 @@ MusicSearchResult(
|
|||
),
|
||||
TrackItem(
|
||||
id: "0yPnvetCm-U",
|
||||
title: "Lieblingsmensch",
|
||||
name: "Lieblingsmensch",
|
||||
duration: Some(174),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -102,7 +102,7 @@ MusicSearchResult(
|
|||
),
|
||||
TrackItem(
|
||||
id: "3ryohiCVq3M",
|
||||
title: "Namika - Lieblingsmensch (Official Video)",
|
||||
name: "Namika - Lieblingsmensch (Official Video)",
|
||||
duration: Some(191),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -126,7 +126,7 @@ MusicSearchResult(
|
|||
),
|
||||
TrackItem(
|
||||
id: "6Bt1KeMNqvc",
|
||||
title: "Lieblingsmensch Namika Lyrics",
|
||||
name: "Lieblingsmensch Namika Lyrics",
|
||||
duration: Some(188),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -150,7 +150,7 @@ MusicSearchResult(
|
|||
),
|
||||
TrackItem(
|
||||
id: "5YQRHUItXTI",
|
||||
title: "Namika - Lieblingsmensch 1 Hour Version",
|
||||
name: "Namika - Lieblingsmensch 1 Hour Version",
|
||||
duration: Some(3801),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -8,7 +8,7 @@ MusicSearchFiltered(
|
|||
items: [
|
||||
TrackItem(
|
||||
id: "BL-aIpCLWnU",
|
||||
title: "Black Mamba",
|
||||
name: "Black Mamba",
|
||||
duration: Some(175),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -40,7 +40,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "cATe8Toht70",
|
||||
title: "Black Mamba",
|
||||
name: "Black Mamba",
|
||||
duration: Some(74),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -76,7 +76,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "0I1UpXSYdOQ",
|
||||
title: "Black Mamba (Orchestra Version)",
|
||||
name: "Black Mamba (Orchestra Version)",
|
||||
duration: Some(291),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -108,7 +108,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "9G2tG8V5_PY",
|
||||
title: "Black Mamba",
|
||||
name: "Black Mamba",
|
||||
duration: Some(210),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -140,7 +140,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "WwNKyoizf8k",
|
||||
title: "BLACK MAMBA",
|
||||
name: "BLACK MAMBA",
|
||||
duration: Some(182),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -172,7 +172,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "kS1o36LXQkc",
|
||||
title: "Black Mamba",
|
||||
name: "Black Mamba",
|
||||
duration: Some(299),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -204,7 +204,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "UQQ6L1j6mXE",
|
||||
title: "Black Mamba",
|
||||
name: "Black Mamba",
|
||||
duration: Some(122),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -236,7 +236,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "9l9dCro-7l8",
|
||||
title: "Black Mamba",
|
||||
name: "Black Mamba",
|
||||
duration: Some(246),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -268,7 +268,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "S_PRpDtgUfI",
|
||||
title: "Black Mamba",
|
||||
name: "Black Mamba",
|
||||
duration: Some(286),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -300,7 +300,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Xt_ReZc0gnw",
|
||||
title: "Black Mamba",
|
||||
name: "Black Mamba",
|
||||
duration: Some(179),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -332,7 +332,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "diN3WCxpqis",
|
||||
title: "Black Mamba",
|
||||
name: "Black Mamba",
|
||||
duration: Some(376),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -364,7 +364,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "9q3FfH_57Rc",
|
||||
title: "Black Mamba",
|
||||
name: "Black Mamba",
|
||||
duration: Some(213),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -396,7 +396,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "U29V08A9yBs",
|
||||
title: "BLCK MAMBA",
|
||||
name: "BLCK MAMBA",
|
||||
duration: Some(166),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -432,7 +432,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "HHEKbGlLoEM",
|
||||
title: "Black Mamba",
|
||||
name: "Black Mamba",
|
||||
duration: Some(215),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -464,7 +464,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "qE_dGvQG1rU",
|
||||
title: "Told Black",
|
||||
name: "Told Black",
|
||||
duration: Some(106),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -496,7 +496,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "1tyPs3ccT7E",
|
||||
title: "Black Mamba",
|
||||
name: "Black Mamba",
|
||||
duration: Some(414),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -532,7 +532,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "6pSmQ-MHKbg",
|
||||
title: "Black Mamba Jiu Jitsu (feat. Blackwolf SR & OnenD)",
|
||||
name: "Black Mamba Jiu Jitsu (feat. Blackwolf SR & OnenD)",
|
||||
duration: Some(188),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -564,7 +564,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "rNsISA-kWzM",
|
||||
title: "Black Mamba Dub",
|
||||
name: "Black Mamba Dub",
|
||||
duration: Some(248),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -596,7 +596,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "AdvPpJVvyEg",
|
||||
title: "Black Mamba",
|
||||
name: "Black Mamba",
|
||||
duration: Some(126),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -628,7 +628,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "7q7o-kjIKpo",
|
||||
title: "Black Mamba",
|
||||
name: "Black Mamba",
|
||||
duration: Some(126),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -8,7 +8,7 @@ MusicSearchFiltered(
|
|||
items: [
|
||||
TrackItem(
|
||||
id: "LYUESTEwXiU",
|
||||
title: "Am sichersten seid ihr im Auto",
|
||||
name: "Am sichersten seid ihr im Auto",
|
||||
duration: Some(198),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -44,7 +44,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "OJ5ZittaTCk",
|
||||
title: "Am sichersten sind wir zu Hause",
|
||||
name: "Am sichersten sind wir zu Hause",
|
||||
duration: Some(193),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -76,7 +76,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "H199HKaUk3g",
|
||||
title: "Am sichersten sind wir zu Hause (Live)",
|
||||
name: "Am sichersten sind wir zu Hause (Live)",
|
||||
duration: Some(180),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -108,7 +108,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "UlNOkZEcSjQ",
|
||||
title: "Fragen an einen Rollstuhlfahrer",
|
||||
name: "Fragen an einen Rollstuhlfahrer",
|
||||
duration: Some(464),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -140,7 +140,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "L61sF-655Zw",
|
||||
title: "Urlaub",
|
||||
name: "Urlaub",
|
||||
duration: Some(171),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -172,7 +172,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "bOK90e8P3k0",
|
||||
title: "Endlich wieder Skifahrn",
|
||||
name: "Endlich wieder Skifahrn",
|
||||
duration: Some(172),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -204,7 +204,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "oRHLx2mc2zY",
|
||||
title: "#50_Sie werden ständig unterschätzt_ Seien Sie froh!.3 & #51_Unsere Schulen produzieren Lebensuntüchtige.1 - #Malehrlich: 52 ungeschminkte Impulse einer Unternehmerin",
|
||||
name: "#50_Sie werden ständig unterschätzt_ Seien Sie froh!.3 & #51_Unsere Schulen produzieren Lebensuntüchtige.1 - #Malehrlich: 52 ungeschminkte Impulse einer Unternehmerin",
|
||||
duration: Some(145),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -8,7 +8,7 @@ MusicSearchFiltered(
|
|||
items: [
|
||||
TrackItem(
|
||||
id: "6485PhOtHzY",
|
||||
title: "Lieblingsmensch",
|
||||
name: "Lieblingsmensch",
|
||||
duration: Some(191),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -40,7 +40,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "pt0YvfnhGgI",
|
||||
title: "Lieblingsmensch",
|
||||
name: "Lieblingsmensch",
|
||||
duration: Some(524),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -72,7 +72,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "VinJmH-uidY",
|
||||
title: "Lieblingsmensch",
|
||||
name: "Lieblingsmensch",
|
||||
duration: Some(203),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -104,7 +104,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "YmSmymHRnEE",
|
||||
title: "Lieblingsmensch (Edit)",
|
||||
name: "Lieblingsmensch (Edit)",
|
||||
duration: Some(220),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -136,7 +136,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "TgfIbiHCOLo",
|
||||
title: "Lieblingsmensch",
|
||||
name: "Lieblingsmensch",
|
||||
duration: Some(211),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -168,7 +168,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "lCi6N_uq3vE",
|
||||
title: "Lieblingsmensch",
|
||||
name: "Lieblingsmensch",
|
||||
duration: Some(209),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -200,7 +200,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "QIjqe2B3RdQ",
|
||||
title: "Lieblingsmensch",
|
||||
name: "Lieblingsmensch",
|
||||
duration: Some(184),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -232,7 +232,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "q2pUotlXPeM",
|
||||
title: "Lieblingsmensch (Beatgees Remix)",
|
||||
name: "Lieblingsmensch (Beatgees Remix)",
|
||||
duration: Some(199),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -264,7 +264,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "0yPnvetCm-U",
|
||||
title: "Lieblingsmensch",
|
||||
name: "Lieblingsmensch",
|
||||
duration: Some(174),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -296,7 +296,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "EU5Vly60VGU",
|
||||
title: "Lieblingsmensch",
|
||||
name: "Lieblingsmensch",
|
||||
duration: Some(205),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -328,7 +328,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "UnxQ0TI4IMs",
|
||||
title: "Lieblingsmensch (Intrumental)",
|
||||
name: "Lieblingsmensch (Intrumental)",
|
||||
duration: Some(190),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -360,7 +360,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "ufpny1KxwcU",
|
||||
title: "Lieblingsmensch",
|
||||
name: "Lieblingsmensch",
|
||||
duration: Some(196),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -392,7 +392,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "duzWgZFJNwA",
|
||||
title: "Lieblingsmensch (Übernice Remix)",
|
||||
name: "Lieblingsmensch (Übernice Remix)",
|
||||
duration: Some(184),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -424,7 +424,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "rnXq-1n0lt0",
|
||||
title: "Lieblingsmensch",
|
||||
name: "Lieblingsmensch",
|
||||
duration: Some(223),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -456,7 +456,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "vHkqdC6-rOI",
|
||||
title: "Lieblingsmensch",
|
||||
name: "Lieblingsmensch",
|
||||
duration: Some(259),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -488,7 +488,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "nTlceSET_b8",
|
||||
title: "Lieblingsmensch",
|
||||
name: "Lieblingsmensch",
|
||||
duration: Some(190),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -520,7 +520,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "D8GhmRiIfxI",
|
||||
title: "Lieblingsmensch",
|
||||
name: "Lieblingsmensch",
|
||||
duration: Some(173),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -552,7 +552,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "01CS-jTaY1U",
|
||||
title: "Je Ne Parle Pas Français (Instrumental)",
|
||||
name: "Je Ne Parle Pas Français (Instrumental)",
|
||||
duration: Some(196),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -584,7 +584,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "2sKkKKKXO28",
|
||||
title: "Lieblingsmensch",
|
||||
name: "Lieblingsmensch",
|
||||
duration: Some(190),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -616,7 +616,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "czlgl6n9voM",
|
||||
title: "Lieblingsmensch (Live @ DELUXE MUSIC SESSION)",
|
||||
name: "Lieblingsmensch (Live @ DELUXE MUSIC SESSION)",
|
||||
duration: Some(176),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -8,7 +8,7 @@ MusicSearchFiltered(
|
|||
items: [
|
||||
TrackItem(
|
||||
id: "ZeerrnuLi5E",
|
||||
title: "Black Mamba",
|
||||
name: "Black Mamba",
|
||||
duration: Some(230),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -32,7 +32,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "vbl9KrZxOF8",
|
||||
title: "Black Mamba DJ set - Boko! Boko! | @Beatport Live",
|
||||
name: "Black Mamba DJ set - Boko! Boko! | @Beatport Live",
|
||||
duration: Some(4447),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -56,7 +56,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "eMfROJt0a7Q",
|
||||
title: "aespa - \"Black Mamba\" @ KAMP LA 2022 Day 2",
|
||||
name: "aespa - \"Black Mamba\" @ KAMP LA 2022 Day 2",
|
||||
duration: Some(198),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -80,7 +80,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "1ktLEhfkBCI",
|
||||
title: "ANKATHIE KOI - BLACK MAMBA (official)",
|
||||
name: "ANKATHIE KOI - BLACK MAMBA (official)",
|
||||
duration: Some(230),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -104,7 +104,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "2hAlp3Khsnk",
|
||||
title: "The Black Mamba - Love Is On My Side - Portugal 🇵🇹 - Official Video - Eurovision 2021",
|
||||
name: "The Black Mamba - Love Is On My Side - Portugal 🇵🇹 - Official Video - Eurovision 2021",
|
||||
duration: Some(189),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -128,7 +128,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "CHixjhwY0ek",
|
||||
title: "aespa, Black Mamba (에스파, Black Mamba) with Goyang Philharmonic Orchestra [UN DAY CONCERT 2021]",
|
||||
name: "aespa, Black Mamba (에스파, Black Mamba) with Goyang Philharmonic Orchestra [UN DAY CONCERT 2021]",
|
||||
duration: Some(238),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -152,7 +152,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "8YXKgZ393Ec",
|
||||
title: "Kronos - Black Mamba",
|
||||
name: "Kronos - Black Mamba",
|
||||
duration: Some(157),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -176,7 +176,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "KFNznAXnjXc",
|
||||
title: "AESPA - Black Mamba (Teaser Demo/Instrumental)",
|
||||
name: "AESPA - Black Mamba (Teaser Demo/Instrumental)",
|
||||
duration: Some(112),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -200,7 +200,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "hDhJeJZmTDA",
|
||||
title: "aespa (에스파) - Black Mamba | INK Incheon K-Pop Concert | MTV Asia",
|
||||
name: "aespa (에스파) - Black Mamba | INK Incheon K-Pop Concert | MTV Asia",
|
||||
duration: Some(178),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -224,7 +224,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "6kKSDXiip_8",
|
||||
title: "aespa エスパ - Black Mamba",
|
||||
name: "aespa エスパ - Black Mamba",
|
||||
duration: Some(185),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -248,7 +248,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "vfzlr70ogaI",
|
||||
title: "aespa(에스파) - Black Mamba (Music Bank) | KBS WORLD TV 201211",
|
||||
name: "aespa(에스파) - Black Mamba (Music Bank) | KBS WORLD TV 201211",
|
||||
duration: Some(190),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -272,7 +272,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Fjth6cKGI88",
|
||||
title: "aespa, Black Mamba\u{a0}(에스파, Black Mamba) [THE SHOW 201208]",
|
||||
name: "aespa, Black Mamba\u{a0}(에스파, Black Mamba) [THE SHOW 201208]",
|
||||
duration: Some(179),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -296,7 +296,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "fznwvW9Kn4s",
|
||||
title: "Love Is Dope",
|
||||
name: "Love Is Dope",
|
||||
duration: Some(371),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -320,7 +320,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Jore0zZW-_M",
|
||||
title: "The Tunnel — Black Mamba (dj-set)",
|
||||
name: "The Tunnel — Black Mamba (dj-set)",
|
||||
duration: Some(3881),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -344,7 +344,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "_THM-2Ph-6I",
|
||||
title: "Black Mamba / Turn to Stone Cover",
|
||||
name: "Black Mamba / Turn to Stone Cover",
|
||||
duration: Some(355),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -368,7 +368,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "koJAGIUlnD0",
|
||||
title: "The Black Mamba - Love Is On My Side - Portugal 🇵🇹 - Second Semi-Final - Eurovision 2021",
|
||||
name: "The Black Mamba - Love Is On My Side - Portugal 🇵🇹 - Second Semi-Final - Eurovision 2021",
|
||||
duration: Some(204),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -392,7 +392,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "4tvQPrHcR4w",
|
||||
title: "Black Mamba - aespa(에스파) [뮤직뱅크/Music Bank] | KBS 201211 방송",
|
||||
name: "Black Mamba - aespa(에스파) [뮤직뱅크/Music Bank] | KBS 201211 방송",
|
||||
duration: Some(181),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -416,7 +416,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "CUh6MTvB_4E",
|
||||
title: "The Black Mamba - Love Is On My Side (long version)",
|
||||
name: "The Black Mamba - Love Is On My Side (long version)",
|
||||
duration: Some(343),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -440,7 +440,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "4TWR90KJl84",
|
||||
title: "Next Level",
|
||||
name: "Next Level",
|
||||
duration: Some(236),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -464,7 +464,7 @@ MusicSearchFiltered(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Cw7eMibV-Xk",
|
||||
title: "BLACKPINK & AESPA - Pink Venom x Black Mamba (ft.Next Level) (Color Coded Lyrics) @Miggy Smallz",
|
||||
name: "BLACKPINK & AESPA - Pink Venom x Black Mamba (ft.Next Level) (Color Coded Lyrics) @Miggy Smallz",
|
||||
duration: Some(241),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -7,7 +7,7 @@ Paginator(
|
|||
items: [
|
||||
TrackItem(
|
||||
id: "zMPIobcM2j0",
|
||||
title: "ZUNA feat. AZET & NOIZY - NUMMER 1 prod. by DJ A-BOOM",
|
||||
name: "ZUNA feat. AZET & NOIZY - NUMMER 1 prod. by DJ A-BOOM",
|
||||
duration: Some(212),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -31,7 +31,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "f9g6NCHQrcE",
|
||||
title: "Kriminell (feat. Noizy)",
|
||||
name: "Kriminell (feat. Noizy)",
|
||||
duration: Some(230),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -59,7 +59,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "CAVfEwrwT_o",
|
||||
title: "Immer wieder",
|
||||
name: "Immer wieder",
|
||||
duration: Some(227),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -87,7 +87,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "VUr9JZQ8F2g",
|
||||
title: "Zwischen Himmel & Hölle",
|
||||
name: "Zwischen Himmel & Hölle",
|
||||
duration: Some(270),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -111,7 +111,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "XQat6rNNbdQ",
|
||||
title: "Ayé (KMN Street EP)",
|
||||
name: "Ayé (KMN Street EP)",
|
||||
duration: Some(220),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -135,7 +135,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "EQyU6fGDn0c",
|
||||
title: "Corleone",
|
||||
name: "Corleone",
|
||||
duration: Some(220),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -159,7 +159,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "g4poKgQZX6w",
|
||||
title: "Beverly Hills",
|
||||
name: "Beverly Hills",
|
||||
duration: Some(219),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -183,7 +183,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "YTHr7gxwYUQ",
|
||||
title: "Airmax gegen Kopf (feat. Luciano)",
|
||||
name: "Airmax gegen Kopf (feat. Luciano)",
|
||||
duration: Some(167),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -207,7 +207,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "MfCSDn6q6j4",
|
||||
title: "Direction",
|
||||
name: "Direction",
|
||||
duration: Some(182),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -231,7 +231,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "gx9KFXb5x_o",
|
||||
title: "Egal (feat. Jasmiina)",
|
||||
name: "Egal (feat. Jasmiina)",
|
||||
duration: Some(166),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -255,7 +255,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "d7R7DQ5tlQo",
|
||||
title: "Sag Nix",
|
||||
name: "Sag Nix",
|
||||
duration: Some(205),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -279,7 +279,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "cZPjgcqHSa8",
|
||||
title: "BWA (feat. Hanybal)",
|
||||
name: "BWA (feat. Hanybal)",
|
||||
duration: Some(294),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -303,7 +303,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "ogDLdREonWY",
|
||||
title: "Ketten Cartier",
|
||||
name: "Ketten Cartier",
|
||||
duration: Some(198),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -327,7 +327,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "pRQpKprUUPY",
|
||||
title: "Moe Phoenix - Ching Chang Chong (prod. by FL3X & Unik)",
|
||||
name: "Moe Phoenix - Ching Chang Chong (prod. by FL3X & Unik)",
|
||||
duration: Some(226),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -351,7 +351,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "qZoQw9b4uCo",
|
||||
title: "Handschellen (feat. Ardian Bujupi)",
|
||||
name: "Handschellen (feat. Ardian Bujupi)",
|
||||
duration: Some(221),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -375,7 +375,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "q23qghoF6Nk",
|
||||
title: "Gjynah",
|
||||
name: "Gjynah",
|
||||
duration: Some(271),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -399,7 +399,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "yU0aKa7PFBg",
|
||||
title: "Herzbeben",
|
||||
name: "Herzbeben",
|
||||
duration: Some(206),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -423,7 +423,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "DVCAqvypaCc",
|
||||
title: "Jump",
|
||||
name: "Jump",
|
||||
duration: Some(202),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -447,7 +447,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "XdnI7sm6LeQ",
|
||||
title: "Andere Liga",
|
||||
name: "Andere Liga",
|
||||
duration: Some(240),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -471,7 +471,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "KcOXNSJtFLg",
|
||||
title: "Trikot von Paris",
|
||||
name: "Trikot von Paris",
|
||||
duration: Some(255),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -495,7 +495,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "K0UxHXZwgsg",
|
||||
title: "Pfirsich",
|
||||
name: "Pfirsich",
|
||||
duration: Some(245),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -519,7 +519,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "eyyNwOSQ3Yg",
|
||||
title: "MGP \"BAD BITCH\" (Official Video)",
|
||||
name: "MGP \"BAD BITCH\" (Official Video)",
|
||||
duration: Some(166),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -543,7 +543,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "1yskotqNuXI",
|
||||
title: "Bros",
|
||||
name: "Bros",
|
||||
duration: Some(219),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -567,7 +567,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "C03n4AAiL9w",
|
||||
title: "Geiles Leben (Madizin single mix)",
|
||||
name: "Geiles Leben (Madizin single mix)",
|
||||
duration: Some(211),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -591,7 +591,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "a2wNRTKRusM",
|
||||
title: "Moe Phoenix - Mohammad (prod. by AriBeatz)",
|
||||
name: "Moe Phoenix - Mohammad (prod. by AriBeatz)",
|
||||
duration: Some(197),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -615,7 +615,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "AIf61iHwWMQ",
|
||||
title: "Waffen (feat. Bonez MC, Ufo361 & Gzuz)",
|
||||
name: "Waffen (feat. Bonez MC, Ufo361 & Gzuz)",
|
||||
duration: Some(268),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -639,7 +639,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "BixqbSRjY2Y",
|
||||
title: "Alles probiert (feat. Bonez MC)",
|
||||
name: "Alles probiert (feat. Bonez MC)",
|
||||
duration: Some(319),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -663,7 +663,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Acgy-3d4P6o",
|
||||
title: "Erfolg ist kein Glück",
|
||||
name: "Erfolg ist kein Glück",
|
||||
duration: Some(226),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -687,7 +687,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "5M_yA9M7yNc",
|
||||
title: "Gotham City",
|
||||
name: "Gotham City",
|
||||
duration: Some(156),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -711,7 +711,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "PjJuezhos3U",
|
||||
title: "Liebe macht blind",
|
||||
name: "Liebe macht blind",
|
||||
duration: Some(258),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -735,7 +735,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "XMutaJI2-kc",
|
||||
title: "Mama ist nicht stolz",
|
||||
name: "Mama ist nicht stolz",
|
||||
duration: Some(262),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -759,7 +759,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Xac6Q7hcZkQ",
|
||||
title: "Monica Bellucci",
|
||||
name: "Monica Bellucci",
|
||||
duration: Some(228),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -783,7 +783,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "JfwjsjBcDoU",
|
||||
title: "Achterbahn",
|
||||
name: "Achterbahn",
|
||||
duration: Some(222),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -807,7 +807,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "zshiQUV3ohw",
|
||||
title: "MOE PHOENIX feat. VEYSEL - GAUNER (prod. by Ghana Beats)",
|
||||
name: "MOE PHOENIX feat. VEYSEL - GAUNER (prod. by Ghana Beats)",
|
||||
duration: Some(226),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -831,7 +831,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "g1eTAt1_VAM",
|
||||
title: "Hype (feat. Abdi & CELO)",
|
||||
name: "Hype (feat. Abdi & CELO)",
|
||||
duration: Some(303),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -859,7 +859,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "c3rLrFC8igY",
|
||||
title: "Dame - Auf die guten alten Zeiten [Official HD Video]",
|
||||
name: "Dame - Auf die guten alten Zeiten [Official HD Video]",
|
||||
duration: Some(252),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -883,7 +883,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "1im4DNEYzEM",
|
||||
title: "Optimal (instrumental)",
|
||||
name: "Optimal (instrumental)",
|
||||
duration: Some(209),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -911,7 +911,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "8BUxw9ocM2s",
|
||||
title: "EULE aka Jazzy Gudd - Stehaufmädchen (Official Video)",
|
||||
name: "EULE aka Jazzy Gudd - Stehaufmädchen (Official Video)",
|
||||
duration: Some(184),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -935,7 +935,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "g4cSpnGbHPE",
|
||||
title: "Zweistellige Haftstrafen",
|
||||
name: "Zweistellige Haftstrafen",
|
||||
duration: Some(201),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -963,7 +963,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "1Sdj9MiCowQ",
|
||||
title: "187",
|
||||
name: "187",
|
||||
duration: Some(296),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -991,7 +991,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "2DbR35g-0ZY",
|
||||
title: "Der Pate",
|
||||
name: "Der Pate",
|
||||
duration: Some(237),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1015,7 +1015,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "j09hpp3AxIE",
|
||||
title: "Tage wie diese",
|
||||
name: "Tage wie diese",
|
||||
duration: Some(272),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1039,7 +1039,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "J3GN6JXjV3g",
|
||||
title: "Frische Luft",
|
||||
name: "Frische Luft",
|
||||
duration: Some(200),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1063,7 +1063,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "pULl-p02upM",
|
||||
title: "Check (feat. Xatar)",
|
||||
name: "Check (feat. Xatar)",
|
||||
duration: Some(240),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1087,7 +1087,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "O6By8JeCtQQ",
|
||||
title: "Alles richtig so (Instrumental)",
|
||||
name: "Alles richtig so (Instrumental)",
|
||||
duration: Some(210),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1111,7 +1111,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "NGn3IYQ7M7E",
|
||||
title: "Vorankommen",
|
||||
name: "Vorankommen",
|
||||
duration: Some(228),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1135,7 +1135,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "o43oI5x86dI",
|
||||
title: "Schnapp!",
|
||||
name: "Schnapp!",
|
||||
duration: Some(166),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1159,7 +1159,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "7TNqUrINxzs",
|
||||
title: "Besser als 50 Cent (Instrumental)",
|
||||
name: "Besser als 50 Cent (Instrumental)",
|
||||
duration: Some(197),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1183,7 +1183,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "f3BD5Zm3cp0",
|
||||
title: "Palmen aus Gold",
|
||||
name: "Palmen aus Gold",
|
||||
duration: Some(231),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1211,7 +1211,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "sF4yTDp95Eo",
|
||||
title: "Lampedusa",
|
||||
name: "Lampedusa",
|
||||
duration: Some(203),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1235,7 +1235,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "1EwLNHg6ejY",
|
||||
title: "Ajajaj (feat. Soolking)",
|
||||
name: "Ajajaj (feat. Soolking)",
|
||||
duration: Some(224),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1259,7 +1259,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "-l75qaSDWe8",
|
||||
title: "Bongzimmer",
|
||||
name: "Bongzimmer",
|
||||
duration: Some(287),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1283,7 +1283,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "7h7ntYLLrfQ",
|
||||
title: "Kogong",
|
||||
name: "Kogong",
|
||||
duration: Some(223),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1307,7 +1307,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "ApUl3Ops69M",
|
||||
title: "AZET - FAST LIFE (prod. by m3) #KMNSTREET VOL. 1",
|
||||
name: "AZET - FAST LIFE (prod. by m3) #KMNSTREET VOL. 1",
|
||||
duration: Some(179),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1331,7 +1331,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "2YcJ8Wightw",
|
||||
title: "CL500",
|
||||
name: "CL500",
|
||||
duration: Some(152),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1355,7 +1355,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "W3q8Od5qJio",
|
||||
title: "Du hast",
|
||||
name: "Du hast",
|
||||
duration: Some(236),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1379,7 +1379,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "WPFLAjmWCtk",
|
||||
title: "Astronaut (feat. Andreas Bourani)",
|
||||
name: "Astronaut (feat. Andreas Bourani)",
|
||||
duration: Some(268),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1403,7 +1403,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "tC76tIp0kBk",
|
||||
title: "So wie du bist (feat. Lary)",
|
||||
name: "So wie du bist (feat. Lary)",
|
||||
duration: Some(312),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1427,7 +1427,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "kiMG_JV2gbo",
|
||||
title: "Adel Tawil \"Lieder\" (Official Lyrics Video)",
|
||||
name: "Adel Tawil \"Lieder\" (Official Lyrics Video)",
|
||||
duration: Some(230),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1451,7 +1451,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "CrYYg_atdtk",
|
||||
title: "Marteria, Yasha, Miss Platnum - Lila Wolken (Official Video)",
|
||||
name: "Marteria, Yasha, Miss Platnum - Lila Wolken (Official Video)",
|
||||
duration: Some(231),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1475,7 +1475,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "XTPGpBBwt1w",
|
||||
title: "Hurra die Welt geht unter (feat. Henning May)",
|
||||
name: "Hurra die Welt geht unter (feat. Henning May)",
|
||||
duration: Some(299),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1499,7 +1499,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "uC08L4xxjNM",
|
||||
title: "80 Millionen",
|
||||
name: "80 Millionen",
|
||||
duration: Some(257),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1523,7 +1523,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "5fAoV_AAMf0",
|
||||
title: "Bauch und Kopf (Videoclip)",
|
||||
name: "Bauch und Kopf (Videoclip)",
|
||||
duration: Some(257),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1547,7 +1547,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "u5Vz7obL460",
|
||||
title: "Keine Maschine",
|
||||
name: "Keine Maschine",
|
||||
duration: Some(202),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1571,7 +1571,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "ZPJlyRv_IGI",
|
||||
title: "Deichkind - Leider Geil (Official Video)",
|
||||
name: "Deichkind - Leider Geil (Official Video)",
|
||||
duration: Some(189),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1595,7 +1595,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "s2SLbln-JwE",
|
||||
title: "BIBI & TINA \" Jungs gegen Mädchen - MÄDCHEN GEGEN JUNGS - Das offizielle Video!",
|
||||
name: "BIBI & TINA \" Jungs gegen Mädchen - MÄDCHEN GEGEN JUNGS - Das offizielle Video!",
|
||||
duration: Some(172),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1619,7 +1619,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "28xHtRw6pG8",
|
||||
title: "Patte fließt",
|
||||
name: "Patte fließt",
|
||||
duration: Some(206),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1643,7 +1643,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "joWoKqUTRvc",
|
||||
title: "Alles & Nichts",
|
||||
name: "Alles & Nichts",
|
||||
duration: Some(204),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1667,7 +1667,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "XNMFTqhcNrE",
|
||||
title: "Flash mich (Videoclip)",
|
||||
name: "Flash mich (Videoclip)",
|
||||
duration: Some(236),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1691,7 +1691,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "v3vPLgJ9FX8",
|
||||
title: "Sex",
|
||||
name: "Sex",
|
||||
duration: Some(260),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1719,7 +1719,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "UFXOd179kOA",
|
||||
title: "Ebbe und Flut (feat. Hanybal & Xatar)",
|
||||
name: "Ebbe und Flut (feat. Hanybal & Xatar)",
|
||||
duration: Some(213),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1743,7 +1743,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "4xRsDnKgHZc",
|
||||
title: "Hol\' mir dein Cousin",
|
||||
name: "Hol\' mir dein Cousin",
|
||||
duration: Some(206),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1767,7 +1767,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "mE3IjoEqMqY",
|
||||
title: "Hanybal - VANILLA SKY mit Nimo (prod. von Lucry) [Official 4K Video]",
|
||||
name: "Hanybal - VANILLA SKY mit Nimo (prod. von Lucry) [Official 4K Video]",
|
||||
duration: Some(211),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1791,7 +1791,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "E7e5vxKerqA",
|
||||
title: "Wer Macht Para? (feat. ENO)",
|
||||
name: "Wer Macht Para? (feat. ENO)",
|
||||
duration: Some(195),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1815,7 +1815,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "axmZ_5Rx4Go",
|
||||
title: "Zuhause (feat. Matisyahu)",
|
||||
name: "Zuhause (feat. Matisyahu)",
|
||||
duration: Some(210),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1839,7 +1839,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "44Ig6BsOCYA",
|
||||
title: "Purple Haze",
|
||||
name: "Purple Haze",
|
||||
duration: Some(279),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1863,7 +1863,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "3iLBFEJjdN0",
|
||||
title: "Löwenzahn (feat. Olexesh)",
|
||||
name: "Löwenzahn (feat. Olexesh)",
|
||||
duration: Some(242),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1887,7 +1887,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "M-ncq2eHF_k",
|
||||
title: "Ich will nur (Live)",
|
||||
name: "Ich will nur (Live)",
|
||||
duration: Some(233),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1911,7 +1911,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "-AJoJ-ggiKI",
|
||||
title: "LX & Maxwell feat. Gzuz - HaifischNikez (Jambeatz)",
|
||||
name: "LX & Maxwell feat. Gzuz - HaifischNikez (Jambeatz)",
|
||||
duration: Some(215),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1935,7 +1935,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "cgb-zp9DDHg",
|
||||
title: "Brot brechen",
|
||||
name: "Brot brechen",
|
||||
duration: Some(191),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1963,7 +1963,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Q7ZXg3KQLt0",
|
||||
title: "Genozid",
|
||||
name: "Genozid",
|
||||
duration: Some(407),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1987,7 +1987,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "ysAEZOwp5rM",
|
||||
title: "John Gotti",
|
||||
name: "John Gotti",
|
||||
duration: Some(207),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2011,7 +2011,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "m5vfng33SVE",
|
||||
title: "Das ist dein Leben",
|
||||
name: "Das ist dein Leben",
|
||||
duration: Some(282),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2035,7 +2035,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "yMfgjVlGbUE",
|
||||
title: "Apocalyptic Infinity",
|
||||
name: "Apocalyptic Infinity",
|
||||
duration: Some(1622),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2059,7 +2059,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "OQIYEPe6DWY",
|
||||
title: "Kraftwerk - Das Model",
|
||||
name: "Kraftwerk - Das Model",
|
||||
duration: Some(262),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2083,7 +2083,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "5FS8RIH7BpI",
|
||||
title: "Wünsch dir was",
|
||||
name: "Wünsch dir was",
|
||||
duration: Some(303),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2107,7 +2107,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "zSRKgFB9piY",
|
||||
title: "Keine ist wie Du ( Gregor Meyle Acoustic Cover )",
|
||||
name: "Keine ist wie Du ( Gregor Meyle Acoustic Cover )",
|
||||
duration: Some(256),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2131,7 +2131,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "e4eHhgwHCME",
|
||||
title: "Sturmmaske auf (Intro)",
|
||||
name: "Sturmmaske auf (Intro)",
|
||||
duration: Some(275),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2159,7 +2159,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "q3hZvho7jNk",
|
||||
title: "Paper",
|
||||
name: "Paper",
|
||||
duration: Some(222),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2183,7 +2183,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "0nWysyj_Z4Y",
|
||||
title: "Flouz kommt Flouz geht",
|
||||
name: "Flouz kommt Flouz geht",
|
||||
duration: Some(191),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2207,7 +2207,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "aGCcLWU0OVo",
|
||||
title: "Gürtel am Arm",
|
||||
name: "Gürtel am Arm",
|
||||
duration: Some(218),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2231,7 +2231,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "OQsXLK4MeEA",
|
||||
title: "JBB 2013 - SpongeBOZZ vs. Gio (Finale HR) prod. by Digital Drama",
|
||||
name: "JBB 2013 - SpongeBOZZ vs. Gio (Finale HR) prod. by Digital Drama",
|
||||
duration: Some(400),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2255,7 +2255,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "xm7dxIqOO2M",
|
||||
title: "Halbmond",
|
||||
name: "Halbmond",
|
||||
duration: Some(272),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2279,7 +2279,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "jlaaByab4Zk",
|
||||
title: "Ljubi me budalo (Radio)",
|
||||
name: "Ljubi me budalo (Radio)",
|
||||
duration: Some(224),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2307,7 +2307,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "KG9-jSqXz4U",
|
||||
title: "Oft gefragt (AMK Version)",
|
||||
name: "Oft gefragt (AMK Version)",
|
||||
duration: Some(205),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2331,7 +2331,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "7dISZnwsBSA",
|
||||
title: "1,40m (feat. Philipp Dittberner)",
|
||||
name: "1,40m (feat. Philipp Dittberner)",
|
||||
duration: Some(284),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2355,7 +2355,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "F_PPdS-PB14",
|
||||
title: "Idéal",
|
||||
name: "Idéal",
|
||||
duration: Some(253),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2379,7 +2379,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "DMg9idvVY8M",
|
||||
title: "Bitter",
|
||||
name: "Bitter",
|
||||
duration: Some(173),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2403,7 +2403,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "DGEmoSFI94Y",
|
||||
title: "Kurz Für Immer Bleiben",
|
||||
name: "Kurz Für Immer Bleiben",
|
||||
duration: Some(218),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -2427,7 +2427,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "BtZufymxHvE",
|
||||
title: "Ausser Kontrolle",
|
||||
name: "Ausser Kontrolle",
|
||||
duration: Some(159),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -7,7 +7,7 @@ Paginator(
|
|||
items: [
|
||||
TrackItem(
|
||||
id: "u1uvv_yKhH8",
|
||||
title: "Fine",
|
||||
name: "Fine",
|
||||
duration: Some(210),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -59,7 +59,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "hh5GKVa8VtM",
|
||||
title: "LOVE DIVE (LOVE DIVE)",
|
||||
name: "LOVE DIVE (LOVE DIVE)",
|
||||
duration: Some(178),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -111,7 +111,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "RdU3F5vN3_s",
|
||||
title: "Nxde",
|
||||
name: "Nxde",
|
||||
duration: Some(179),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -163,7 +163,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "OXWz_x6-dro",
|
||||
title: "Feel My Rhythm",
|
||||
name: "Feel My Rhythm",
|
||||
duration: Some(211),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -215,7 +215,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "ghrlZIMDzbM",
|
||||
title: "Hype Boy",
|
||||
name: "Hype Boy",
|
||||
duration: Some(180),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -267,7 +267,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "QiziJ40kTz0",
|
||||
title: "FOREVER 1",
|
||||
name: "FOREVER 1",
|
||||
duration: Some(203),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -319,7 +319,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "950BdJKBhGo",
|
||||
title: "Shut Down",
|
||||
name: "Shut Down",
|
||||
duration: Some(176),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -371,7 +371,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "tkzYyEp4zB4",
|
||||
title: "Next Level",
|
||||
name: "Next Level",
|
||||
duration: Some(222),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -423,7 +423,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "ffqliB42Nh4",
|
||||
title: "We Don\'t Talk Anymore (feat. Selena Gomez)",
|
||||
name: "We Don\'t Talk Anymore (feat. Selena Gomez)",
|
||||
duration: Some(218),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -475,7 +475,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "vFFT1iAUNDE",
|
||||
title: "Scared To Be Lonely",
|
||||
name: "Scared To Be Lonely",
|
||||
duration: Some(221),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -531,7 +531,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "8JXc4idKS_c",
|
||||
title: "Roller Coaster",
|
||||
name: "Roller Coaster",
|
||||
duration: Some(212),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -583,7 +583,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "4JJFrjkRxmo",
|
||||
title: "Dolphin",
|
||||
name: "Dolphin",
|
||||
duration: Some(177),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -635,7 +635,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "0EK_M2taRIM",
|
||||
title: "ELEVEN (ELEVEN)",
|
||||
name: "ELEVEN (ELEVEN)",
|
||||
duration: Some(179),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -687,7 +687,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "04tYkKUPPv4",
|
||||
title: "LILAC (라일락)",
|
||||
name: "LILAC (라일락)",
|
||||
duration: Some(215),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -739,7 +739,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "W0x7GcZkvH4",
|
||||
title: "RUN2U (RUN2U)",
|
||||
name: "RUN2U (RUN2U)",
|
||||
duration: Some(214),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -791,7 +791,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "INLFlN-PZq4",
|
||||
title: "Weekend",
|
||||
name: "Weekend",
|
||||
duration: Some(234),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -843,7 +843,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "GhL8GUjXEfk",
|
||||
title: "I\'m a Mess",
|
||||
name: "I\'m a Mess",
|
||||
duration: Some(196),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -895,7 +895,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "TaZkqPK0sbw",
|
||||
title: "My Universe",
|
||||
name: "My Universe",
|
||||
duration: Some(229),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -951,7 +951,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "ogKU5EQ0Wn0",
|
||||
title: "Never Forget You",
|
||||
name: "Never Forget You",
|
||||
duration: Some(214),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1003,7 +1003,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "g92HIac9ufA",
|
||||
title: "After LIKE",
|
||||
name: "After LIKE",
|
||||
duration: Some(177),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1055,7 +1055,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "_E6gDU0m_hk",
|
||||
title: "LALISA",
|
||||
name: "LALISA",
|
||||
duration: Some(201),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1107,7 +1107,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "FrEDny55ch8",
|
||||
title: "Rollin\'",
|
||||
name: "Rollin\'",
|
||||
duration: Some(198),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1159,7 +1159,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "-uOShlFu1v8",
|
||||
title: "SNEAKERS",
|
||||
name: "SNEAKERS",
|
||||
duration: Some(180),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -1211,7 +1211,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "PyyT5tHbOLw",
|
||||
title: "Psycho",
|
||||
name: "Psycho",
|
||||
duration: Some(210),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -7,7 +7,7 @@ Paginator(
|
|||
items: [
|
||||
Video(VideoItem(
|
||||
id: "WPdWvnAAurg",
|
||||
title: "aespa 에스파 \'Savage\' MV",
|
||||
name: "aespa 에스파 \'Savage\' MV",
|
||||
length: Some(259),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -44,7 +44,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "Y8JFxS1HlDo",
|
||||
title: "IVE 아이브 \'LOVE DIVE\' MV",
|
||||
name: "IVE 아이브 \'LOVE DIVE\' MV",
|
||||
length: Some(179),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -81,7 +81,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "NoYKBAajoyo",
|
||||
title: "EVERGLOW (에버글로우) - DUN DUN MV",
|
||||
name: "EVERGLOW (에버글로우) - DUN DUN MV",
|
||||
length: Some(209),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -118,7 +118,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "yQUU29NwNF4",
|
||||
title: "aespa(에스파) - Black Mamba @인기가요 inkigayo 20201122",
|
||||
name: "aespa(에스파) - Black Mamba @인기가요 inkigayo 20201122",
|
||||
length: Some(213),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -155,7 +155,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "NU611fxGyPU",
|
||||
title: "aespa 에스파 \'Black Mamba\' Dance Practice",
|
||||
name: "aespa 에스파 \'Black Mamba\' Dance Practice",
|
||||
length: Some(175),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -192,7 +192,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "EaswWiwMVs8",
|
||||
title: "Stray Kids \"소리꾼(Thunderous)\" M/V",
|
||||
name: "Stray Kids \"소리꾼(Thunderous)\" M/V",
|
||||
length: Some(199),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -229,7 +229,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "Ujb-gvqsoi0",
|
||||
title: "Red Velvet - IRENE & SEULGI \'Monster\' MV",
|
||||
name: "Red Velvet - IRENE & SEULGI \'Monster\' MV",
|
||||
length: Some(182),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -266,7 +266,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "gQlMMD8auMs",
|
||||
title: "BLACKPINK - ‘Pink Venom’ M/V",
|
||||
name: "BLACKPINK - ‘Pink Venom’ M/V",
|
||||
length: Some(194),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -303,7 +303,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "BL-aIpCLWnU",
|
||||
title: "Black Mamba",
|
||||
name: "Black Mamba",
|
||||
length: Some(175),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -340,7 +340,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "Jh4QFaPmdss",
|
||||
title: "(G)I-DLE - \'TOMBOY\' Official Music Video",
|
||||
name: "(G)I-DLE - \'TOMBOY\' Official Music Video",
|
||||
length: Some(198),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -377,7 +377,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "Fc-fa6cAe2c",
|
||||
title: "KAI 카이 \'음 (Mmmh)\' MV",
|
||||
name: "KAI 카이 \'음 (Mmmh)\' MV",
|
||||
length: Some(207),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -414,7 +414,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "dYRITmpFbJ4",
|
||||
title: "aespa 에스파 \'Girls\' MV",
|
||||
name: "aespa 에스파 \'Girls\' MV",
|
||||
length: Some(269),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -451,7 +451,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "mH0_XpSHkZo",
|
||||
title: "TWICE \"MORE & MORE\" M/V",
|
||||
name: "TWICE \"MORE & MORE\" M/V",
|
||||
length: Some(241),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -488,7 +488,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "uR8Mrt1IpXg",
|
||||
title: "Red Velvet 레드벨벳 \'Psycho\' MV",
|
||||
name: "Red Velvet 레드벨벳 \'Psycho\' MV",
|
||||
length: Some(216),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -525,7 +525,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "f5_wn8mexmM",
|
||||
title: "TWICE \"The Feels\" M/V",
|
||||
name: "TWICE \"The Feels\" M/V",
|
||||
length: Some(232),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -562,7 +562,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "Ky5RT5oGg0w",
|
||||
title: "aespa 에스파 \'Black Mamba\' The Debut Stage",
|
||||
name: "aespa 에스파 \'Black Mamba\' The Debut Stage",
|
||||
length: Some(287),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -599,7 +599,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "gU2HqP4NxUs",
|
||||
title: "BLACKPINK - ‘Pretty Savage’ 1011 SBS Inkigayo",
|
||||
name: "BLACKPINK - ‘Pretty Savage’ 1011 SBS Inkigayo",
|
||||
length: Some(208),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -636,7 +636,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "KhTeiaCezwM",
|
||||
title: "[MV] MAMAMOO (마마무) - HIP",
|
||||
name: "[MV] MAMAMOO (마마무) - HIP",
|
||||
length: Some(211),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -673,7 +673,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "uxmP4b2a0uY",
|
||||
title: "EXO 엑소 \'Obsession\' MV",
|
||||
name: "EXO 엑소 \'Obsession\' MV",
|
||||
length: Some(220),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -7,7 +7,7 @@ Paginator(
|
|||
items: [
|
||||
Video(VideoItem(
|
||||
id: "N5AKQflK1TU",
|
||||
title: "When you impulse buy...",
|
||||
name: "When you impulse buy...",
|
||||
length: Some(60),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -39,7 +39,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "OzIFALQ_YtA",
|
||||
title: "taste testing gam!",
|
||||
name: "taste testing gam!",
|
||||
length: Some(60),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -71,7 +71,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "zYHB38UlzE0",
|
||||
title: "Q&A l relationships, burnout, privilege, college advice, living alone, and life after youtube?",
|
||||
name: "Q&A l relationships, burnout, privilege, college advice, living alone, and life after youtube?",
|
||||
length: Some(775),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -108,7 +108,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "GvutfmW26JQ",
|
||||
title: "👹stay sour 🍋",
|
||||
name: "👹stay sour 🍋",
|
||||
length: Some(52),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -140,7 +140,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "gK-jLnvVsb0",
|
||||
title: "Contradicting myself",
|
||||
name: "Contradicting myself",
|
||||
length: Some(1381),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -177,7 +177,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "NudTbo2CJMY",
|
||||
title: "Flying to London",
|
||||
name: "Flying to London",
|
||||
length: Some(1078),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -214,7 +214,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "Nc0HzyDRjm0",
|
||||
title: "Stekki-don ㅣ After Hours ep.2",
|
||||
name: "Stekki-don ㅣ After Hours ep.2",
|
||||
length: Some(749),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -251,7 +251,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "pvSWHm4wlxY",
|
||||
title: "having kids",
|
||||
name: "having kids",
|
||||
length: Some(60),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -283,7 +283,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "fGQUWI4o__A",
|
||||
title: "Baskin Robbins in South Korea",
|
||||
name: "Baskin Robbins in South Korea",
|
||||
length: Some(53),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -315,7 +315,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "GuyGyzZcumI",
|
||||
title: "McDonald\'s Michelin Burger",
|
||||
name: "McDonald\'s Michelin Burger",
|
||||
length: Some(59),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -347,7 +347,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "6VGG19W08UQ",
|
||||
title: "Nostalgia is a powerful ingredient",
|
||||
name: "Nostalgia is a powerful ingredient",
|
||||
length: Some(52),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -379,7 +379,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "p3Xhx6aQEXo",
|
||||
title: "Jjajangmyun ㅣ Doob Gourmand ep.2",
|
||||
name: "Jjajangmyun ㅣ Doob Gourmand ep.2",
|
||||
length: Some(664),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -416,7 +416,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "35Gu3Q6qEn4",
|
||||
title: "Deal Breakers",
|
||||
name: "Deal Breakers",
|
||||
length: Some(60),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -448,7 +448,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "JoUdBrUpBN0",
|
||||
title: "Jjambbong, jjajangmyeon\'s biggest rival",
|
||||
name: "Jjambbong, jjajangmyeon\'s biggest rival",
|
||||
length: Some(56),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -480,7 +480,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "l76ovWsPLi8",
|
||||
title: "Jjagglee, Ricotta Persimmon Toast, Plants, and Pringles! l Home Alone All Day Vlog",
|
||||
name: "Jjagglee, Ricotta Persimmon Toast, Plants, and Pringles! l Home Alone All Day Vlog",
|
||||
length: Some(673),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -517,7 +517,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "zt1Lx9L619w",
|
||||
title: "The biggest privilege my rich friends have",
|
||||
name: "The biggest privilege my rich friends have",
|
||||
length: Some(58),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -7,7 +7,7 @@ Paginator(
|
|||
items: [
|
||||
TrackItem(
|
||||
id: "rNsISA-kWzM",
|
||||
title: "Black Mamba Dub",
|
||||
name: "Black Mamba Dub",
|
||||
duration: Some(248),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -39,7 +39,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "vMZqNPZADFw",
|
||||
title: "Black Mamba (feat. Ermal Meta)",
|
||||
name: "Black Mamba (feat. Ermal Meta)",
|
||||
duration: Some(287),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -71,7 +71,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "C8B-nBnB7Bk",
|
||||
title: "Black Mamba",
|
||||
name: "Black Mamba",
|
||||
duration: Some(177),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -103,7 +103,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "29MOu6Y781I",
|
||||
title: "Rip Black Mamba",
|
||||
name: "Rip Black Mamba",
|
||||
duration: Some(122),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -135,7 +135,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "AdvPpJVvyEg",
|
||||
title: "Black Mamba",
|
||||
name: "Black Mamba",
|
||||
duration: Some(126),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -167,7 +167,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "kv3Z269PQvE",
|
||||
title: "Black Mamba",
|
||||
name: "Black Mamba",
|
||||
duration: Some(178),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -199,7 +199,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "y74ZqAkFkK4",
|
||||
title: "Born To Fight",
|
||||
name: "Born To Fight",
|
||||
duration: Some(278),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -231,7 +231,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "ZVnqAUnj-1Y",
|
||||
title: "Black Mamba",
|
||||
name: "Black Mamba",
|
||||
duration: Some(188),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -263,7 +263,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "REmUidcJt5I",
|
||||
title: "Savage",
|
||||
name: "Savage",
|
||||
duration: Some(239),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -295,7 +295,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "63sEilefjtQ",
|
||||
title: "Black Mamba",
|
||||
name: "Black Mamba",
|
||||
duration: Some(233),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -327,7 +327,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "_LGy1K5vmq8",
|
||||
title: "Black Mamba",
|
||||
name: "Black Mamba",
|
||||
duration: Some(284),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -359,7 +359,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Ak98OIfed8o",
|
||||
title: "Black Mamba",
|
||||
name: "Black Mamba",
|
||||
duration: Some(346),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -391,7 +391,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "_aSqdZKxcuU",
|
||||
title: "Soul Surrender",
|
||||
name: "Soul Surrender",
|
||||
duration: Some(273),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -423,7 +423,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "6Lb4bmEEfnY",
|
||||
title: "Black Mamba Boy",
|
||||
name: "Black Mamba Boy",
|
||||
duration: Some(312),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -455,7 +455,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "4lrp5FWFIak",
|
||||
title: "Black Mamba",
|
||||
name: "Black Mamba",
|
||||
duration: Some(558),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -487,7 +487,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Kk8vT1o_gYE",
|
||||
title: "Black Mamba",
|
||||
name: "Black Mamba",
|
||||
duration: Some(324),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -527,7 +527,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "FbUrY0GdO88",
|
||||
title: "Black Mamba Blues",
|
||||
name: "Black Mamba Blues",
|
||||
duration: Some(186),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -559,7 +559,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "OFesVwAdT80",
|
||||
title: "Black Mamba",
|
||||
name: "Black Mamba",
|
||||
duration: Some(149),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -591,7 +591,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "lNeJjPPKE1g",
|
||||
title: "Black Mamba",
|
||||
name: "Black Mamba",
|
||||
duration: Some(212),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
@ -623,7 +623,7 @@ Paginator(
|
|||
),
|
||||
TrackItem(
|
||||
id: "SW_woyyA1Bg",
|
||||
title: "Black Mamba Style",
|
||||
name: "Black Mamba Style",
|
||||
duration: Some(202),
|
||||
cover: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -7,7 +7,7 @@ Paginator(
|
|||
items: [
|
||||
Video(VideoItem(
|
||||
id: "mRmlXh7Hams",
|
||||
title: "Extra 3 vom 12.10.2022 im NDR | extra 3 | NDR",
|
||||
name: "Extra 3 vom 12.10.2022 im NDR | extra 3 | NDR",
|
||||
length: Some(1839),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -39,7 +39,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "LsXC5r64Pvc",
|
||||
title: "Most Rarest Plays In Baseball History",
|
||||
name: "Most Rarest Plays In Baseball History",
|
||||
length: Some(1975),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -71,7 +71,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "dwPmd1GqQHE",
|
||||
title: "90S RAP & HIPHOP MIX - Notorious B I G , Dr Dre, 50 Cent, Snoop Dogg, 2Pac, DMX, Lil Jon and more",
|
||||
name: "90S RAP & HIPHOP MIX - Notorious B I G , Dr Dre, 50 Cent, Snoop Dogg, 2Pac, DMX, Lil Jon and more",
|
||||
length: Some(5457),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -103,7 +103,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "qxI-Ob8lpLE",
|
||||
title: "Schlatt\'s Chips Tier List",
|
||||
name: "Schlatt\'s Chips Tier List",
|
||||
length: Some(1071),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -140,7 +140,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "qmrzTUmZ4UU",
|
||||
title: "850€ für den Verrat am System - UCS AT-AT LEGO® Star Wars 75313",
|
||||
name: "850€ für den Verrat am System - UCS AT-AT LEGO® Star Wars 75313",
|
||||
length: Some(2043),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -177,7 +177,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "4q4vpQCIZ6w",
|
||||
title: "🌉 Manhattan Jazz 💖 l Relaxing Jazz Piano Music l Background Music",
|
||||
name: "🌉 Manhattan Jazz 💖 l Relaxing Jazz Piano Music l Background Music",
|
||||
length: Some(23229),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -214,7 +214,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "Z_k31kqZxaE",
|
||||
title: "1 in 1,000,000 NBA Moments",
|
||||
name: "1 in 1,000,000 NBA Moments",
|
||||
length: Some(567),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -251,7 +251,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "zE-a5eqvlv8",
|
||||
title: "Dua Lipa, Coldplay, Martin Garrix & Kygo, The Chainsmokers Style - Feeling Me",
|
||||
name: "Dua Lipa, Coldplay, Martin Garrix & Kygo, The Chainsmokers Style - Feeling Me",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -288,7 +288,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "gNlOk0LXi5M",
|
||||
title: "Soll ich dir 1g GOLD schenken? oder JEMAND anderen DOPPELT?",
|
||||
name: "Soll ich dir 1g GOLD schenken? oder JEMAND anderen DOPPELT?",
|
||||
length: Some(704),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -325,7 +325,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "dbMvZjs8Yc8",
|
||||
title: "Brad Pitt- Die Revanche eines Sexsymbols | Doku HD | ARTE",
|
||||
name: "Brad Pitt- Die Revanche eines Sexsymbols | Doku HD | ARTE",
|
||||
length: Some(3137),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -362,7 +362,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "mFxi3lOAcFs",
|
||||
title: "Craziest Soviet Machines You Won\'t Believe Exist - Part 1",
|
||||
name: "Craziest Soviet Machines You Won\'t Believe Exist - Part 1",
|
||||
length: Some(1569),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -399,7 +399,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "eu7ubm7g59E",
|
||||
title: "People Hated Me For Using This Slab",
|
||||
name: "People Hated Me For Using This Slab",
|
||||
length: Some(1264),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -436,7 +436,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "TRGHIN2PGIA",
|
||||
title: "Christian Bale Breaks Down His Most Iconic Characters | GQ",
|
||||
name: "Christian Bale Breaks Down His Most Iconic Characters | GQ",
|
||||
length: Some(1381),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -473,7 +473,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "w3tENzcssDU",
|
||||
title: "NFL Trick Plays But They Get Increasingly Higher IQ",
|
||||
name: "NFL Trick Plays But They Get Increasingly Higher IQ",
|
||||
length: Some(599),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -510,7 +510,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "gUAd2XXzH7w",
|
||||
title: "⚓\u{fe0f}Found ABANDONED SHIP!!! Big CRUISE SHIP on a desert island☠\u{fe0f} Where did the people go?!?",
|
||||
name: "⚓\u{fe0f}Found ABANDONED SHIP!!! Big CRUISE SHIP on a desert island☠\u{fe0f} Where did the people go?!?",
|
||||
length: Some(2949),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -547,7 +547,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "YpGjaJ1ettI",
|
||||
title: "[Working BGM] Comfortable music that makes you feel positive -- Morning Mood -- Daily Routine",
|
||||
name: "[Working BGM] Comfortable music that makes you feel positive -- Morning Mood -- Daily Routine",
|
||||
length: Some(3651),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -584,7 +584,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "rPAhFD8hKxQ",
|
||||
title: "Survival Camping 9ft/3m Under Snow - Giant Winter Bushcraft Shelter and Quinzee",
|
||||
name: "Survival Camping 9ft/3m Under Snow - Giant Winter Bushcraft Shelter and Quinzee",
|
||||
length: Some(1301),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -621,7 +621,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "2rye4u-cCNk",
|
||||
title: "Pink Panther Fights Off Pests | 54 Minute Compilation | The Pink Panther Show",
|
||||
name: "Pink Panther Fights Off Pests | 54 Minute Compilation | The Pink Panther Show",
|
||||
length: Some(3158),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -658,7 +658,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "O0xAlfSaBNQ",
|
||||
title: "FC Nantes vs. SC Freiburg – Highlights & Tore | UEFA Europa League",
|
||||
name: "FC Nantes vs. SC Freiburg – Highlights & Tore | UEFA Europa League",
|
||||
length: Some(326),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -695,7 +695,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "Mhs9Sbnw19o",
|
||||
title: "Dramatisches Duell: 400 Jahre altes Kästchen erzielt zig-fachen Wunschpreis! | Bares für Rares XXL",
|
||||
name: "Dramatisches Duell: 400 Jahre altes Kästchen erzielt zig-fachen Wunschpreis! | Bares für Rares XXL",
|
||||
length: Some(744),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -732,7 +732,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "Bzzp5Cay7DI",
|
||||
title: "Sweet Jazz - Cool autumn Bossa Nova & October Jazz Positive Mood",
|
||||
name: "Sweet Jazz - Cool autumn Bossa Nova & October Jazz Positive Mood",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -769,7 +769,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "SlskTqc9CEc",
|
||||
title: "The Chick-Fil-A Full Menu Challenge",
|
||||
name: "The Chick-Fil-A Full Menu Challenge",
|
||||
length: Some(613),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -806,7 +806,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "CwRvM2TfYbs",
|
||||
title: "Gentle healing music of health and to calm the nervous system, deep relaxation! Say Life Yes",
|
||||
name: "Gentle healing music of health and to calm the nervous system, deep relaxation! Say Life Yes",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -843,7 +843,7 @@ Paginator(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "7jz0pXSe_kI",
|
||||
title: "Craziest \"Fine...I\'ll Do it Myself\" Moments in Sports History (PART 2)",
|
||||
name: "Craziest \"Fine...I\'ll Do it Myself\" Moments in Sports History (PART 2)",
|
||||
length: Some(1822),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -5,7 +5,7 @@ expression: map_res.c
|
|||
VideoPlayer(
|
||||
details: VideoPlayerDetails(
|
||||
id: "pPvd8UxmSbQ",
|
||||
title: "Inspiring Cinematic Uplifting (Creative Commons)",
|
||||
name: "Inspiring Cinematic Uplifting (Creative Commons)",
|
||||
description: Some("► Download Music: http://bit.ly/2QLufeh\nImportant to know! You can download this track for free through Patreon. You will pay only for new tracks! So join others and let\'s make next track together!\n\n► MORE MUSIC: Become my patron and get access to all our music from Patreon library. More Info here: http://bit.ly/2JJDFHb\n\n► Additional edit versions of this track you can download here: http://bit.ly/2WdRinT (5 versions)\n--------------------- \n\n►DESCRIPTION:\nInspiring Cinematic Uplifting Trailer Background - epic music for trailer video project with powerful drums, energetic orchestra and gentle piano melody. This motivational cinematic theme will work as perfect background for beautiful epic moments, landscapes, nature, drone video, motivational products and achievements.\n--------------------- \n\n► LICENSE:\n● If you need a license for your project, you can purchase it here: \nhttps://1.envato.market/ajicu (Audiojungle)\nhttps://bit.ly/3fWZZuI (Pond5)\n--------------------- \n\n► LISTEN ON:\n● Spotify - https://spoti.fi/2sHm3UH\n● Apple Music - https://apple.co/3qBjbUO\n--------------------- \n\n► SUBSCRIBE FOR MORE: \nPatreon: http://bit.ly/2JJDFHb\nYoutube: http://bit.ly/2AYBzfA\nFacebook: http://bit.ly/2T6dTx5\nInstagram: http://bit.ly/2BHJ8rB\nTwitter: http://bit.ly/2MwtOlT\nSoundCloud: http://bit.ly/2IwVVmt\nAudiojungle: https://1.envato.market/ajrsm\nPond5: https://bit.ly/2TLi1rW\n--------------------- \n►Photo by Vittorio Staffolani from Pexels\n--------------------- \n\nFAQ:\n\n► Can I use this music in my videos? \n● Sure! Just download this track and you are ready to use it! We only ask to credit us. \n-------------------- \n\n► What is \"Creative Commons\"? \nCreative Commons is a system that allows you to legally use “some rights reserved” music, movies, images, and other content — all for free. Licensees may copy, distribute, display and perform the work and make derivative works and remixes based on it only if they give the author or licensor the credits.\n-------------------- \n\n► Will I have any copyright issues with this track?\n● No, you should not have any copyright problems with this track!\n-------------------- \n\n► Is it necessary to become your patron?\n● No it\'s not necessary. But we recommend you to become our patron because you will get access to huge library of music. You will download only highest quality files. You will find additional edited versions of every track. You always be tuned with our news. You will find music not only from Roman Senyk but also from another talented authors.\n-------------------- \n\n► Why I received a copyright claim when I used this track?\n● Do not panic! This is very common situation. Content ID fingerprint system can mismatch our music. Just dispute the claim by showing our original track. Or send us the link to your video (romansenykmusic@gmail.com) and attach some screenshot with claim information. Claim will be released until 24 hours!\n\n► How to credit you in my video?\n● Just add to the description of your project information about Author, Name of Song and the link to our original track. Or copy and paste:\n\nMusic Info: Inspiring Cinematic Uplifting by RomanSenykMusic.\nMusic Link: https://youtu.be/pPvd8UxmSbQ\n--------------------- \n\n► If you have any questions, you can write in the comments for this video or by email: romansenykmusic@gmail.com\n--------------------- \n\nStay tuned! The best is yet to come! \nThanks For Listening!\nRoman Senyk"),
|
||||
length: 163,
|
||||
thumbnail: [
|
||||
|
|
|
@ -5,7 +5,7 @@ expression: map_res.c
|
|||
VideoPlayer(
|
||||
details: VideoPlayerDetails(
|
||||
id: "pPvd8UxmSbQ",
|
||||
title: "Inspiring Cinematic Uplifting (Creative Commons)",
|
||||
name: "Inspiring Cinematic Uplifting (Creative Commons)",
|
||||
description: Some("► Download Music: http://bit.ly/2QLufeh\nImportant to know! You can download this track for free through Patreon. You will pay only for new tracks! So join others and let\'s make next track together!\n\n► MORE MUSIC: Become my patron and get access to all our music from Patreon library. More Info here: http://bit.ly/2JJDFHb\n\n► Additional edit versions of this track you can download here: http://bit.ly/2WdRinT (5 versions)\n--------------------- \n\n►DESCRIPTION:\nInspiring Cinematic Uplifting Trailer Background - epic music for trailer video project with powerful drums, energetic orchestra and gentle piano melody. This motivational cinematic theme will work as perfect background for beautiful epic moments, landscapes, nature, drone video, motivational products and achievements.\n--------------------- \n\n► LICENSE:\n● If you need a license for your project, you can purchase it here: \nhttps://1.envato.market/ajicu (Audiojungle)\nhttps://bit.ly/3fWZZuI (Pond5)\n--------------------- \n\n► LISTEN ON:\n● Spotify - https://spoti.fi/2sHm3UH\n● Apple Music - https://apple.co/3qBjbUO\n--------------------- \n\n► SUBSCRIBE FOR MORE: \nPatreon: http://bit.ly/2JJDFHb\nYoutube: http://bit.ly/2AYBzfA\nFacebook: http://bit.ly/2T6dTx5\nInstagram: http://bit.ly/2BHJ8rB\nTwitter: http://bit.ly/2MwtOlT\nSoundCloud: http://bit.ly/2IwVVmt\nAudiojungle: https://1.envato.market/ajrsm\nPond5: https://bit.ly/2TLi1rW\n--------------------- \n►Photo by Vittorio Staffolani from Pexels\n--------------------- \n\nFAQ:\n\n► Can I use this music in my videos? \n● Sure! Just download this track and you are ready to use it! We only ask to credit us. \n-------------------- \n\n► What is \"Creative Commons\"? \nCreative Commons is a system that allows you to legally use “some rights reserved” music, movies, images, and other content — all for free. Licensees may copy, distribute, display and perform the work and make derivative works and remixes based on it only if they give the author or licensor the credits.\n-------------------- \n\n► Will I have any copyright issues with this track?\n● No, you should not have any copyright problems with this track!\n-------------------- \n\n► Is it necessary to become your patron?\n● No it\'s not necessary. But we recommend you to become our patron because you will get access to huge library of music. You will download only highest quality files. You will find additional edited versions of every track. You always be tuned with our news. You will find music not only from Roman Senyk but also from another talented authors.\n-------------------- \n\n► Why I received a copyright claim when I used this track?\n● Do not panic! This is very common situation. Content ID fingerprint system can mismatch our music. Just dispute the claim by showing our original track. Or send us the link to your video (romansenykmusic@gmail.com) and attach some screenshot with claim information. Claim will be released until 24 hours!\n\n► How to credit you in my video?\n● Just add to the description of your project information about Author, Name of Song and the link to our original track. Or copy and paste:\n\nMusic Info: Inspiring Cinematic Uplifting by RomanSenykMusic.\nMusic Link: https://youtu.be/pPvd8UxmSbQ\n--------------------- \n\n► If you have any questions, you can write in the comments for this video or by email: romansenykmusic@gmail.com\n--------------------- \n\nStay tuned! The best is yet to come! \nThanks For Listening!\nRoman Senyk"),
|
||||
length: 163,
|
||||
thumbnail: [
|
||||
|
|
|
@ -5,7 +5,7 @@ expression: map_res.c
|
|||
VideoPlayer(
|
||||
details: VideoPlayerDetails(
|
||||
id: "pPvd8UxmSbQ",
|
||||
title: "Inspiring Cinematic Uplifting",
|
||||
name: "Inspiring Cinematic Uplifting",
|
||||
description: None,
|
||||
length: 163,
|
||||
thumbnail: [
|
||||
|
|
|
@ -5,7 +5,7 @@ expression: map_res.c
|
|||
VideoPlayer(
|
||||
details: VideoPlayerDetails(
|
||||
id: "pPvd8UxmSbQ",
|
||||
title: "Inspiring Cinematic Uplifting (Creative Commons)",
|
||||
name: "Inspiring Cinematic Uplifting (Creative Commons)",
|
||||
description: Some("► Download Music: http://bit.ly/2QLufeh\nImportant to know! You can download this track for free through Patreon. You will pay only for new tracks! So join others and let\'s make next track together!\n\n► MORE MUSIC: Become my patron and get access to all our music from Patreon library. More Info here: http://bit.ly/2JJDFHb\n\n► Additional edit versions of this track you can download here: http://bit.ly/2WdRinT (5 versions)\n--------------------- \n\n►DESCRIPTION:\nInspiring Cinematic Uplifting Trailer Background - epic music for trailer video project with powerful drums, energetic orchestra and gentle piano melody. This motivational cinematic theme will work as perfect background for beautiful epic moments, landscapes, nature, drone video, motivational products and achievements.\n--------------------- \n\n► LICENSE:\n● If you need a license for your project, you can purchase it here: \nhttps://1.envato.market/ajicu (Audiojungle)\nhttps://bit.ly/3fWZZuI (Pond5)\n--------------------- \n\n► LISTEN ON:\n● Spotify - https://spoti.fi/2sHm3UH\n● Apple Music - https://apple.co/3qBjbUO\n--------------------- \n\n► SUBSCRIBE FOR MORE: \nPatreon: http://bit.ly/2JJDFHb\nYoutube: http://bit.ly/2AYBzfA\nFacebook: http://bit.ly/2T6dTx5\nInstagram: http://bit.ly/2BHJ8rB\nTwitter: http://bit.ly/2MwtOlT\nSoundCloud: http://bit.ly/2IwVVmt\nAudiojungle: https://1.envato.market/ajrsm\nPond5: https://bit.ly/2TLi1rW\n--------------------- \n►Photo by Vittorio Staffolani from Pexels\n--------------------- \n\nFAQ:\n\n► Can I use this music in my videos? \n● Sure! Just download this track and you are ready to use it! We only ask to credit us. \n-------------------- \n\n► What is \"Creative Commons\"? \nCreative Commons is a system that allows you to legally use “some rights reserved” music, movies, images, and other content — all for free. Licensees may copy, distribute, display and perform the work and make derivative works and remixes based on it only if they give the author or licensor the credits.\n-------------------- \n\n► Will I have any copyright issues with this track?\n● No, you should not have any copyright problems with this track!\n-------------------- \n\n► Is it necessary to become your patron?\n● No it\'s not necessary. But we recommend you to become our patron because you will get access to huge library of music. You will download only highest quality files. You will find additional edited versions of every track. You always be tuned with our news. You will find music not only from Roman Senyk but also from another talented authors.\n-------------------- \n\n► Why I received a copyright claim when I used this track?\n● Do not panic! This is very common situation. Content ID fingerprint system can mismatch our music. Just dispute the claim by showing our original track. Or send us the link to your video (romansenykmusic@gmail.com) and attach some screenshot with claim information. Claim will be released until 24 hours!\n\n► How to credit you in my video?\n● Just add to the description of your project information about Author, Name of Song and the link to our original track. Or copy and paste:\n\nMusic Info: Inspiring Cinematic Uplifting by RomanSenykMusic.\nMusic Link: https://youtu.be/pPvd8UxmSbQ\n--------------------- \n\n► If you have any questions, you can write in the comments for this video or by email: romansenykmusic@gmail.com\n--------------------- \n\nStay tuned! The best is yet to come! \nThanks For Listening!\nRoman Senyk"),
|
||||
length: 163,
|
||||
thumbnail: [
|
||||
|
|
|
@ -5,7 +5,7 @@ expression: map_res.c
|
|||
VideoPlayer(
|
||||
details: VideoPlayerDetails(
|
||||
id: "pPvd8UxmSbQ",
|
||||
title: "Inspiring Cinematic Uplifting (Creative Commons)",
|
||||
name: "Inspiring Cinematic Uplifting (Creative Commons)",
|
||||
description: Some("► Download Music: http://bit.ly/2QLufeh\nImportant to know! You can download this track for free through Patreon. You will pay only for new tracks! So join others and let\'s make next track together!\n\n► MORE MUSIC: Become my patron and get access to all our music from Patreon library. More Info here: http://bit.ly/2JJDFHb\n\n► Additional edit versions of this track you can download here: http://bit.ly/2WdRinT (5 versions)\n--------------------- \n\n►DESCRIPTION:\nInspiring Cinematic Uplifting Trailer Background - epic music for trailer video project with powerful drums, energetic orchestra and gentle piano melody. This motivational cinematic theme will work as perfect background for beautiful epic moments, landscapes, nature, drone video, motivational products and achievements.\n--------------------- \n\n► LICENSE:\n● If you need a license for your project, you can purchase it here: \nhttps://1.envato.market/ajicu (Audiojungle)\nhttps://bit.ly/3fWZZuI (Pond5)\n--------------------- \n\n► LISTEN ON:\n● Spotify - https://spoti.fi/2sHm3UH\n● Apple Music - https://apple.co/3qBjbUO\n--------------------- \n\n► SUBSCRIBE FOR MORE: \nPatreon: http://bit.ly/2JJDFHb\nYoutube: http://bit.ly/2AYBzfA\nFacebook: http://bit.ly/2T6dTx5\nInstagram: http://bit.ly/2BHJ8rB\nTwitter: http://bit.ly/2MwtOlT\nSoundCloud: http://bit.ly/2IwVVmt\nAudiojungle: https://1.envato.market/ajrsm\nPond5: https://bit.ly/2TLi1rW\n--------------------- \n►Photo by Vittorio Staffolani from Pexels\n--------------------- \n\nFAQ:\n\n► Can I use this music in my videos? \n● Sure! Just download this track and you are ready to use it! We only ask to credit us. \n-------------------- \n\n► What is \"Creative Commons\"? \nCreative Commons is a system that allows you to legally use “some rights reserved” music, movies, images, and other content — all for free. Licensees may copy, distribute, display and perform the work and make derivative works and remixes based on it only if they give the author or licensor the credits.\n-------------------- \n\n► Will I have any copyright issues with this track?\n● No, you should not have any copyright problems with this track!\n-------------------- \n\n► Is it necessary to become your patron?\n● No it\'s not necessary. But we recommend you to become our patron because you will get access to huge library of music. You will download only highest quality files. You will find additional edited versions of every track. You always be tuned with our news. You will find music not only from Roman Senyk but also from another talented authors.\n-------------------- \n\n► Why I received a copyright claim when I used this track?\n● Do not panic! This is very common situation. Content ID fingerprint system can mismatch our music. Just dispute the claim by showing our original track. Or send us the link to your video (romansenykmusic@gmail.com) and attach some screenshot with claim information. Claim will be released until 24 hours!\n\n► How to credit you in my video?\n● Just add to the description of your project information about Author, Name of Song and the link to our original track. Or copy and paste:\n\nMusic Info: Inspiring Cinematic Uplifting by RomanSenykMusic.\nMusic Link: https://youtu.be/pPvd8UxmSbQ\n--------------------- \n\n► If you have any questions, you can write in the comments for this video or by email: romansenykmusic@gmail.com\n--------------------- \n\nStay tuned! The best is yet to come! \nThanks For Listening!\nRoman Senyk"),
|
||||
length: 163,
|
||||
thumbnail: [
|
||||
|
|
|
@ -7,7 +7,7 @@ Paginator(
|
|||
items: [
|
||||
PlaylistVideo(
|
||||
id: "zMPIobcM2j0",
|
||||
title: "ZUNA feat. AZET & NOIZY - NUMMER 1 prod. by DJ A-BOOM",
|
||||
name: "ZUNA feat. AZET & NOIZY - NUMMER 1 prod. by DJ A-BOOM",
|
||||
length: 212,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -38,7 +38,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "f9g6NCHQrcE",
|
||||
title: "AZET ft. ZUNA & NOIZY - KRIMINELL (prod. by DJ A-BOOM)",
|
||||
name: "AZET ft. ZUNA & NOIZY - KRIMINELL (prod. by DJ A-BOOM)",
|
||||
length: 230,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -69,7 +69,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "CAVfEwrwT_o",
|
||||
title: "Rooz x MoTrip - Immer Wieder (eng: Again and Again) (prod SOTT)",
|
||||
name: "Rooz x MoTrip - Immer Wieder (eng: Again and Again) (prod SOTT)",
|
||||
length: 227,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -100,7 +100,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "VUr9JZQ8F2g",
|
||||
title: "Kontra K - Zwischen Himmel & Hölle (Official Video)",
|
||||
name: "Kontra K - Zwischen Himmel & Hölle (Official Video)",
|
||||
length: 270,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -131,7 +131,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "XQat6rNNbdQ",
|
||||
title: "ZUNA - AYE prod. by LUCRY #KMNSTREET VOL. 7",
|
||||
name: "ZUNA - AYE prod. by LUCRY #KMNSTREET VOL. 7",
|
||||
length: 220,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -162,7 +162,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "EQyU6fGDn0c",
|
||||
title: "RAF Camora - CORLEONE (prod. by X-Plosive,The Cratez & RAF Camora)",
|
||||
name: "RAF Camora - CORLEONE (prod. by X-Plosive,The Cratez & RAF Camora)",
|
||||
length: 220,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -193,7 +193,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "g4poKgQZX6w",
|
||||
title: "Ufo361 - „BEVERLY HILLS“ (prod. von AT Beatz/Jimmy Torrio) [Official HD Video]",
|
||||
name: "Ufo361 - „BEVERLY HILLS“ (prod. von AT Beatz/Jimmy Torrio) [Official HD Video]",
|
||||
length: 219,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -224,7 +224,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "YTHr7gxwYUQ",
|
||||
title: "DARDAN X LUCIANO - AIRMAX GEGEN KOPF (prod. by Leryk)",
|
||||
name: "DARDAN X LUCIANO - AIRMAX GEGEN KOPF (prod. by Leryk)",
|
||||
length: 167,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -255,7 +255,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "MfCSDn6q6j4",
|
||||
title: "YONII - DIRECTION prod. by LUCRY (Official 4K Video)",
|
||||
name: "YONII - DIRECTION prod. by LUCRY (Official 4K Video)",
|
||||
length: 182,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -286,7 +286,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "gx9KFXb5x_o",
|
||||
title: "Anstandslos & Durchgeknallt - Egal ft. Jasmiina (Official Video)",
|
||||
name: "Anstandslos & Durchgeknallt - Egal ft. Jasmiina (Official Video)",
|
||||
length: 166,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -317,7 +317,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "d7R7DQ5tlQo",
|
||||
title: "RAF Camora - SAG NIX (Anthrazit RR) #02",
|
||||
name: "RAF Camora - SAG NIX (Anthrazit RR) #02",
|
||||
length: 205,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -348,7 +348,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "cZPjgcqHSa8",
|
||||
title: "Olexesh - BWA feat. Celo & Abdi, Hanybal (prod. von Drunken Masters) [Official Video]",
|
||||
name: "Olexesh - BWA feat. Celo & Abdi, Hanybal (prod. von Drunken Masters) [Official Video]",
|
||||
length: 294,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -379,7 +379,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "ogDLdREonWY",
|
||||
title: "AZET - KETTEN CARTIER (Beat by zeeko & Veteran / prod. by DJ A-Boom)",
|
||||
name: "AZET - KETTEN CARTIER (Beat by zeeko & Veteran / prod. by DJ A-Boom)",
|
||||
length: 198,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -410,7 +410,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "pRQpKprUUPY",
|
||||
title: "Moe Phoenix - Ching Chang Chong (prod. by FL3X & Unik)",
|
||||
name: "Moe Phoenix - Ching Chang Chong (prod. by FL3X & Unik)",
|
||||
length: 226,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -441,7 +441,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "qZoQw9b4uCo",
|
||||
title: "PAYY x ARDIAN BUJUPI - Handschellen (Prod. by Remoe & Kostas Karagiozidis) [ OFFICIAL VIDEO ]",
|
||||
name: "PAYY x ARDIAN BUJUPI - Handschellen (Prod. by Remoe & Kostas Karagiozidis) [ OFFICIAL VIDEO ]",
|
||||
length: 221,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -472,7 +472,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "q23qghoF6Nk",
|
||||
title: "AZET - GJYNAH (beat by Lucry) (Official 4K Video)",
|
||||
name: "AZET - GJYNAH (beat by Lucry) (Official 4K Video)",
|
||||
length: 271,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -503,7 +503,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "yU0aKa7PFBg",
|
||||
title: "Helene Fischer | Herzbeben (Live aus dem Kesselhaus München)",
|
||||
name: "Helene Fischer | Herzbeben (Live aus dem Kesselhaus München)",
|
||||
length: 206,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -534,7 +534,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "DVCAqvypaCc",
|
||||
title: "DARDAN - JUMP (prod. by Oster)",
|
||||
name: "DARDAN - JUMP (prod. by Oster)",
|
||||
length: 202,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -565,7 +565,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "XdnI7sm6LeQ",
|
||||
title: "RAF Camora - Andere Liga (prod. Beataura & RAF Camora)",
|
||||
name: "RAF Camora - Andere Liga (prod. Beataura & RAF Camora)",
|
||||
length: 240,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -596,7 +596,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "KcOXNSJtFLg",
|
||||
title: "Sugar MMFK - Trikot von Paris (prod. by Penacho) [4K VIDEO]",
|
||||
name: "Sugar MMFK - Trikot von Paris (prod. by Penacho) [4K VIDEO]",
|
||||
length: 255,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -627,7 +627,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "K0UxHXZwgsg",
|
||||
title: "FLER ✖\u{fe0f}Pfirsich/Late Check-Out ✖\u{fe0f}► [ official Video ] prod. by Simes Add. Vocals by Mosenu",
|
||||
name: "FLER ✖\u{fe0f}Pfirsich/Late Check-Out ✖\u{fe0f}► [ official Video ] prod. by Simes Add. Vocals by Mosenu",
|
||||
length: 245,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -658,7 +658,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "eyyNwOSQ3Yg",
|
||||
title: "MGP \"BAD BITCH\" (Official Video)",
|
||||
name: "MGP \"BAD BITCH\" (Official Video)",
|
||||
length: 166,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -689,7 +689,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "1yskotqNuXI",
|
||||
title: "RIN - Bros (prod. Minhtendo)",
|
||||
name: "RIN - Bros (prod. Minhtendo)",
|
||||
length: 219,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -720,7 +720,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "C03n4AAiL9w",
|
||||
title: "Glasperlenspiel - Geiles Leben (Lyric Video)",
|
||||
name: "Glasperlenspiel - Geiles Leben (Lyric Video)",
|
||||
length: 211,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -751,7 +751,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "a2wNRTKRusM",
|
||||
title: "Moe Phoenix - Mohammad (prod. by AriBeatz)",
|
||||
name: "Moe Phoenix - Mohammad (prod. by AriBeatz)",
|
||||
length: 197,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -782,7 +782,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "AIf61iHwWMQ",
|
||||
title: "RAF Camora feat. UFO 361, GZUZ & Bonez MC - WAFFEN (Anthrazit RR) #07",
|
||||
name: "RAF Camora feat. UFO 361, GZUZ & Bonez MC - WAFFEN (Anthrazit RR) #07",
|
||||
length: 268,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -813,7 +813,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "BixqbSRjY2Y",
|
||||
title: "RAF Camora - ALLES PROBIERT feat. BONEZ MC (prod.by Beataura & RAF Camora)",
|
||||
name: "RAF Camora - ALLES PROBIERT feat. BONEZ MC (prod.by Beataura & RAF Camora)",
|
||||
length: 319,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -844,7 +844,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "Acgy-3d4P6o",
|
||||
title: "Kontra K - Erfolg ist kein Glück (Official Video)",
|
||||
name: "Kontra K - Erfolg ist kein Glück (Official Video)",
|
||||
length: 226,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -875,7 +875,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "5M_yA9M7yNc",
|
||||
title: "RAF Camora - GOTHAM CITY (Anthrazit RR) #03",
|
||||
name: "RAF Camora - GOTHAM CITY (Anthrazit RR) #03",
|
||||
length: 156,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -906,7 +906,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "PjJuezhos3U",
|
||||
title: "Fard - \"LIEBE MACHT BLIND\" (Official Video) prod.by Abaz & X-Plosive",
|
||||
name: "Fard - \"LIEBE MACHT BLIND\" (Official Video) prod.by Abaz & X-Plosive",
|
||||
length: 258,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -937,7 +937,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "XMutaJI2-kc",
|
||||
title: "18 Karat ✖\u{fe0f}• MAMA IST NICHT STOLZ •✖\u{fe0f} [ official Video ]",
|
||||
name: "18 Karat ✖\u{fe0f}• MAMA IST NICHT STOLZ •✖\u{fe0f} [ official Video ]",
|
||||
length: 262,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -968,7 +968,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "Xac6Q7hcZkQ",
|
||||
title: "RIN - Monica Bellucci (prod. Alexis Troy)",
|
||||
name: "RIN - Monica Bellucci (prod. Alexis Troy)",
|
||||
length: 228,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -999,7 +999,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "JfwjsjBcDoU",
|
||||
title: "Helene Fischer - Achterbahn",
|
||||
name: "Helene Fischer - Achterbahn",
|
||||
length: 222,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1030,7 +1030,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "zshiQUV3ohw",
|
||||
title: "MOE PHOENIX feat. VEYSEL - GAUNER (prod. by Ghana Beats)",
|
||||
name: "MOE PHOENIX feat. VEYSEL - GAUNER (prod. by Ghana Beats)",
|
||||
length: 226,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1061,7 +1061,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "g1eTAt1_VAM",
|
||||
title: "Nimo - HYPE feat. Celo & Abdi (prod. von Matveï) [Official 4K Video]",
|
||||
name: "Nimo - HYPE feat. Celo & Abdi (prod. von Matveï) [Official 4K Video]",
|
||||
length: 303,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1092,7 +1092,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "c3rLrFC8igY",
|
||||
title: "Dame - Auf die guten alten Zeiten [Official HD Video]",
|
||||
name: "Dame - Auf die guten alten Zeiten [Official HD Video]",
|
||||
length: 252,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1123,7 +1123,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "1im4DNEYzEM",
|
||||
title: "Gzuz - Optimal (Jambeatz)",
|
||||
name: "Gzuz - Optimal (Jambeatz)",
|
||||
length: 209,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1154,7 +1154,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "8BUxw9ocM2s",
|
||||
title: "EULE aka Jazzy Gudd - Stehaufmädchen (Official Video)",
|
||||
name: "EULE aka Jazzy Gudd - Stehaufmädchen (Official Video)",
|
||||
length: 184,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1185,7 +1185,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "g4cSpnGbHPE",
|
||||
title: "CAPITAL BRA & KING KHALIL - ZWEISTELLIGE HAFTSTRAFEN (PROD. SAVEN MUSIQ)",
|
||||
name: "CAPITAL BRA & KING KHALIL - ZWEISTELLIGE HAFTSTRAFEN (PROD. SAVEN MUSIQ)",
|
||||
length: 201,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1216,7 +1216,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "1Sdj9MiCowQ",
|
||||
title: "187 Strassenbande - 10 Jahre (Jambeatz)",
|
||||
name: "187 Strassenbande - 10 Jahre (Jambeatz)",
|
||||
length: 296,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1247,7 +1247,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "2DbR35g-0ZY",
|
||||
title: "Ufo361 - \"DER PATE\" (prod. von Broke Boys) [Official HD Video]",
|
||||
name: "Ufo361 - \"DER PATE\" (prod. von Broke Boys) [Official HD Video]",
|
||||
length: 237,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1278,7 +1278,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "j09hpp3AxIE",
|
||||
title: "Die Toten Hosen // „Tage wie diese\" [Offizielles Musikvideo]",
|
||||
name: "Die Toten Hosen // „Tage wie diese\" [Offizielles Musikvideo]",
|
||||
length: 272,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1309,7 +1309,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "J3GN6JXjV3g",
|
||||
title: "Wincent Weiss - Frische Luft",
|
||||
name: "Wincent Weiss - Frische Luft",
|
||||
length: 200,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1340,7 +1340,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "pULl-p02upM",
|
||||
title: "Eunique ► CHECK (feat. Xatar) ◄ music by Lucry / prod. by Michael Jackson [Official Video]",
|
||||
name: "Eunique ► CHECK (feat. Xatar) ◄ music by Lucry / prod. by Michael Jackson [Official Video]",
|
||||
length: 240,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1371,7 +1371,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "O6By8JeCtQQ",
|
||||
title: "KING KHALIL FT. CELO & ABDI - ALLES RICHTIG SO (PROD.BY THE CRATEZ)",
|
||||
name: "KING KHALIL FT. CELO & ABDI - ALLES RICHTIG SO (PROD.BY THE CRATEZ)",
|
||||
length: 210,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1402,7 +1402,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "NGn3IYQ7M7E",
|
||||
title: "LUCIANO - VORANKOMMEN (prod. by Chryziz Beats)",
|
||||
name: "LUCIANO - VORANKOMMEN (prod. by Chryziz Beats)",
|
||||
length: 228,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1433,7 +1433,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "o43oI5x86dI",
|
||||
title: "Gzuz feat. LX- Schnapp! (prod. P.M.B.)",
|
||||
name: "Gzuz feat. LX- Schnapp! (prod. P.M.B.)",
|
||||
length: 166,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1464,7 +1464,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "7TNqUrINxzs",
|
||||
title: "Veysel - Besser als 50 Cent (OFFICIAL HD VIDEO) prod. by Fonty",
|
||||
name: "Veysel - Besser als 50 Cent (OFFICIAL HD VIDEO) prod. by Fonty",
|
||||
length: 197,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1495,7 +1495,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "f3BD5Zm3cp0",
|
||||
title: "BONEZ MC & RAF CAMORA - PALMEN AUS GOLD",
|
||||
name: "BONEZ MC & RAF CAMORA - PALMEN AUS GOLD",
|
||||
length: 231,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1526,7 +1526,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "sF4yTDp95Eo",
|
||||
title: "YONII - LAMPEDUSA prod. by LUCRY (Official 4K Video)",
|
||||
name: "YONII - LAMPEDUSA prod. by LUCRY (Official 4K Video)",
|
||||
length: 203,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1557,7 +1557,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "1EwLNHg6ejY",
|
||||
title: "Mert ft. SOOLKING - AJAJAJ (prod. by ARIBEATZ)",
|
||||
name: "Mert ft. SOOLKING - AJAJAJ (prod. by ARIBEATZ)",
|
||||
length: 224,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1588,7 +1588,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "-l75qaSDWe8",
|
||||
title: "SXTN - Bongzimmer (Official Video)",
|
||||
name: "SXTN - Bongzimmer (Official Video)",
|
||||
length: 287,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1619,7 +1619,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "7h7ntYLLrfQ",
|
||||
title: "Mark Forster - Kogong",
|
||||
name: "Mark Forster - Kogong",
|
||||
length: 223,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1650,7 +1650,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "ApUl3Ops69M",
|
||||
title: "AZET - FAST LIFE (prod. by m3) #KMNSTREET VOL. 1",
|
||||
name: "AZET - FAST LIFE (prod. by m3) #KMNSTREET VOL. 1",
|
||||
length: 179,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1681,7 +1681,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "2YcJ8Wightw",
|
||||
title: "GZUZ - CL500 (Jambeatz)",
|
||||
name: "GZUZ - CL500 (Jambeatz)",
|
||||
length: 152,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1712,7 +1712,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "W3q8Od5qJio",
|
||||
title: "Rammstein - Du Hast (Official Video)",
|
||||
name: "Rammstein - Du Hast (Official Video)",
|
||||
length: 236,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1743,7 +1743,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "WPFLAjmWCtk",
|
||||
title: "SIDO - Astronaut (feat. Andreas Bourani) OFFICIAL VIDEO",
|
||||
name: "SIDO - Astronaut (feat. Andreas Bourani) OFFICIAL VIDEO",
|
||||
length: 268,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1774,7 +1774,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "tC76tIp0kBk",
|
||||
title: "MoTrip - So wie du bist (feat. Lary)",
|
||||
name: "MoTrip - So wie du bist (feat. Lary)",
|
||||
length: 312,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1805,7 +1805,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "kiMG_JV2gbo",
|
||||
title: "Adel Tawil \"Lieder\" (Official Lyrics Video)",
|
||||
name: "Adel Tawil \"Lieder\" (Official Lyrics Video)",
|
||||
length: 230,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1836,7 +1836,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "CrYYg_atdtk",
|
||||
title: "Marteria, Yasha, Miss Platnum - Lila Wolken (Official Video)",
|
||||
name: "Marteria, Yasha, Miss Platnum - Lila Wolken (Official Video)",
|
||||
length: 231,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1867,7 +1867,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "XTPGpBBwt1w",
|
||||
title: "K.I.Z. - Hurra die Welt geht unter ft. Henning May (Official Video)",
|
||||
name: "K.I.Z. - Hurra die Welt geht unter ft. Henning May (Official Video)",
|
||||
length: 299,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1898,7 +1898,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "uC08L4xxjNM",
|
||||
title: "Max Giesinger - 80 Millionen (Offizielles Video)",
|
||||
name: "Max Giesinger - 80 Millionen (Offizielles Video)",
|
||||
length: 257,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1929,7 +1929,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "5fAoV_AAMf0",
|
||||
title: "Mark Forster - Bauch und Kopf (Videoclip)",
|
||||
name: "Mark Forster - Bauch und Kopf (Videoclip)",
|
||||
length: 257,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1960,7 +1960,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "u5Vz7obL460",
|
||||
title: "Tim Bendzko - Keine Maschine (Offizielles Video)",
|
||||
name: "Tim Bendzko - Keine Maschine (Offizielles Video)",
|
||||
length: 202,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1991,7 +1991,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "ZPJlyRv_IGI",
|
||||
title: "Deichkind - Leider Geil (Official Video)",
|
||||
name: "Deichkind - Leider Geil (Official Video)",
|
||||
length: 189,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2022,7 +2022,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "s2SLbln-JwE",
|
||||
title: "BIBI & TINA \" Jungs gegen Mädchen - MÄDCHEN GEGEN JUNGS - Das offizielle Video!",
|
||||
name: "BIBI & TINA \" Jungs gegen Mädchen - MÄDCHEN GEGEN JUNGS - Das offizielle Video!",
|
||||
length: 172,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2053,7 +2053,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "28xHtRw6pG8",
|
||||
title: "AZET - PATTE FLIESST prod. by LUCRY #KMNSTREET VOL. 5",
|
||||
name: "AZET - PATTE FLIESST prod. by LUCRY #KMNSTREET VOL. 5",
|
||||
length: 206,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2084,7 +2084,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "joWoKqUTRvc",
|
||||
title: "KC Rebell ► ALLES & NICHTS ◄ [ official Video ]",
|
||||
name: "KC Rebell ► ALLES & NICHTS ◄ [ official Video ]",
|
||||
length: 204,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2115,7 +2115,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "XNMFTqhcNrE",
|
||||
title: "Mark Forster - Flash mich (Videoclip)",
|
||||
name: "Mark Forster - Flash mich (Videoclip)",
|
||||
length: 236,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2146,7 +2146,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "v3vPLgJ9FX8",
|
||||
title: "Cheat Codes - Sex (Official Video)",
|
||||
name: "Cheat Codes - Sex (Official Video)",
|
||||
length: 260,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2177,7 +2177,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "UFXOd179kOA",
|
||||
title: "GZUZ - EBBE & FLUT (mit Xatar & Hanybal)",
|
||||
name: "GZUZ - EBBE & FLUT (mit Xatar & Hanybal)",
|
||||
length: 213,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2208,7 +2208,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "4xRsDnKgHZc",
|
||||
title: "ZUNA feat. NIMO - HOL MIR DEIN COUSIN (Official 4K Video)",
|
||||
name: "ZUNA feat. NIMO - HOL MIR DEIN COUSIN (Official 4K Video)",
|
||||
length: 206,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2239,7 +2239,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "mE3IjoEqMqY",
|
||||
title: "Hanybal - VANILLA SKY mit Nimo (prod. von Lucry) [Official 4K Video]",
|
||||
name: "Hanybal - VANILLA SKY mit Nimo (prod. von Lucry) [Official 4K Video]",
|
||||
length: 211,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2270,7 +2270,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "E7e5vxKerqA",
|
||||
title: "DARDAN FT. ENO - WER MACHT PARA? (Official Video)",
|
||||
name: "DARDAN FT. ENO - WER MACHT PARA? (Official Video)",
|
||||
length: 195,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2301,7 +2301,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "axmZ_5Rx4Go",
|
||||
title: "Adel Tawil \"Zuhause\" (Official Music Video)",
|
||||
name: "Adel Tawil \"Zuhause\" (Official Music Video)",
|
||||
length: 210,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2332,7 +2332,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "44Ig6BsOCYA",
|
||||
title: "Olexesh - PURPLE HAZE (Offizielles Video)",
|
||||
name: "Olexesh - PURPLE HAZE (Offizielles Video)",
|
||||
length: 279,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2363,7 +2363,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "3iLBFEJjdN0",
|
||||
title: "SIDO - Löwenzahn feat. Olexesh (prod. by DJ Desue & x-plosive)",
|
||||
name: "SIDO - Löwenzahn feat. Olexesh (prod. by DJ Desue & x-plosive)",
|
||||
length: 242,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2394,7 +2394,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "M-ncq2eHF_k",
|
||||
title: "Philipp Poisel - Ich will nur (Offizielles Video)",
|
||||
name: "Philipp Poisel - Ich will nur (Offizielles Video)",
|
||||
length: 233,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2425,7 +2425,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "-AJoJ-ggiKI",
|
||||
title: "LX & Maxwell feat. Gzuz - HaifischNikez (Jambeatz)",
|
||||
name: "LX & Maxwell feat. Gzuz - HaifischNikez (Jambeatz)",
|
||||
length: 215,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2456,7 +2456,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "cgb-zp9DDHg",
|
||||
title: "Bushido X Shindy - Brot brechen",
|
||||
name: "Bushido X Shindy - Brot brechen",
|
||||
length: 191,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2487,7 +2487,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "Q7ZXg3KQLt0",
|
||||
title: "KOLLEGAH - Genozid (prod. von B-Case & Alexis Troy) (Official HD Video)",
|
||||
name: "KOLLEGAH - Genozid (prod. von B-Case & Alexis Troy) (Official HD Video)",
|
||||
length: 407,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2518,7 +2518,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "ysAEZOwp5rM",
|
||||
title: "KOLLEGAH - John Gotti (prod. von Alexis Troy) (Official HD Video)",
|
||||
name: "KOLLEGAH - John Gotti (prod. von Alexis Troy) (Official HD Video)",
|
||||
length: 207,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2549,7 +2549,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "m5vfng33SVE",
|
||||
title: "Philipp Dittberner - Das ist dein Leben (Official Video)",
|
||||
name: "Philipp Dittberner - Das ist dein Leben (Official Video)",
|
||||
length: 282,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2580,7 +2580,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "yMfgjVlGbUE",
|
||||
title: "SpongeBOZZ - SFTB/Apocalyptic Infinity/Payback #forsundiego (Prod. by Digital Drama)",
|
||||
name: "SpongeBOZZ - SFTB/Apocalyptic Infinity/Payback #forsundiego (Prod. by Digital Drama)",
|
||||
length: 1622,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2611,7 +2611,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "OQIYEPe6DWY",
|
||||
title: "Kraftwerk - Das Model",
|
||||
name: "Kraftwerk - Das Model",
|
||||
length: 262,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2642,7 +2642,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "5FS8RIH7BpI",
|
||||
title: "GENETIKK - Wünsch dir was (Official HD Video)",
|
||||
name: "GENETIKK - Wünsch dir was (Official HD Video)",
|
||||
length: 303,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2673,7 +2673,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "zSRKgFB9piY",
|
||||
title: "Keine ist wie Du - Joel Brandenstein & Chrisoula Botsika ( Gregor Meyle Acoustic Cover )",
|
||||
name: "Keine ist wie Du - Joel Brandenstein & Chrisoula Botsika ( Gregor Meyle Acoustic Cover )",
|
||||
length: 256,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2704,7 +2704,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "e4eHhgwHCME",
|
||||
title: "Kollegah & Farid Bang ✖\u{fe0f}STURMMASKE AUF ✖\u{fe0f} [official video]",
|
||||
name: "Kollegah & Farid Bang ✖\u{fe0f}STURMMASKE AUF ✖\u{fe0f} [official video]",
|
||||
length: 275,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2735,7 +2735,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "q3hZvho7jNk",
|
||||
title: "KC Rebell ✖\u{fe0f} PAPER ✖\u{fe0f} [ official Video ] GEE Futuristic, Nikki 3k & Joshimixu",
|
||||
name: "KC Rebell ✖\u{fe0f} PAPER ✖\u{fe0f} [ official Video ] GEE Futuristic, Nikki 3k & Joshimixu",
|
||||
length: 222,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2766,7 +2766,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "0nWysyj_Z4Y",
|
||||
title: "Nimo - FLOUZ KOMMT FLOUZ GEHT (prod. von Jimmy Torrio) [Official 4K Video]",
|
||||
name: "Nimo - FLOUZ KOMMT FLOUZ GEHT (prod. von Jimmy Torrio) [Official 4K Video]",
|
||||
length: 191,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2797,7 +2797,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "aGCcLWU0OVo",
|
||||
title: "SIDO - Gürtel am Arm",
|
||||
name: "SIDO - Gürtel am Arm",
|
||||
length: 218,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2828,7 +2828,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "OQsXLK4MeEA",
|
||||
title: "JBB 2013 - SpongeBOZZ vs. Gio (Finale HR) prod. by Digital Drama",
|
||||
name: "JBB 2013 - SpongeBOZZ vs. Gio (Finale HR) prod. by Digital Drama",
|
||||
length: 400,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2859,7 +2859,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "xm7dxIqOO2M",
|
||||
title: "KURDO - Halbmond (prod. by Amir & Kostas)",
|
||||
name: "KURDO - Halbmond (prod. by Amir & Kostas)",
|
||||
length: 272,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2890,7 +2890,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "jlaaByab4Zk",
|
||||
title: "Mc Yankoo feat. Milica Todorovic - Ljubi me budalo (official Video)",
|
||||
name: "Mc Yankoo feat. Milica Todorovic - Ljubi me budalo (official Video)",
|
||||
length: 224,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2921,7 +2921,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "KG9-jSqXz4U",
|
||||
title: "Oft Gefragt - AnnenMayKantereit (Official Video)",
|
||||
name: "Oft Gefragt - AnnenMayKantereit (Official Video)",
|
||||
length: 205,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2952,7 +2952,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "7dISZnwsBSA",
|
||||
title: "Prinz Pi - 1,40m (feat. Philipp Dittberner)",
|
||||
name: "Prinz Pi - 1,40m (feat. Philipp Dittberner)",
|
||||
length: 284,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2983,7 +2983,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "F_PPdS-PB14",
|
||||
title: "Nimo - IDÉAL (prod. von SOTT) [Official 4K Video]",
|
||||
name: "Nimo - IDÉAL (prod. von SOTT) [Official 4K Video]",
|
||||
length: 253,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -3014,7 +3014,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "DMg9idvVY8M",
|
||||
title: "Nimo - BITTER (prod. von Jimmy Torrio) [Official 4K Video]",
|
||||
name: "Nimo - BITTER (prod. von Jimmy Torrio) [Official 4K Video]",
|
||||
length: 173,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -3045,7 +3045,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "DGEmoSFI94Y",
|
||||
title: "SDP - Kurz für immer bleiben",
|
||||
name: "SDP - Kurz für immer bleiben",
|
||||
length: 218,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -3076,7 +3076,7 @@ Paginator(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "BtZufymxHvE",
|
||||
title: "LX & Maxwell - Ausser Kontrolle (Jambeatz)",
|
||||
name: "LX & Maxwell - Ausser Kontrolle (Jambeatz)",
|
||||
length: 159,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -10,7 +10,7 @@ Playlist(
|
|||
items: [
|
||||
PlaylistVideo(
|
||||
id: "Bkj3IVIO2Os",
|
||||
title: "Stereoact feat. Kerstin Ott - Die Immer Lacht (Official Video HD)",
|
||||
name: "Stereoact feat. Kerstin Ott - Die Immer Lacht (Official Video HD)",
|
||||
length: 216,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -41,7 +41,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "lHZtcC67yrY",
|
||||
title: "Andreas Gabalier - Hulapalu",
|
||||
name: "Andreas Gabalier - Hulapalu",
|
||||
length: 188,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -72,7 +72,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "TSkVVVBS9k8",
|
||||
title: "BAUSA - Was du Liebe nennst (Official Music Video) [prod. von Bausa, Jugglerz & The Cratez]",
|
||||
name: "BAUSA - Was du Liebe nennst (Official Music Video) [prod. von Bausa, Jugglerz & The Cratez]",
|
||||
length: 237,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -103,7 +103,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "lc-cnCRhE7c",
|
||||
title: "Kay One feat. Pietro Lombardi - Señorita (prod. by Stard Ova)",
|
||||
name: "Kay One feat. Pietro Lombardi - Señorita (prod. by Stard Ova)",
|
||||
length: 250,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -134,7 +134,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "3ryohiCVq3M",
|
||||
title: "Namika - Lieblingsmensch (Official Video)",
|
||||
name: "Namika - Lieblingsmensch (Official Video)",
|
||||
length: 191,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -165,7 +165,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "BNHamTwxJ6Q",
|
||||
title: "Roland Kaiser, Maite Kelly - Warum hast du nicht nein gesagt (Club Mix / Videoclip)",
|
||||
name: "Roland Kaiser, Maite Kelly - Warum hast du nicht nein gesagt (Club Mix / Videoclip)",
|
||||
length: 217,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -196,7 +196,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "5mqelmYUcI0",
|
||||
title: "Kay One - Louis Louis (prod. by Stard Ova)",
|
||||
name: "Kay One - Louis Louis (prod. by Stard Ova)",
|
||||
length: 218,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -227,7 +227,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "k9EYjn5f_nE",
|
||||
title: "Andreas Bourani - Auf uns (Official Video)",
|
||||
name: "Andreas Bourani - Auf uns (Official Video)",
|
||||
length: 244,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -258,7 +258,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "fkMg_X9lHMc",
|
||||
title: "Marteria - Kids (2 Finger an den Kopf) [Offizielles Video]",
|
||||
name: "Marteria - Kids (2 Finger an den Kopf) [Offizielles Video]",
|
||||
length: 230,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -289,7 +289,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "4wOoLLDXbDY",
|
||||
title: "CRO - Easy (Official Version)",
|
||||
name: "CRO - Easy (Official Version)",
|
||||
length: 195,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -320,7 +320,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "Z_mf9aCHag8",
|
||||
title: "KC Rebell feat. Moé ► BIST DU REAL ◄ [ official Video 4K ] | Dagi Bee",
|
||||
name: "KC Rebell feat. Moé ► BIST DU REAL ◄ [ official Video 4K ] | Dagi Bee",
|
||||
length: 186,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -351,7 +351,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "cZ58odQo87A",
|
||||
title: "SDP feat. Adel Tawil - Ich will nur dass du weißt",
|
||||
name: "SDP feat. Adel Tawil - Ich will nur dass du weißt",
|
||||
length: 222,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -382,7 +382,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "1il3RFk5Okw",
|
||||
title: "Mark Forster - Chöre (Willkommen bei den Hartmanns Version)",
|
||||
name: "Mark Forster - Chöre (Willkommen bei den Hartmanns Version)",
|
||||
length: 209,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -413,7 +413,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "8WQMBv2deYQ",
|
||||
title: "CRO - Traum (Official Version)",
|
||||
name: "CRO - Traum (Official Version)",
|
||||
length: 219,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -444,7 +444,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "vGrfFzagzHs",
|
||||
title: "CRO - Whatever (Official Version)",
|
||||
name: "CRO - Whatever (Official Version)",
|
||||
length: 207,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -475,7 +475,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "1gDbpWC_9pE",
|
||||
title: "Sarah Connor - Wie schön Du bist (Official Video)",
|
||||
name: "Sarah Connor - Wie schön Du bist (Official Video)",
|
||||
length: 216,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -506,7 +506,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "p-AWcCCbBHw",
|
||||
title: "Nimo - HEUTE MIT MIR (prod. von PzY) [Official 4K Video]",
|
||||
name: "Nimo - HEUTE MIT MIR (prod. von PzY) [Official 4K Video]",
|
||||
length: 256,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -537,7 +537,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "RPN88D_HjMU",
|
||||
title: "Xavier Naidoo - Ich kenne nichts (Das so schön ist wie du) [Official Video]",
|
||||
name: "Xavier Naidoo - Ich kenne nichts (Das so schön ist wie du) [Official Video]",
|
||||
length: 332,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -568,7 +568,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "5PST7Ld4wWU",
|
||||
title: "Max Giesinger - Wenn sie tanzt (Offizielles Video)",
|
||||
name: "Max Giesinger - Wenn sie tanzt (Offizielles Video)",
|
||||
length: 225,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -599,7 +599,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "opoDBF_b-fg",
|
||||
title: "ALLIGATOAH - WILLST DU (OFFICIAL HD VERSION AGGRO.TV)",
|
||||
name: "ALLIGATOAH - WILLST DU (OFFICIAL HD VERSION AGGRO.TV)",
|
||||
length: 307,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -630,7 +630,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "AMT9IOyXmBM",
|
||||
title: "SIDO feat. Mark Forster - Einer dieser Steine (Official Video)",
|
||||
name: "SIDO feat. Mark Forster - Einer dieser Steine (Official Video)",
|
||||
length: 258,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -661,7 +661,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "VP5B1UmgHfc",
|
||||
title: "SDP feat. Sido - Ne Leiche",
|
||||
name: "SDP feat. Sido - Ne Leiche",
|
||||
length: 328,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -692,7 +692,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "vcuQpbs0yT0",
|
||||
title: "KURDO - YA SALAM (prod. by Kostas Karagiozidis & Dj Tuneruno )",
|
||||
name: "KURDO - YA SALAM (prod. by Kostas Karagiozidis & Dj Tuneruno )",
|
||||
length: 224,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -723,7 +723,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "LeMLVEJLruQ",
|
||||
title: "Gestört aber GeiL feat. Sebastian Hämer - Ich & Du (Official Video HD)",
|
||||
name: "Gestört aber GeiL feat. Sebastian Hämer - Ich & Du (Official Video HD)",
|
||||
length: 229,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -754,7 +754,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "MtDPKJSsBgc",
|
||||
title: "Mark Forster - Au Revoir (Videoclip) ft. Sido",
|
||||
name: "Mark Forster - Au Revoir (Videoclip) ft. Sido",
|
||||
length: 227,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -785,7 +785,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "4tDpYxNYqPg",
|
||||
title: "Kerstin Ott - Scheissmelodie (Offizielles Musikvideo)",
|
||||
name: "Kerstin Ott - Scheissmelodie (Offizielles Musikvideo)",
|
||||
length: 209,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -816,7 +816,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "EkWjaoH7k6w",
|
||||
title: "Adel Tawil - Ist da jemand (Official Video)",
|
||||
name: "Adel Tawil - Ist da jemand (Official Video)",
|
||||
length: 251,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -847,7 +847,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "tERRFWuYG48",
|
||||
title: "Barfuß Am Klavier - AnnenMayKantereit",
|
||||
name: "Barfuß Am Klavier - AnnenMayKantereit",
|
||||
length: 202,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -878,7 +878,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "wCcJuN47UcY",
|
||||
title: "Revolverheld feat. Marta Jandová - Halt Dich an mir fest (Offizielles Musikvideo)",
|
||||
name: "Revolverheld feat. Marta Jandová - Halt Dich an mir fest (Offizielles Musikvideo)",
|
||||
length: 213,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -909,7 +909,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "qdtLCfEcPL4",
|
||||
title: "Peter Fox - Alles neu (offizielles Video)",
|
||||
name: "Peter Fox - Alles neu (offizielles Video)",
|
||||
length: 272,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -940,7 +940,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "wjXUBG15eZ8",
|
||||
title: "257ers - Holz (Official HD Video)",
|
||||
name: "257ers - Holz (Official HD Video)",
|
||||
length: 214,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -971,7 +971,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "HBjDZMJUduo",
|
||||
title: "Laserkraft 3D - Nein Mann (official Video)",
|
||||
name: "Laserkraft 3D - Nein Mann (official Video)",
|
||||
length: 231,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1002,7 +1002,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "xkXQQ0IAbk0",
|
||||
title: "MIAMI YACINE - BON VOYAGE prod. by AriBeatz (Official 4K Video)",
|
||||
name: "MIAMI YACINE - BON VOYAGE prod. by AriBeatz (Official 4K Video)",
|
||||
length: 159,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1033,7 +1033,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "DraA3PUuoQc",
|
||||
title: "Pocahontas - AnnenMayKantereit",
|
||||
name: "Pocahontas - AnnenMayKantereit",
|
||||
length: 192,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1064,7 +1064,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "wMIGQp4YhuU",
|
||||
title: "Xavier Naidoo - Alles kann besser werden [Official Video]",
|
||||
name: "Xavier Naidoo - Alles kann besser werden [Official Video]",
|
||||
length: 269,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1095,7 +1095,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "38lrK74voaI",
|
||||
title: "Olexesh - MAGISCH feat. Edin (prod. von PzY) [Official 4K Video]",
|
||||
name: "Olexesh - MAGISCH feat. Edin (prod. von PzY) [Official 4K Video]",
|
||||
length: 270,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1126,7 +1126,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "2qW9rOSFF1M",
|
||||
title: "BONEZ MC & RAF CAMORA - AN IHNEN VORBEI",
|
||||
name: "BONEZ MC & RAF CAMORA - AN IHNEN VORBEI",
|
||||
length: 220,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1157,7 +1157,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "tMILH6UEfPA",
|
||||
title: "Veysel - Kleiner Cabrón (OFFICIAL HD VIDEO) prod. by Macloud",
|
||||
name: "Veysel - Kleiner Cabrón (OFFICIAL HD VIDEO) prod. by Macloud",
|
||||
length: 213,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1188,7 +1188,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "izHB2EdMngg",
|
||||
title: "Vanessa Mai - Ich sterb für dich",
|
||||
name: "Vanessa Mai - Ich sterb für dich",
|
||||
length: 190,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1219,7 +1219,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "haECT-SerHk",
|
||||
title: "Helene Fischer - Atemlos durch die Nacht",
|
||||
name: "Helene Fischer - Atemlos durch die Nacht",
|
||||
length: 219,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1250,7 +1250,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "cVikZ8Oe_XA",
|
||||
title: "Falco - Rock Me Amadeus (Official Video)",
|
||||
name: "Falco - Rock Me Amadeus (Official Video)",
|
||||
length: 225,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1281,7 +1281,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "drFsXLChrWc",
|
||||
title: "257ers - Holland (Official HD Video)",
|
||||
name: "257ers - Holland (Official HD Video)",
|
||||
length: 213,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1312,7 +1312,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "1EMFt7m_8yE",
|
||||
title: "SDP - Ich muss immer an dich denken",
|
||||
name: "SDP - Ich muss immer an dich denken",
|
||||
length: 217,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1343,7 +1343,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "_yWU0lFghxU",
|
||||
title: "Seeed - Ding (official Video)",
|
||||
name: "Seeed - Ding (official Video)",
|
||||
length: 211,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1374,7 +1374,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "XlD-LO3ogFM",
|
||||
title: "Mark Forster - Wir sind groß (Lyric Video)",
|
||||
name: "Mark Forster - Wir sind groß (Lyric Video)",
|
||||
length: 204,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1405,7 +1405,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "nAzjWqNfgvc",
|
||||
title: "Gestört aber GeiL & Koby Funk feat. Wincent Weiss - Unter Meiner Haut (Official Video HD)",
|
||||
name: "Gestört aber GeiL & Koby Funk feat. Wincent Weiss - Unter Meiner Haut (Official Video HD)",
|
||||
length: 218,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1436,7 +1436,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "PySC3RGhZJU",
|
||||
title: "CRO - Bad Chick (Official Version)",
|
||||
name: "CRO - Bad Chick (Official Version)",
|
||||
length: 218,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1467,7 +1467,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "G-iwLoyH6ZE",
|
||||
title: "CAPITAL BRA - NUR NOCH GUCCI (prod. The Cratez x Hoodboyz)",
|
||||
name: "CAPITAL BRA - NUR NOCH GUCCI (prod. The Cratez x Hoodboyz)",
|
||||
length: 232,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1498,7 +1498,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "fgCOUO-s8nY",
|
||||
title: "Jupiter Jones - Still (Videoclip)",
|
||||
name: "Jupiter Jones - Still (Videoclip)",
|
||||
length: 238,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1529,7 +1529,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "m-Ik3yy728Y",
|
||||
title: "Andreas Bourani - Auf anderen Wegen (Official Video)",
|
||||
name: "Andreas Bourani - Auf anderen Wegen (Official Video)",
|
||||
length: 245,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1560,7 +1560,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "U0_UYW5Y4cM",
|
||||
title: "Andreas Gabalier - I sing a Liad für Di",
|
||||
name: "Andreas Gabalier - I sing a Liad für Di",
|
||||
length: 188,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1591,7 +1591,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "rsrDYTEicq8",
|
||||
title: "RAF CAMORA - Primo (prod. X-Plosive & RAF Camora)",
|
||||
name: "RAF CAMORA - Primo (prod. X-Plosive & RAF Camora)",
|
||||
length: 214,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1622,7 +1622,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "2aU4wRgl_0E",
|
||||
title: "Ufo361 - \"Nice Girl 2.0\" (prod. von AT Beatz) [Official HD Video]",
|
||||
name: "Ufo361 - \"Nice Girl 2.0\" (prod. von AT Beatz) [Official HD Video]",
|
||||
length: 169,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1653,7 +1653,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "FzcJxJAxFtw",
|
||||
title: "VEYSEL & MOZZIK - TI AMO (OFFICIAL VIDEO)",
|
||||
name: "VEYSEL & MOZZIK - TI AMO (OFFICIAL VIDEO)",
|
||||
length: 267,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1684,7 +1684,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "2hyibXdOp5w",
|
||||
title: "XAVAS (Xavier Naidoo & Kool Savas) \"Schau nicht mehr zurück\" (Official HD Video 2012)",
|
||||
name: "XAVAS (Xavier Naidoo & Kool Savas) \"Schau nicht mehr zurück\" (Official HD Video 2012)",
|
||||
length: 234,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1715,7 +1715,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "YaKG5cUVB30",
|
||||
title: "Ali Bumaye - Sex ohne Grund feat. Shindy",
|
||||
name: "Ali Bumaye - Sex ohne Grund feat. Shindy",
|
||||
length: 166,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1746,7 +1746,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "Ahwc-ouFeTQ",
|
||||
title: "ALLIGATOAH - Willst Du (OFFICIAL VIDEO) \'Triebwerke\' Album (HITBOX)",
|
||||
name: "ALLIGATOAH - Willst Du (OFFICIAL VIDEO) \'Triebwerke\' Album (HITBOX)",
|
||||
length: 224,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1777,7 +1777,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "SoImFhORKpg",
|
||||
title: "Bonez MC & RAF Camora feat. Gzuz & Maxwell - Kontrollieren (prod. by Beataura & RAF Camora)",
|
||||
name: "Bonez MC & RAF Camora feat. Gzuz & Maxwell - Kontrollieren (prod. by Beataura & RAF Camora)",
|
||||
length: 232,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1808,7 +1808,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "jP4-XrbGt3M",
|
||||
title: "Mark Forster - Sowieso (Official Video)",
|
||||
name: "Mark Forster - Sowieso (Official Video)",
|
||||
length: 161,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1839,7 +1839,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "Yy2RsG4lnm4",
|
||||
title: "Anna-Maria Zimmermann - 1000 Träume weit (Tornero)",
|
||||
name: "Anna-Maria Zimmermann - 1000 Träume weit (Tornero)",
|
||||
length: 254,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1870,7 +1870,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "388e_8mu1t4",
|
||||
title: "SDP feat. Sido - Die Nacht von Freitag auf Montag",
|
||||
name: "SDP feat. Sido - Die Nacht von Freitag auf Montag",
|
||||
length: 241,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1901,7 +1901,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "dHHtPi-j7dQ",
|
||||
title: "Wolkenfrei - Wolke 7 (Videoclip)",
|
||||
name: "Wolkenfrei - Wolke 7 (Videoclip)",
|
||||
length: 239,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1932,7 +1932,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "d8ERTCVXIUE",
|
||||
title: "Ali As feat. Namika – Lass sie tanzen (Square Dance) // prod. ELI",
|
||||
name: "Ali As feat. Namika – Lass sie tanzen (Square Dance) // prod. ELI",
|
||||
length: 251,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1963,7 +1963,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "vQXn3EzzYY4",
|
||||
title: "Frei.Wild - Weil Du mich nur verarscht hast (2011) [Offizieller Videoclip]",
|
||||
name: "Frei.Wild - Weil Du mich nur verarscht hast (2011) [Offizieller Videoclip]",
|
||||
length: 208,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1994,7 +1994,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "zA-BTpC-yvI",
|
||||
title: "AZET feat. RAF CAMORA - QA BONE (Official Audio)",
|
||||
name: "AZET feat. RAF CAMORA - QA BONE (Official Audio)",
|
||||
length: 202,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2025,7 +2025,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "rnzIN9H_G10",
|
||||
title: "LEA - Leiser (Pseudo Video)",
|
||||
name: "LEA - Leiser (Pseudo Video)",
|
||||
length: 209,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2056,7 +2056,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "fcBbT1GTxqM",
|
||||
title: "Kay One - Ich brech die Herzen",
|
||||
name: "Kay One - Ich brech die Herzen",
|
||||
length: 229,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2087,7 +2087,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "wCDsm_dt1cI",
|
||||
title: "KLUBBB3 - Du schaffst das schon (Offizielles Video)",
|
||||
name: "KLUBBB3 - Du schaffst das schon (Offizielles Video)",
|
||||
length: 190,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2118,7 +2118,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "4j3AOJV1J8I",
|
||||
title: "23 - Bushido & Sido feat. Peter Maffay - Erwachsen sein",
|
||||
name: "23 - Bushido & Sido feat. Peter Maffay - Erwachsen sein",
|
||||
length: 218,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2149,7 +2149,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "RtuW08ZIgvg",
|
||||
title: "Söhne Mannheims - Und wenn ein Lied [Official Video]",
|
||||
name: "Söhne Mannheims - Und wenn ein Lied [Official Video]",
|
||||
length: 249,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2180,7 +2180,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "cbTXqKBIQ40",
|
||||
title: "Philipp Poisel - Eiserner Steg (Klavier Version) - Offizielles Video",
|
||||
name: "Philipp Poisel - Eiserner Steg (Klavier Version) - Offizielles Video",
|
||||
length: 250,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2211,7 +2211,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "oSd0Lph4luY",
|
||||
title: "MIKE SINGER - DEJA VU (Offizielles Video)",
|
||||
name: "MIKE SINGER - DEJA VU (Offizielles Video)",
|
||||
length: 229,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2242,7 +2242,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "oq0rrYrufYU",
|
||||
title: "JORIS - Herz über Kopf (Official Video)",
|
||||
name: "JORIS - Herz über Kopf (Official Video)",
|
||||
length: 209,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2273,7 +2273,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "0-P_YkS0z8s",
|
||||
title: "KC Rebell feat. Summer Cem ► AUGENBLICK ◄ [ official Video ] 4K",
|
||||
name: "KC Rebell feat. Summer Cem ► AUGENBLICK ◄ [ official Video ] 4K",
|
||||
length: 208,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2304,7 +2304,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "4BAKb2p450Q",
|
||||
title: "Tim Bendzko - Nur Noch Kurz Die Welt Retten (Offizielles Video)",
|
||||
name: "Tim Bendzko - Nur Noch Kurz Die Welt Retten (Offizielles Video)",
|
||||
length: 191,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2335,7 +2335,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "yqObMM_QzVQ",
|
||||
title: "Casper - Im Ascheregen",
|
||||
name: "Casper - Im Ascheregen",
|
||||
length: 303,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2366,7 +2366,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "dlvStoOyEzE",
|
||||
title: "Alligatoah - Du bist schön (Official Video)",
|
||||
name: "Alligatoah - Du bist schön (Official Video)",
|
||||
length: 246,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2397,7 +2397,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "VNttGAaek2U",
|
||||
title: "Revolverheld - Lass Uns Gehen (Offizielles Musikvideo)",
|
||||
name: "Revolverheld - Lass Uns Gehen (Offizielles Musikvideo)",
|
||||
length: 214,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2428,7 +2428,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "TxZMfufRJfo",
|
||||
title: "Oft Gefragt - AnnenMayKantereit (Official Video)",
|
||||
name: "Oft Gefragt - AnnenMayKantereit (Official Video)",
|
||||
length: 189,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2459,7 +2459,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "6agT2asF4as",
|
||||
title: "CAPO - MON CHÉRI ft. NIMO (prod. von Zeeko & Veteran) [Official Audio]",
|
||||
name: "CAPO - MON CHÉRI ft. NIMO (prod. von Zeeko & Veteran) [Official Audio]",
|
||||
length: 230,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2490,7 +2490,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "EcW0n83La5A",
|
||||
title: "DIE LOCHIS - LIEBLINGSLIED (Offizielles Video) | BEREIT FÜR @HE/RO ?",
|
||||
name: "DIE LOCHIS - LIEBLINGSLIED (Offizielles Video) | BEREIT FÜR @HE/RO ?",
|
||||
length: 212,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2521,7 +2521,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "_b61hg8UlZM",
|
||||
title: "CAPO – Lambo Diablo GT feat. Nimo (prod. Von SOTT & Veteran & Zeeko) [Official Audio]",
|
||||
name: "CAPO – Lambo Diablo GT feat. Nimo (prod. Von SOTT & Veteran & Zeeko) [Official Audio]",
|
||||
length: 285,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2552,7 +2552,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "kDMFranvFuQ",
|
||||
title: "Joel Brandenstein - Diese Liebe (Offizielles Musikvideo)",
|
||||
name: "Joel Brandenstein - Diese Liebe (Offizielles Musikvideo)",
|
||||
length: 359,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2583,7 +2583,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "1apku0pVDeE",
|
||||
title: "Wincent Weiss - Feuerwerk (Official Video)",
|
||||
name: "Wincent Weiss - Feuerwerk (Official Video)",
|
||||
length: 213,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2614,7 +2614,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "g6JYzOjglBs",
|
||||
title: "Seeed - Aufstehn (official Video)",
|
||||
name: "Seeed - Aufstehn (official Video)",
|
||||
length: 231,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2645,7 +2645,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "GYK-NfOo7b4",
|
||||
title: "Seeed - Dickes B (official Video)",
|
||||
name: "Seeed - Dickes B (official Video)",
|
||||
length: 240,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2676,7 +2676,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "omUuR45iU0g",
|
||||
title: "KC Rebell feat. Summer Cem: \"HAYVAN\" [official Video]",
|
||||
name: "KC Rebell feat. Summer Cem: \"HAYVAN\" [official Video]",
|
||||
length: 291,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2707,7 +2707,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "w7BE3inS-NM",
|
||||
title: "Adel Tawil - Bis hier und noch weiter (Official Video) ft. KC Rebell, Summer Cem",
|
||||
name: "Adel Tawil - Bis hier und noch weiter (Official Video) ft. KC Rebell, Summer Cem",
|
||||
length: 228,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2738,7 +2738,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "FM-5BPMnhm0",
|
||||
title: "SDP feat. Weekend - Tanz aus der Reihe!",
|
||||
name: "SDP feat. Weekend - Tanz aus der Reihe!",
|
||||
length: 234,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2769,7 +2769,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "MnNZNfixTOw",
|
||||
title: "Philipp Poisel - Wie soll ein Mensch das ertragen",
|
||||
name: "Philipp Poisel - Wie soll ein Mensch das ertragen",
|
||||
length: 278,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2800,7 +2800,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "qe80EeU8cT8",
|
||||
title: "Xavier Naidoo - Wann (feat. Cassandra Steen) [Official Video]",
|
||||
name: "Xavier Naidoo - Wann (feat. Cassandra Steen) [Official Video]",
|
||||
length: 327,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2831,7 +2831,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "-s2-6KYgqpQ",
|
||||
title: "Alligatoah - Narben (Official Video)",
|
||||
name: "Alligatoah - Narben (Official Video)",
|
||||
length: 264,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2862,7 +2862,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "RSlp874hESE",
|
||||
title: "Kollegah & Farid Bang - \"ZIEH DEN RUCKSACK AUS\" [ official Video ]",
|
||||
name: "Kollegah & Farid Bang - \"ZIEH DEN RUCKSACK AUS\" [ official Video ]",
|
||||
length: 162,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2893,7 +2893,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "oTI3tRQ_-3k",
|
||||
title: "SDP - Wenn ich groß bin",
|
||||
name: "SDP - Wenn ich groß bin",
|
||||
length: 225,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2924,7 +2924,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "_okA84gaEJw",
|
||||
title: "SXTN - Von Party zu Party (Official Video)",
|
||||
name: "SXTN - Von Party zu Party (Official Video)",
|
||||
length: 221,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2955,7 +2955,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "pLHnnJRaP7Q",
|
||||
title: "House Rockerz - HerzRasen (Official Video HD)",
|
||||
name: "House Rockerz - HerzRasen (Official Video HD)",
|
||||
length: 207,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2986,7 +2986,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "H2hGrsExuyc",
|
||||
title: "GZUZ \"Was Hast Du Gedacht\" (WSHH Exclusive - Official Music Video)",
|
||||
name: "GZUZ \"Was Hast Du Gedacht\" (WSHH Exclusive - Official Music Video)",
|
||||
length: 188,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -3017,7 +3017,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "RsZvjqG2lec",
|
||||
title: "Tim Bendzko - Wenn Worte meine Sprache wären (Offizielles Video)",
|
||||
name: "Tim Bendzko - Wenn Worte meine Sprache wären (Offizielles Video)",
|
||||
length: 196,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -3048,7 +3048,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "qYRCiQ6d35w",
|
||||
title: "BONEZ MC & RAF CAMORA feat GZUZ - MÖRDER",
|
||||
name: "BONEZ MC & RAF CAMORA feat GZUZ - MÖRDER",
|
||||
length: 240,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -3079,7 +3079,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "zMPIobcM2j0",
|
||||
title: "ZUNA feat. AZET & NOIZY - NUMMER 1 prod. by DJ A-BOOM",
|
||||
name: "ZUNA feat. AZET & NOIZY - NUMMER 1 prod. by DJ A-BOOM",
|
||||
length: 212,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -10,7 +10,7 @@ Playlist(
|
|||
items: [
|
||||
PlaylistVideo(
|
||||
id: "X82TrticM4A",
|
||||
title: "Minecraft SHINE (Trailer)",
|
||||
name: "Minecraft SHINE (Trailer)",
|
||||
length: 80,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -41,7 +41,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "RPGLMuxkLCs",
|
||||
title: "DAS LAGERFEUERLIED - Minecraft SHINE #001 [Deutsch/HD]",
|
||||
name: "DAS LAGERFEUERLIED - Minecraft SHINE #001 [Deutsch/HD]",
|
||||
length: 1356,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -72,7 +72,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "z-ALpnnQLrk",
|
||||
title: "MAGISCHES FURZMONSTER - Minecraft SHINE #002 [Deutsch/HD]",
|
||||
name: "MAGISCHES FURZMONSTER - Minecraft SHINE #002 [Deutsch/HD]",
|
||||
length: 1039,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -103,7 +103,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "_rrbTTv8zcQ",
|
||||
title: "UNTERIRDISCHE RIESENPILZHÖHLEN - Minecraft SHINE #003 [Deutsch/HD]",
|
||||
name: "UNTERIRDISCHE RIESENPILZHÖHLEN - Minecraft SHINE #003 [Deutsch/HD]",
|
||||
length: 1447,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -134,7 +134,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "JE16OKTawLw",
|
||||
title: "BESTE AXT IM SPIEL GEFUNDEN?! - Minecraft SHINE #004 [Deutsch/HD]",
|
||||
name: "BESTE AXT IM SPIEL GEFUNDEN?! - Minecraft SHINE #004 [Deutsch/HD]",
|
||||
length: 1238,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -165,7 +165,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "RQNY0Wzm7DQ",
|
||||
title: "ERZERAUSCH IM MINENSCHACHT - Minecraft SHINE #005 [Deutsch/HD]",
|
||||
name: "ERZERAUSCH IM MINENSCHACHT - Minecraft SHINE #005 [Deutsch/HD]",
|
||||
length: 1405,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -196,7 +196,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "uhy24PKBkd0",
|
||||
title: "FUSIONSOFEN & ERSTER IM NETHER?! - Minecraft SHINE #006 [Deutsch/HD]",
|
||||
name: "FUSIONSOFEN & ERSTER IM NETHER?! - Minecraft SHINE #006 [Deutsch/HD]",
|
||||
length: 1569,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -227,7 +227,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "OL1hQadBHfs",
|
||||
title: "EPISCHER ROGUEDUNGEON - Minecraft SHINE #007 [Deutsch/HD]",
|
||||
name: "EPISCHER ROGUEDUNGEON - Minecraft SHINE #007 [Deutsch/HD]",
|
||||
length: 1534,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -258,7 +258,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "Zge_SUfk0r8",
|
||||
title: "DIAMANTZOMBIES auf NETHEREBENE - Minecraft SHINE #008 [Deutsch/HD]",
|
||||
name: "DIAMANTZOMBIES auf NETHEREBENE - Minecraft SHINE #008 [Deutsch/HD]",
|
||||
length: 1726,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -289,7 +289,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "yFGIeU_IDE4",
|
||||
title: "HÖLLISCHE SCHLACHT um 2 DIAMANTBLÖCKE - Minecraft SHINE #009 [Deutsch/HD]",
|
||||
name: "HÖLLISCHE SCHLACHT um 2 DIAMANTBLÖCKE - Minecraft SHINE #009 [Deutsch/HD]",
|
||||
length: 1669,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -320,7 +320,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "P6MVqfQzPIg",
|
||||
title: "MAGISCHER OBSIDIANTOTEM?! - Minecraft SHINE #010 [Deutsch/HD]",
|
||||
name: "MAGISCHER OBSIDIANTOTEM?! - Minecraft SHINE #010 [Deutsch/HD]",
|
||||
length: 1526,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -351,7 +351,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "9n0pLDn8Z_I",
|
||||
title: "GRÜNER FEUEROGER & WITHERWARZEN - Minecraft SHINE #011 [Deutsch/HD]",
|
||||
name: "GRÜNER FEUEROGER & WITHERWARZEN - Minecraft SHINE #011 [Deutsch/HD]",
|
||||
length: 1482,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -382,7 +382,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "oXbx2YtIkeQ",
|
||||
title: "MYSTERIÖSES Grab & ONYX ohne ENDE!! - Minecraft SHINE #012 [Deutsch/HD]",
|
||||
name: "MYSTERIÖSES Grab & ONYX ohne ENDE!! - Minecraft SHINE #012 [Deutsch/HD]",
|
||||
length: 1518,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -413,7 +413,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "pfBBTTwxo8Q",
|
||||
title: "ATLANTIS ENTDECKT!! - Minecraft SHINE #013 [Deutsch/HD]",
|
||||
name: "ATLANTIS ENTDECKT!! - Minecraft SHINE #013 [Deutsch/HD]",
|
||||
length: 1479,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -444,7 +444,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "WxtRqzxSAh0",
|
||||
title: "ZUSAMMENFASSUNG & Nodop\'s ANGRIFF - Minecraft SHINE #014 [Deutsch/HD]",
|
||||
name: "ZUSAMMENFASSUNG & Nodop\'s ANGRIFF - Minecraft SHINE #014 [Deutsch/HD]",
|
||||
length: 1902,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -475,7 +475,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "ianUckvxtLw",
|
||||
title: "FRIEDHOFDUNGEON mit NODÖPCHEN - Minecraft SHINE #016 [Deutsch/HD]",
|
||||
name: "FRIEDHOFDUNGEON mit NODÖPCHEN - Minecraft SHINE #016 [Deutsch/HD]",
|
||||
length: 1766,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -506,7 +506,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "eb2Ghj1g1ic",
|
||||
title: "Die BESTE FALLE aller ZEITEN!! - Minecraft SHINE #015 [Deutsch/HD]",
|
||||
name: "Die BESTE FALLE aller ZEITEN!! - Minecraft SHINE #015 [Deutsch/HD]",
|
||||
length: 1324,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -537,7 +537,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "8TpEsyVtCog",
|
||||
title: "MEGAGEMETZEL zu FÜNFT - Minecraft SHINE #017 [Deutsch/HD]",
|
||||
name: "MEGAGEMETZEL zu FÜNFT - Minecraft SHINE #017 [Deutsch/HD]",
|
||||
length: 1629,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -568,7 +568,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "KD_WAei4LMg",
|
||||
title: "WITHER BOSSFIGHT - Minecraft SHINE #018 [Deutsch/HD]",
|
||||
name: "WITHER BOSSFIGHT - Minecraft SHINE #018 [Deutsch/HD]",
|
||||
length: 1645,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -599,7 +599,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "qfpOCrtweKk",
|
||||
title: "LABERSTUNDE mit ArazhulHD - Minecraft SHINE #019 [Deutsch/HD]",
|
||||
name: "LABERSTUNDE mit ArazhulHD - Minecraft SHINE #019 [Deutsch/HD]",
|
||||
length: 1052,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -630,7 +630,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "6gv3nrOA_bQ",
|
||||
title: "BUSRITUALE & Seltsame LEHRER - Minecraft SHINE #021 [Deutsch/HD]",
|
||||
name: "BUSRITUALE & Seltsame LEHRER - Minecraft SHINE #021 [Deutsch/HD]",
|
||||
length: 1769,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -661,7 +661,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "waaic6UnkU8",
|
||||
title: "LEHM, LEHM und mehr LEEEHM!! - Minecraft SHINE #022 [Deutsch/HD]",
|
||||
name: "LEHM, LEHM und mehr LEEEHM!! - Minecraft SHINE #022 [Deutsch/HD]",
|
||||
length: 1081,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -692,7 +692,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "lSy4MLC_uV4",
|
||||
title: "Neue DIMENSIONEN?? - Minecraft SHINE #023 [Deutsch/HD]",
|
||||
name: "Neue DIMENSIONEN?? - Minecraft SHINE #023 [Deutsch/HD]",
|
||||
length: 1682,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -723,7 +723,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "BuN8-U_quok",
|
||||
title: "DUNGEONSTATUEN - Minecraft SHINE #024 [Deutsch/HD]",
|
||||
name: "DUNGEONSTATUEN - Minecraft SHINE #024 [Deutsch/HD]",
|
||||
length: 1597,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -754,7 +754,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "g_UTG10nzaQ",
|
||||
title: "THYRIUMBOGEN & Dimensional DOORS - Minecraft SHINE #025 [Deutsch/HD]",
|
||||
name: "THYRIUMBOGEN & Dimensional DOORS - Minecraft SHINE #025 [Deutsch/HD]",
|
||||
length: 1852,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -785,7 +785,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "kNykFWaDbGw",
|
||||
title: "MEIN ERSTER PVP KILL?! - Minecraft SHINE #026 [Deutsch/HD]",
|
||||
name: "MEIN ERSTER PVP KILL?! - Minecraft SHINE #026 [Deutsch/HD]",
|
||||
length: 1869,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -816,7 +816,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "gJF7vxCYTgY",
|
||||
title: "SPELLBOUND FARM - Minecraft SHINE #027 [Deutsch/HD]",
|
||||
name: "SPELLBOUND FARM - Minecraft SHINE #027 [Deutsch/HD]",
|
||||
length: 2161,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -847,7 +847,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "CodZMQ_Anc0",
|
||||
title: "VIEEELE bunte ZAUBERPILZE - Minecraft SHINE #028 [Deutsch/HD]",
|
||||
name: "VIEEELE bunte ZAUBERPILZE - Minecraft SHINE #028 [Deutsch/HD]",
|
||||
length: 1768,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -878,7 +878,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "oKHMTKJdZ_M",
|
||||
title: "STREAMUPDATE & BIOMREISE - Minecraft SHINE #029 [Deutsch/HD]",
|
||||
name: "STREAMUPDATE & BIOMREISE - Minecraft SHINE #029 [Deutsch/HD]",
|
||||
length: 1771,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -909,7 +909,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "--O_Eyok_eE",
|
||||
title: "AUF NACH TROPICRAFT - Minecraft SHINE #030 [Deutsch/HD]",
|
||||
name: "AUF NACH TROPICRAFT - Minecraft SHINE #030 [Deutsch/HD]",
|
||||
length: 1661,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -940,7 +940,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "2bT3ljKMSo8",
|
||||
title: "SCHATZTRUHE GEFUNDEN!! - Minecraft SHINE #031 [Deutsch/HD]",
|
||||
name: "SCHATZTRUHE GEFUNDEN!! - Minecraft SHINE #031 [Deutsch/HD]",
|
||||
length: 1429,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -971,7 +971,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "YRAX_slrbsI",
|
||||
title: "ZAUBERWALD und TROPISCHER DSCHUNGEL - Minecraft SHINE #032 [Deutsch/HD]",
|
||||
name: "ZAUBERWALD und TROPISCHER DSCHUNGEL - Minecraft SHINE #032 [Deutsch/HD]",
|
||||
length: 1257,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1002,7 +1002,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "aRRbCEwUSuw",
|
||||
title: "MESABIOM & JOUSTS - Minecraft SHINE #033 [Deutsch/HD]",
|
||||
name: "MESABIOM & JOUSTS - Minecraft SHINE #033 [Deutsch/HD]",
|
||||
length: 1131,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1033,7 +1033,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "5sV8SzTbJS8",
|
||||
title: "Komplette SMELTERY GEFUNDEN!! - Minecraft SHINE #034 [Deutsch/HD]",
|
||||
name: "Komplette SMELTERY GEFUNDEN!! - Minecraft SHINE #034 [Deutsch/HD]",
|
||||
length: 1405,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1064,7 +1064,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "ZxxZlU2o1TE",
|
||||
title: "ROGUEDUNGEON EXTREME - Minecraft SHINE #035 [Deutsch/HD]",
|
||||
name: "ROGUEDUNGEON EXTREME - Minecraft SHINE #035 [Deutsch/HD]",
|
||||
length: 1555,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1095,7 +1095,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "gIjo5at4AxE",
|
||||
title: "LEGENDÄRER LOOT - Minecraft SHINE #036 [Deutsch/HD]",
|
||||
name: "LEGENDÄRER LOOT - Minecraft SHINE #036 [Deutsch/HD]",
|
||||
length: 1405,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1126,7 +1126,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "NSGk7-kyeEU",
|
||||
title: "I BELIEVE I CAN FLY - Minecraft SHINE #037 [Deutsch/HD]",
|
||||
name: "I BELIEVE I CAN FLY - Minecraft SHINE #037 [Deutsch/HD]",
|
||||
length: 829,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1157,7 +1157,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "cgJtZ7Otc4Y",
|
||||
title: "ROGUEFRIEDHOF mit WITHERBOSS - Minecraft SHINE #038 [Deutsch/HD]",
|
||||
name: "ROGUEFRIEDHOF mit WITHERBOSS - Minecraft SHINE #038 [Deutsch/HD]",
|
||||
length: 1392,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1188,7 +1188,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "l5LQu3Q0nWY",
|
||||
title: "MONSTERCALYPSE & RETTUNGSAKTION - Minecraft SHINE #039 [Deutsch/HD]",
|
||||
name: "MONSTERCALYPSE & RETTUNGSAKTION - Minecraft SHINE #039 [Deutsch/HD]",
|
||||
length: 1580,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1219,7 +1219,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "YX4Z3ZlWUFc",
|
||||
title: "HINTERHALT von GEGNERN!! - Minecraft SHINE #040 [Deutsch/HD]",
|
||||
name: "HINTERHALT von GEGNERN!! - Minecraft SHINE #040 [Deutsch/HD]",
|
||||
length: 1847,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1250,7 +1250,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "LoyvqR41lKw",
|
||||
title: "CARPENTER\'s BLOCKS - Minecraft SHINE #041 [Deutsch/HD]",
|
||||
name: "CARPENTER\'s BLOCKS - Minecraft SHINE #041 [Deutsch/HD]",
|
||||
length: 1524,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1281,7 +1281,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "HbQtMZbtx_Q",
|
||||
title: "DER ETERNAL FROST!! - Minecraft SHINE #043 [Deutsch/HD]",
|
||||
name: "DER ETERNAL FROST!! - Minecraft SHINE #043 [Deutsch/HD]",
|
||||
length: 1514,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1312,7 +1312,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "0DHRbP9ecgw",
|
||||
title: "FROSTDUNGEONS in der OVERWORLD!! - Minecraft SHINE #044 [Deutsch/HD]",
|
||||
name: "FROSTDUNGEONS in der OVERWORLD!! - Minecraft SHINE #044 [Deutsch/HD]",
|
||||
length: 1567,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1343,7 +1343,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "rFOFkvk-xus",
|
||||
title: "BOSSRÜSTUNG XXL - Minecraft SHINE #045 [Deutsch/HD]",
|
||||
name: "BOSSRÜSTUNG XXL - Minecraft SHINE #045 [Deutsch/HD]",
|
||||
length: 2050,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1374,7 +1374,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "P8zxnSihJ_8",
|
||||
title: "ZAUBERN & TROLLEN mit Nodop - Minecraft SHINE #046 [Deutsch/HD]",
|
||||
name: "ZAUBERN & TROLLEN mit Nodop - Minecraft SHINE #046 [Deutsch/HD]",
|
||||
length: 1828,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1405,7 +1405,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "RWgeHl9XkCY",
|
||||
title: "NACHHILFE für BALUI - Minecraft SHINE #047 [Deutsch/HD]",
|
||||
name: "NACHHILFE für BALUI - Minecraft SHINE #047 [Deutsch/HD]",
|
||||
length: 1926,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1436,7 +1436,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "I1n539enNNY",
|
||||
title: "SPIELER GETÖTET!! - Minecraft SHINE #048 [Deutsch/HD]",
|
||||
name: "SPIELER GETÖTET!! - Minecraft SHINE #048 [Deutsch/HD]",
|
||||
length: 1836,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1467,7 +1467,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "70VKekyZz5g",
|
||||
title: "VORBEREITUNG auf den DRACHEN - Minecraft SHINE #049 [Deutsch/HD]",
|
||||
name: "VORBEREITUNG auf den DRACHEN - Minecraft SHINE #049 [Deutsch/HD]",
|
||||
length: 1916,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1498,7 +1498,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "2OWJ1bwFu6Y",
|
||||
title: "Donnernder ENDERDRACHENKAMPF - Minecraft SHINE #050 [Deutsch/HD]",
|
||||
name: "Donnernder ENDERDRACHENKAMPF - Minecraft SHINE #050 [Deutsch/HD]",
|
||||
length: 1718,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1529,7 +1529,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "zLiSA2i-niw",
|
||||
title: "Superspitzhacke & Necrotic Bones - Minecraft SHINE #051 [Deutsch/HD]",
|
||||
name: "Superspitzhacke & Necrotic Bones - Minecraft SHINE #051 [Deutsch/HD]",
|
||||
length: 1253,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1560,7 +1560,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "wyXlw7nMpko",
|
||||
title: "TREMEP, das ENDERAUGE!! - Minecraft SHINE #052 [Deutsch/HD]",
|
||||
name: "TREMEP, das ENDERAUGE!! - Minecraft SHINE #052 [Deutsch/HD]",
|
||||
length: 1924,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1591,7 +1591,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "NrU4fhzvFpA",
|
||||
title: "TORNADO & ENDERPOKALYPSE!! - Minecraft SHINE #053 [Deutsch/HD]",
|
||||
name: "TORNADO & ENDERPOKALYPSE!! - Minecraft SHINE #053 [Deutsch/HD]",
|
||||
length: 1654,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1622,7 +1622,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "1xhKegaA1hQ",
|
||||
title: "RIESIGE SMELTERY - Minecraft SHINE #054 [Deutsch/HD]",
|
||||
name: "RIESIGE SMELTERY - Minecraft SHINE #054 [Deutsch/HD]",
|
||||
length: 1796,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1653,7 +1653,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "9F4lZ8psBtg",
|
||||
title: "TINKER\'s CONSTRUCT - Minecraft SHINE #055 [Deutsch/HD]",
|
||||
name: "TINKER\'s CONSTRUCT - Minecraft SHINE #055 [Deutsch/HD]",
|
||||
length: 1514,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1684,7 +1684,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "G3uUtejX9to",
|
||||
title: "CUTLASS und HAMMERACTION - Minecraft SHINE #056 [Deutsch/HD]",
|
||||
name: "CUTLASS und HAMMERACTION - Minecraft SHINE #056 [Deutsch/HD]",
|
||||
length: 1615,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1715,7 +1715,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "-0Xn5pViCss",
|
||||
title: "QUARZFESTIVAL - Minecraft SHINE #057 [Deutsch/HD]",
|
||||
name: "QUARZFESTIVAL - Minecraft SHINE #057 [Deutsch/HD]",
|
||||
length: 1353,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1746,7 +1746,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "a7u71Fco99I",
|
||||
title: "DUALWITHERKAMPF & EXOSUIT - Minecraft SHINE #058 [Deutsch/HD]",
|
||||
name: "DUALWITHERKAMPF & EXOSUIT - Minecraft SHINE #058 [Deutsch/HD]",
|
||||
length: 1377,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1777,7 +1777,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "H6uUbvcgKdk",
|
||||
title: "ALLE GETROLLT?! 1. APRIL!! - Minecraft SHINE #060 [Deutsch/HD]",
|
||||
name: "ALLE GETROLLT?! 1. APRIL!! - Minecraft SHINE #060 [Deutsch/HD]",
|
||||
length: 1751,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1808,7 +1808,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "tPRTCauHtkw",
|
||||
title: "THAUMELONE - Minecraft SHINE #061 [Deutsch/HD]",
|
||||
name: "THAUMELONE - Minecraft SHINE #061 [Deutsch/HD]",
|
||||
length: 1604,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1839,7 +1839,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "pMKAQExcarM",
|
||||
title: "ICH BIN EIN MAGIER!! - Minecraft SHINE #062 [Deutsch/HD]",
|
||||
name: "ICH BIN EIN MAGIER!! - Minecraft SHINE #062 [Deutsch/HD]",
|
||||
length: 1202,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1870,7 +1870,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "7E-z-7KCdBI",
|
||||
title: "ENDER PORTER und SPELLBOUND - Minecraft SHINE #063 [Deutsch/HD]",
|
||||
name: "ENDER PORTER und SPELLBOUND - Minecraft SHINE #063 [Deutsch/HD]",
|
||||
length: 1715,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1901,7 +1901,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "EPtbC0ZVddo",
|
||||
title: "PORTABLE HOLE & Melonenstatuen - Minecraft SHINE #064 [Deutsch/HD]",
|
||||
name: "PORTABLE HOLE & Melonenstatuen - Minecraft SHINE #064 [Deutsch/HD]",
|
||||
length: 1696,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1932,7 +1932,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "TpPHng0eGJs",
|
||||
title: "ZUKUNFT des PROJEKTS - Minecraft SHINE #065 [Deutsch/HD]",
|
||||
name: "ZUKUNFT des PROJEKTS - Minecraft SHINE #065 [Deutsch/HD]",
|
||||
length: 1215,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1963,7 +1963,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "rt2QFQwJYcs",
|
||||
title: "GIGANTISCHER METEOR!! - Minecraft SHINE #066 [Deutsch/HD]",
|
||||
name: "GIGANTISCHER METEOR!! - Minecraft SHINE #066 [Deutsch/HD]",
|
||||
length: 1593,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1994,7 +1994,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "WPyfaztFDQ4",
|
||||
title: "Der EREBUS und die GHAST QUEEN - Minecraft SHINE #067 [Deutsch/HD]",
|
||||
name: "Der EREBUS und die GHAST QUEEN - Minecraft SHINE #067 [Deutsch/HD]",
|
||||
length: 1687,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2025,7 +2025,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "5lmumP0DaUw",
|
||||
title: "MINI-BEST OF und KABOOM!! - Minecraft SHINE #069 (Finale) [Deutsch/HD]",
|
||||
name: "MINI-BEST OF und KABOOM!! - Minecraft SHINE #069 (Finale) [Deutsch/HD]",
|
||||
length: 1044,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -10,7 +10,7 @@ Playlist(
|
|||
items: [
|
||||
PlaylistVideo(
|
||||
id: "psuRGfAaju4",
|
||||
title: "Owl City - Fireflies (Official Music Video)",
|
||||
name: "Owl City - Fireflies (Official Music Video)",
|
||||
length: 233,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -41,7 +41,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "PMGY8fLwess",
|
||||
title: "James Arthur - Falling Like The Stars",
|
||||
name: "James Arthur - Falling Like The Stars",
|
||||
length: 256,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -72,7 +72,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "2n5GKLdrTfk",
|
||||
title: "Benson Boone - In the Stars (Official Lyric Video)",
|
||||
name: "Benson Boone - In the Stars (Official Lyric Video)",
|
||||
length: 217,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -103,7 +103,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "EptPhiK_q0E",
|
||||
title: "Coldplay X Selena Gomez - Let Somebody Go (Official Lyric Video)",
|
||||
name: "Coldplay X Selena Gomez - Let Somebody Go (Official Lyric Video)",
|
||||
length: 242,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -134,7 +134,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "qHm9MG9xw1o",
|
||||
title: "OneRepublic - Secrets (Official Music Video)",
|
||||
name: "OneRepublic - Secrets (Official Music Video)",
|
||||
length: 233,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -165,7 +165,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "XPpTgCho5ZA",
|
||||
title: "Maroon 5 - This Love (Official Music Video)",
|
||||
name: "Maroon 5 - This Love (Official Music Video)",
|
||||
length: 206,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -196,7 +196,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "1YUBbF24H44",
|
||||
title: "Sabrina Carpenter - because i liked a boy (Official Video)",
|
||||
name: "Sabrina Carpenter - because i liked a boy (Official Video)",
|
||||
length: 206,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -227,7 +227,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "UAWcs5H-qgQ",
|
||||
title: "Ed Sheeran - The A Team [Official Music Video]",
|
||||
name: "Ed Sheeran - The A Team [Official Music Video]",
|
||||
length: 290,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -258,7 +258,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "bqO3Y5e4Dow",
|
||||
title: "Michele Morrone - Hard For Me (Official Music Video)",
|
||||
name: "Michele Morrone - Hard For Me (Official Music Video)",
|
||||
length: 173,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -289,7 +289,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "NgsWGfUlwJI",
|
||||
title: "Joji - Glimpse of Us (Official Video)",
|
||||
name: "Joji - Glimpse of Us (Official Video)",
|
||||
length: 235,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -320,7 +320,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "AcTDlsUej2w",
|
||||
title: "Sofia Carson - Come Back Home (From \"Purple Hearts\")",
|
||||
name: "Sofia Carson - Come Back Home (From \"Purple Hearts\")",
|
||||
length: 204,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -351,7 +351,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "k6ZoE4RrcDs",
|
||||
title: "Ed Sheeran - Overpass Graffiti [Official Video]",
|
||||
name: "Ed Sheeran - Overpass Graffiti [Official Video]",
|
||||
length: 287,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -382,7 +382,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "_JGGLJMpVks",
|
||||
title: "Billie Eilish - TV (Official Lyric Video)",
|
||||
name: "Billie Eilish - TV (Official Lyric Video)",
|
||||
length: 282,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -413,7 +413,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "mqiH0ZSkM9I",
|
||||
title: "James Bay - Hold Back The River",
|
||||
name: "James Bay - Hold Back The River",
|
||||
length: 247,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -444,7 +444,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "c0wUKCekI34",
|
||||
title: "Michele Morrone - Another Day (Official Music Video)",
|
||||
name: "Michele Morrone - Another Day (Official Music Video)",
|
||||
length: 188,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -475,7 +475,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "c4BLVznuWnU",
|
||||
title: "Ed Sheeran - Lego House [Official Music Video]",
|
||||
name: "Ed Sheeran - Lego House [Official Music Video]",
|
||||
length: 246,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -506,7 +506,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "ouEezpuPc3A",
|
||||
title: "Andy Grammer - \"Don\'t Give Up On Me\" [Official Video from the Five Feet Apart Film]",
|
||||
name: "Andy Grammer - \"Don\'t Give Up On Me\" [Official Video from the Five Feet Apart Film]",
|
||||
length: 216,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -537,7 +537,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "i-qT5n_5Mys",
|
||||
title: "Jaymes Young - Happiest Year [Official Music Video]",
|
||||
name: "Jaymes Young - Happiest Year [Official Music Video]",
|
||||
length: 278,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -568,7 +568,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "CA1VHbdq5hY",
|
||||
title: "Giveon - Lie Again (Official Music Video)",
|
||||
name: "Giveon - Lie Again (Official Music Video)",
|
||||
length: 236,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -599,7 +599,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "74NhLkjIeMs",
|
||||
title: "Conan Gray - Yours",
|
||||
name: "Conan Gray - Yours",
|
||||
length: 201,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -630,7 +630,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "vNfgVjZF8_4",
|
||||
title: "OneRepublic - Someday (Official Music Video)",
|
||||
name: "OneRepublic - Someday (Official Music Video)",
|
||||
length: 192,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -661,7 +661,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "2ebfSItB0oM",
|
||||
title: "Jess Glynne - Take Me Home [Official Video]",
|
||||
name: "Jess Glynne - Take Me Home [Official Video]",
|
||||
length: 273,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -692,7 +692,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "ilut9TzMfXs",
|
||||
title: "Rag’n’Bone Man & P!nk – Anywhere Away From Here (Official Video)",
|
||||
name: "Rag’n’Bone Man & P!nk – Anywhere Away From Here (Official Video)",
|
||||
length: 244,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -723,7 +723,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "-oqAU5VxFWs",
|
||||
title: "Counting Crows - Mr. Jones (Official Music Video)",
|
||||
name: "Counting Crows - Mr. Jones (Official Music Video)",
|
||||
length: 270,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -754,7 +754,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "aNzCDt2eidg",
|
||||
title: "Birdy - Skinny Love [Official Music Video]",
|
||||
name: "Birdy - Skinny Love [Official Music Video]",
|
||||
length: 214,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -785,7 +785,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "fvXn3rmhdc4",
|
||||
title: "Benson Boone - Better Alone (Official Music Video)",
|
||||
name: "Benson Boone - Better Alone (Official Music Video)",
|
||||
length: 209,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -816,7 +816,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "A48hOToMuRE",
|
||||
title: "Dermot Kennedy - Outnumbered",
|
||||
name: "Dermot Kennedy - Outnumbered",
|
||||
length: 247,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -847,7 +847,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "goqqohUitmw",
|
||||
title: "Conan Gray - People Watching (Official Video)",
|
||||
name: "Conan Gray - People Watching (Official Video)",
|
||||
length: 210,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -878,7 +878,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "8uD6s-X3590",
|
||||
title: "Harry Styles - Sweet Creature (Audio)",
|
||||
name: "Harry Styles - Sweet Creature (Audio)",
|
||||
length: 226,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -909,7 +909,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "ljXSjIph5ZM",
|
||||
title: "Niall Horan - Too Much To Ask (Official)",
|
||||
name: "Niall Horan - Too Much To Ask (Official)",
|
||||
length: 226,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -940,7 +940,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "E87oYUfI3WY",
|
||||
title: "Maisie Peters - Good Enough [Official Video]",
|
||||
name: "Maisie Peters - Good Enough [Official Video]",
|
||||
length: 232,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -971,7 +971,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "DJFMRLIe-0o",
|
||||
title: "Tate McRae x Ali Gatie - lie to me",
|
||||
name: "Tate McRae x Ali Gatie - lie to me",
|
||||
length: 191,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1002,7 +1002,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "tMsbeyeTtpk",
|
||||
title: "Michael Bublé - I\'ll Never Not Love You (Official Music Video)",
|
||||
name: "Michael Bublé - I\'ll Never Not Love You (Official Music Video)",
|
||||
length: 245,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1033,7 +1033,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "_LwX7GCE5rI",
|
||||
title: "Miley Cyrus - Slide Away (Audio)",
|
||||
name: "Miley Cyrus - Slide Away (Audio)",
|
||||
length: 236,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1064,7 +1064,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "flv8AEWrRMI",
|
||||
title: "Taylor Swift - Run (Taylor\'s Version) (From The Vault) (Lyric Video) ft. Ed Sheeran",
|
||||
name: "Taylor Swift - Run (Taylor\'s Version) (From The Vault) (Lyric Video) ft. Ed Sheeran",
|
||||
length: 241,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1095,7 +1095,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "bO3S8CKafbE",
|
||||
title: "Niall Horan - Put A Little Love On Me (Official)",
|
||||
name: "Niall Horan - Put A Little Love On Me (Official)",
|
||||
length: 235,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1126,7 +1126,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "26PAgklYYvo",
|
||||
title: "James Morrison - Broken Strings ft. Nelly Furtado (Official Video)",
|
||||
name: "James Morrison - Broken Strings ft. Nelly Furtado (Official Video)",
|
||||
length: 261,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1157,7 +1157,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "KS2Ho8aICMk",
|
||||
title: "Bazzi - Heaven [Official Audio]",
|
||||
name: "Bazzi - Heaven [Official Audio]",
|
||||
length: 154,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1188,7 +1188,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "HtNS1afUOnE",
|
||||
title: "OneRepublic - Stop And Stare (Official Music Video)",
|
||||
name: "OneRepublic - Stop And Stare (Official Music Video)",
|
||||
length: 295,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1219,7 +1219,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "h_m-BjrxmgI",
|
||||
title: "Plain White T\'s - Hey There Delilah (Official Video)",
|
||||
name: "Plain White T\'s - Hey There Delilah (Official Video)",
|
||||
length: 243,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1250,7 +1250,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "ELPOCJvDz3w",
|
||||
title: "Leon Bridges - Beyond (Official Video)",
|
||||
name: "Leon Bridges - Beyond (Official Video)",
|
||||
length: 250,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1281,7 +1281,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "7Lna4Hu4-AQ",
|
||||
title: "MAX & Ali Gatie - Butterflies (Official Music Video)",
|
||||
name: "MAX & Ali Gatie - Butterflies (Official Music Video)",
|
||||
length: 195,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1312,7 +1312,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "5qHRMFQ0pLg",
|
||||
title: "Dermot Kennedy - Dreamer",
|
||||
name: "Dermot Kennedy - Dreamer",
|
||||
length: 182,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1343,7 +1343,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "9f-1VOEUeDY",
|
||||
title: "Maddie Zahm - If It\'s Not God (Official Music Video)",
|
||||
name: "Maddie Zahm - If It\'s Not God (Official Music Video)",
|
||||
length: 243,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1374,7 +1374,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "K9qu2QMBguw",
|
||||
title: "I See Fire (From \"The Hobbit - The Desolation Of Smaug\")",
|
||||
name: "I See Fire (From \"The Hobbit - The Desolation Of Smaug\")",
|
||||
length: 301,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1405,7 +1405,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "X_ZOGHUWwqE",
|
||||
title: "Sam Smith - Kids Again",
|
||||
name: "Sam Smith - Kids Again",
|
||||
length: 214,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1436,7 +1436,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "uWeqeQkjLto",
|
||||
title: "James Blunt - 1973 (Official Music Video)",
|
||||
name: "James Blunt - 1973 (Official Music Video)",
|
||||
length: 234,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1467,7 +1467,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "Ghl_vkEV3tc",
|
||||
title: "Noah Cyrus - Mr. Percocet (Official Video)",
|
||||
name: "Noah Cyrus - Mr. Percocet (Official Video)",
|
||||
length: 193,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1498,7 +1498,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "mHeK0Cwr9sg",
|
||||
title: "Family of the Year - Hero (Official Music Video)",
|
||||
name: "Family of the Year - Hero (Official Music Video)",
|
||||
length: 197,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1529,7 +1529,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "WLoWBe9BRP4",
|
||||
title: "Mimi Webb - Good Without (Official Music Video)",
|
||||
name: "Mimi Webb - Good Without (Official Music Video)",
|
||||
length: 187,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1560,7 +1560,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "7TCncxWNcPU",
|
||||
title: "David Kushner - Mr. Forgettable [Official Music Video]",
|
||||
name: "David Kushner - Mr. Forgettable [Official Music Video]",
|
||||
length: 188,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1591,7 +1591,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "0Bf3CJZ4hvg",
|
||||
title: "James TW - When You Love Someone (Official Video)",
|
||||
name: "James TW - When You Love Someone (Official Video)",
|
||||
length: 227,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1622,7 +1622,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "PxNYvk_0Onw",
|
||||
title: "Gabrielle Aplin - Please Don\'t Say You Love Me (Official Video)",
|
||||
name: "Gabrielle Aplin - Please Don\'t Say You Love Me (Official Video)",
|
||||
length: 208,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1653,7 +1653,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "9JnLIQ5Th9s",
|
||||
title: "Maddie Zahm - Inevitable (Official Music Video)",
|
||||
name: "Maddie Zahm - Inevitable (Official Music Video)",
|
||||
length: 228,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1684,7 +1684,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "1XYLKoEETVA",
|
||||
title: "Zoe Wees - Hold Me Like You Used To",
|
||||
name: "Zoe Wees - Hold Me Like You Used To",
|
||||
length: 193,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1715,7 +1715,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "T8lWjQRhQXY",
|
||||
title: "Lady Gaga - Your Song (Official Audio)",
|
||||
name: "Lady Gaga - Your Song (Official Audio)",
|
||||
length: 259,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1746,7 +1746,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "iEtGv8Ha6ck",
|
||||
title: "Diana Ross - All Is Well",
|
||||
name: "Diana Ross - All Is Well",
|
||||
length: 273,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1777,7 +1777,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "hCjcgoubkPM",
|
||||
title: "Amy Shark - Mess Her Up (Official Video)",
|
||||
name: "Amy Shark - Mess Her Up (Official Video)",
|
||||
length: 226,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1808,7 +1808,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "Nlg3l4MCM7k",
|
||||
title: "ILIRA - Flowers (Official Music Video)",
|
||||
name: "ILIRA - Flowers (Official Music Video)",
|
||||
length: 215,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1839,7 +1839,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "nwXlRq_QyTI",
|
||||
title: "JP Saxe - A Little Bit Yours (Official Music Video)",
|
||||
name: "JP Saxe - A Little Bit Yours (Official Music Video)",
|
||||
length: 246,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1870,7 +1870,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "qIh5QvjiF28",
|
||||
title: "Milow - How Love Works (Official Video)",
|
||||
name: "Milow - How Love Works (Official Video)",
|
||||
length: 179,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1901,7 +1901,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "HRsWSIxYBBA",
|
||||
title: "Noah Cyrus – Ready To Go (Official Visualizer)",
|
||||
name: "Noah Cyrus – Ready To Go (Official Visualizer)",
|
||||
length: 188,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1932,7 +1932,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "1le0xDbrVj8",
|
||||
title: "Oh Wonder - True Romance",
|
||||
name: "Oh Wonder - True Romance",
|
||||
length: 244,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1963,7 +1963,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "YJ4vr53hMuo",
|
||||
title: "Cat Burns ‘Go’ ft. Sam Smith (Hyde Park)",
|
||||
name: "Cat Burns ‘Go’ ft. Sam Smith (Hyde Park)",
|
||||
length: 199,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1994,7 +1994,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "ws-li4Fy1kY",
|
||||
title: "Alexander 23 - The Hardest Part [Official Lyric Video]",
|
||||
name: "Alexander 23 - The Hardest Part [Official Lyric Video]",
|
||||
length: 204,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2025,7 +2025,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "fyrsExw_LUg",
|
||||
title: "James Bay - Bad",
|
||||
name: "James Bay - Bad",
|
||||
length: 243,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2056,7 +2056,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "ZdsER1S3t8k",
|
||||
title: "Noah Kahan - Hurt Somebody (Official Video)",
|
||||
name: "Noah Kahan - Hurt Somebody (Official Video)",
|
||||
length: 175,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2087,7 +2087,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "BS4t017LSoA",
|
||||
title: "Bad Habits (Acoustic Version)",
|
||||
name: "Bad Habits (Acoustic Version)",
|
||||
length: 233,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2118,7 +2118,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "0AYzzzBaPBI",
|
||||
title: "flora cash - They Own This Town (Official Video)",
|
||||
name: "flora cash - They Own This Town (Official Video)",
|
||||
length: 246,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2149,7 +2149,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "zM0K3LC7Aak",
|
||||
title: "James Arthur - Avalanche (Live Session)",
|
||||
name: "James Arthur - Avalanche (Live Session)",
|
||||
length: 220,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2180,7 +2180,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "35VK8yonvsc",
|
||||
title: "James Bay - Everybody Needs Someone (Official Lyric Video)",
|
||||
name: "James Bay - Everybody Needs Someone (Official Lyric Video)",
|
||||
length: 216,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2211,7 +2211,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "RdFaKz71-5M",
|
||||
title: "Ruel - LET THE GRASS GROW (Visualizer)",
|
||||
name: "Ruel - LET THE GRASS GROW (Visualizer)",
|
||||
length: 181,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2242,7 +2242,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "IPOC8KuYu7Q",
|
||||
title: "Leon Bridges, Kevin Kaarl - Summer Moon (Official Lyric Video)",
|
||||
name: "Leon Bridges, Kevin Kaarl - Summer Moon (Official Lyric Video)",
|
||||
length: 177,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2273,7 +2273,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "-4szr0EMrgk",
|
||||
title: "Låpsley - 32 Floors (Official Audio)",
|
||||
name: "Låpsley - 32 Floors (Official Audio)",
|
||||
length: 185,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2304,7 +2304,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "WJJLfUwIVR4",
|
||||
title: "christina perri - home [official audio]",
|
||||
name: "christina perri - home [official audio]",
|
||||
length: 219,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2335,7 +2335,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "-uxeu0MbNR0",
|
||||
title: "Jeremy Zucker - oh, mexico (Official Lyric Video)",
|
||||
name: "Jeremy Zucker - oh, mexico (Official Lyric Video)",
|
||||
length: 191,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2366,7 +2366,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "ELD3aRzbVQg",
|
||||
title: "Tom Gregory - Run To You (Official Video HD)",
|
||||
name: "Tom Gregory - Run To You (Official Video HD)",
|
||||
length: 201,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2397,7 +2397,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "726I7op9iq0",
|
||||
title: "AURORA - Cure For Me (Acoustic / Audio)",
|
||||
name: "AURORA - Cure For Me (Acoustic / Audio)",
|
||||
length: 214,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2428,7 +2428,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "8CqQ47SzNU0",
|
||||
title: "Sigrid, Bring Me The Horizon – Bad Life (Stripped Back)",
|
||||
name: "Sigrid, Bring Me The Horizon – Bad Life (Stripped Back)",
|
||||
length: 221,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2459,7 +2459,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "NjW1S0WIiJw",
|
||||
title: "John Legend - Free (Official Lyric Video)",
|
||||
name: "John Legend - Free (Official Lyric Video)",
|
||||
length: 223,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2490,7 +2490,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "C7LUFn66OeQ",
|
||||
title: "Joy Oladokun with Maren Morris - Bigger Man (Official Visualizer)",
|
||||
name: "Joy Oladokun with Maren Morris - Bigger Man (Official Visualizer)",
|
||||
length: 187,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2521,7 +2521,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "CY0fLYnw59M",
|
||||
title: "dodie - If I\'m Being Honest",
|
||||
name: "dodie - If I\'m Being Honest",
|
||||
length: 310,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2552,7 +2552,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "BxqtS-7GxFM",
|
||||
title: "TONES AND I - NEVER SEEN THE RAIN (ALTERNATE VERSION)",
|
||||
name: "TONES AND I - NEVER SEEN THE RAIN (ALTERNATE VERSION)",
|
||||
length: 296,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2583,7 +2583,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "KUKt_LbaBnM",
|
||||
title: "Oh Wonder - Better Now (Official Audio)",
|
||||
name: "Oh Wonder - Better Now (Official Audio)",
|
||||
length: 200,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2614,7 +2614,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "teHOy47KAMM",
|
||||
title: "christina perri - back in time (featuring ben rector) [official audio]",
|
||||
name: "christina perri - back in time (featuring ben rector) [official audio]",
|
||||
length: 237,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2645,7 +2645,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "W8c224B8mV0",
|
||||
title: "Kina - only in the night (Official Lyric Video) ft. Sarcastic Sounds",
|
||||
name: "Kina - only in the night (Official Lyric Video) ft. Sarcastic Sounds",
|
||||
length: 134,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2676,7 +2676,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "bhL7A8k6kU8",
|
||||
title: "Anderson East - Madelyn (Official Video)",
|
||||
name: "Anderson East - Madelyn (Official Video)",
|
||||
length: 203,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2707,7 +2707,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "mUN36hFtazE",
|
||||
title: "LÉON – All My Heroes (Official Audio)",
|
||||
name: "LÉON – All My Heroes (Official Audio)",
|
||||
length: 206,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2738,7 +2738,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "Od8FfxY5mXc",
|
||||
title: "Love Runs Deeper (Disney supporting Make-A-Wish)",
|
||||
name: "Love Runs Deeper (Disney supporting Make-A-Wish)",
|
||||
length: 163,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2769,7 +2769,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "fNR_abEgDBQ",
|
||||
title: "Chris James - Don\'t Forget About Me (Official Music Video)",
|
||||
name: "Chris James - Don\'t Forget About Me (Official Music Video)",
|
||||
length: 209,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2800,7 +2800,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "NwoW26zPhLs",
|
||||
title: "Blake Rose - Confidence (Official Audio)",
|
||||
name: "Blake Rose - Confidence (Official Audio)",
|
||||
length: 156,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2831,7 +2831,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "dcBZP_pt0uY",
|
||||
title: "Tom Grennan - Little Bit Of Love (Strings) [Audio]",
|
||||
name: "Tom Grennan - Little Bit Of Love (Strings) [Audio]",
|
||||
length: 231,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2862,7 +2862,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "m342B1Vv3tM",
|
||||
title: "Matt Simons ft. Betty Who - Dust (Official Lyric Video)",
|
||||
name: "Matt Simons ft. Betty Who - Dust (Official Lyric Video)",
|
||||
length: 202,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2893,7 +2893,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "ufxjiU7BgR4",
|
||||
title: "Fall Into Me",
|
||||
name: "Fall Into Me",
|
||||
length: 225,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2924,7 +2924,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "7OfB_8rrtug",
|
||||
title: "Grace (We All Try)",
|
||||
name: "Grace (We All Try)",
|
||||
length: 206,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2955,7 +2955,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "QDULTFB8gSY",
|
||||
title: "Words as Weapons",
|
||||
name: "Words as Weapons",
|
||||
length: 199,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2986,7 +2986,7 @@ Playlist(
|
|||
),
|
||||
PlaylistVideo(
|
||||
id: "Ge2q8a3lXnM",
|
||||
title: "Enough, Enough, Enough",
|
||||
name: "Enough, Enough, Enough",
|
||||
length: 164,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -28,7 +28,7 @@ SearchResult(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "1VW7iXRIrc8",
|
||||
title: "Alone, in the City of Love",
|
||||
name: "Alone, in the City of Love",
|
||||
length: Some(1875),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -65,7 +65,7 @@ SearchResult(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "9NuhKCv3crg",
|
||||
title: "the end.",
|
||||
name: "the end.",
|
||||
length: Some(982),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -102,7 +102,7 @@ SearchResult(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "hGbQ2WM9nOo",
|
||||
title: "Why does everything bad for you taste good ㅣ CHILI OIL RAMEN",
|
||||
name: "Why does everything bad for you taste good ㅣ CHILI OIL RAMEN",
|
||||
length: Some(428),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -139,7 +139,7 @@ SearchResult(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "PxGmP4v_A38",
|
||||
title: "Alone and Thriving l late night korean convenience store, muji kitchenware haul, spring cleaning!",
|
||||
name: "Alone and Thriving l late night korean convenience store, muji kitchenware haul, spring cleaning!",
|
||||
length: Some(1437),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -176,7 +176,7 @@ SearchResult(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "38Gd6TdmNVs",
|
||||
title: "KOREAN BARBECUE l doob gourmand ep.3",
|
||||
name: "KOREAN BARBECUE l doob gourmand ep.3",
|
||||
length: Some(525),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -213,7 +213,7 @@ SearchResult(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "CutR_1SDDzY",
|
||||
title: "feels good to be back",
|
||||
name: "feels good to be back",
|
||||
length: Some(1159),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -250,7 +250,7 @@ SearchResult(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "pRVSdUxdsVw",
|
||||
title: "Repairing...",
|
||||
name: "Repairing...",
|
||||
length: Some(965),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -287,7 +287,7 @@ SearchResult(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "KUz7oArksR4",
|
||||
title: "running away",
|
||||
name: "running away",
|
||||
length: Some(1023),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -324,7 +324,7 @@ SearchResult(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "sPb2gyN-hnE",
|
||||
title: "worth fighting for",
|
||||
name: "worth fighting for",
|
||||
length: Some(1232),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -361,7 +361,7 @@ SearchResult(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "rriwHj8U664",
|
||||
title: "my seoul apartment tour",
|
||||
name: "my seoul apartment tour",
|
||||
length: Some(721),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -398,7 +398,7 @@ SearchResult(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "PXsK9-CFoH4",
|
||||
title: "waiting...",
|
||||
name: "waiting...",
|
||||
length: Some(1455),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -435,7 +435,7 @@ SearchResult(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "bXbmYelTnhw",
|
||||
title: "Doobydobap rates British desserts!",
|
||||
name: "Doobydobap rates British desserts!",
|
||||
length: Some(865),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -472,7 +472,7 @@ SearchResult(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "0onVbAuBGWI",
|
||||
title: "Out of Control",
|
||||
name: "Out of Control",
|
||||
length: Some(1125),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -509,7 +509,7 @@ SearchResult(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "FKJtrUeol3o",
|
||||
title: "with quantity comes quality",
|
||||
name: "with quantity comes quality",
|
||||
length: Some(1140),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -546,7 +546,7 @@ SearchResult(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "dkMtSrjDLO0",
|
||||
title: "How to make Naruto\'s favorite ramen",
|
||||
name: "How to make Naruto\'s favorite ramen",
|
||||
length: Some(802),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -583,7 +583,7 @@ SearchResult(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "r2ye6zW0nbM",
|
||||
title: "a wedding",
|
||||
name: "a wedding",
|
||||
length: Some(1207),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -620,7 +620,7 @@ SearchResult(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "NudTbo2CJMY",
|
||||
title: "Flying to London",
|
||||
name: "Flying to London",
|
||||
length: Some(1078),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -657,7 +657,7 @@ SearchResult(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "gK-jLnvVsb0",
|
||||
title: "Contradicting myself",
|
||||
name: "Contradicting myself",
|
||||
length: Some(1381),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -694,7 +694,7 @@ SearchResult(
|
|||
)),
|
||||
Video(VideoItem(
|
||||
id: "fAFFTOpUNWo",
|
||||
title: "Come Grocery Shopping with Me",
|
||||
name: "Come Grocery Shopping with Me",
|
||||
length: Some(1126),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -7,7 +7,7 @@ Paginator(
|
|||
items: [
|
||||
VideoItem(
|
||||
id: "_cyJhGsXDDM",
|
||||
title: "Ultimate Criminal Canal Found Magnet Fishing! Police on the Hunt",
|
||||
name: "Ultimate Criminal Canal Found Magnet Fishing! Police on the Hunt",
|
||||
length: Some(1096),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -44,7 +44,7 @@ Paginator(
|
|||
),
|
||||
VideoItem(
|
||||
id: "36YnV9STBqc",
|
||||
title: "The Good Life Radio\u{a0}•\u{a0}24/7 Live Radio | Best Relax House, Chillout, Study, Running, Gym, Happy Music",
|
||||
name: "The Good Life Radio\u{a0}•\u{a0}24/7 Live Radio | Best Relax House, Chillout, Study, Running, Gym, Happy Music",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -81,7 +81,7 @@ Paginator(
|
|||
),
|
||||
VideoItem(
|
||||
id: "YYD1qgH5qC4",
|
||||
title: "چند شنبه با سینــا | فصل چهـارم | قسمت 5 | با حضور نازنین انصاری مدیر روزنامه کیهان لندن",
|
||||
name: "چند شنبه با سینــا | فصل چهـارم | قسمت 5 | با حضور نازنین انصاری مدیر روزنامه کیهان لندن",
|
||||
length: Some(3261),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -118,7 +118,7 @@ Paginator(
|
|||
),
|
||||
VideoItem(
|
||||
id: "BeJqgI6rw9k",
|
||||
title: "your city is full of fake buildings, here\'s why",
|
||||
name: "your city is full of fake buildings, here\'s why",
|
||||
length: Some(725),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -155,7 +155,7 @@ Paginator(
|
|||
),
|
||||
VideoItem(
|
||||
id: "ma28eWd1oyA",
|
||||
title: "Post Malone, Maroon 5, Adele, Taylor Swift, Ed Sheeran, Shawn Mendes, Pop Hits 2020 Part 6",
|
||||
name: "Post Malone, Maroon 5, Adele, Taylor Swift, Ed Sheeran, Shawn Mendes, Pop Hits 2020 Part 6",
|
||||
length: Some(29989),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -187,7 +187,7 @@ Paginator(
|
|||
),
|
||||
VideoItem(
|
||||
id: "mL2LBRM5GBI",
|
||||
title: "Salahs 6-Minuten-Hattrick & Firmino-Gala: Rangers - FC Liverpool 1:7 | UEFA Champions League | DAZN",
|
||||
name: "Salahs 6-Minuten-Hattrick & Firmino-Gala: Rangers - FC Liverpool 1:7 | UEFA Champions League | DAZN",
|
||||
length: Some(355),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -224,7 +224,7 @@ Paginator(
|
|||
),
|
||||
VideoItem(
|
||||
id: "Ang18qz2IeQ",
|
||||
title: "Satisfying Videos of Workers Doing Their Job Perfectly",
|
||||
name: "Satisfying Videos of Workers Doing Their Job Perfectly",
|
||||
length: Some(1186),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -261,7 +261,7 @@ Paginator(
|
|||
),
|
||||
VideoItem(
|
||||
id: "fjHN4jsJnEU",
|
||||
title: "I Made 200 Players Simulate Survival Island in Minecraft...",
|
||||
name: "I Made 200 Players Simulate Survival Island in Minecraft...",
|
||||
length: Some(2361),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -298,7 +298,7 @@ Paginator(
|
|||
),
|
||||
VideoItem(
|
||||
id: "FI1XrdBJIUI",
|
||||
title: "Epic Construction Fails | Expensive Fails Compilation | FailArmy",
|
||||
name: "Epic Construction Fails | Expensive Fails Compilation | FailArmy",
|
||||
length: Some(631),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -335,7 +335,7 @@ Paginator(
|
|||
),
|
||||
VideoItem(
|
||||
id: "MXdplejK8vU",
|
||||
title: "Chilly autumn Jazz ☕ Smooth September Jazz & Bossa Nova for a great relaxing weekend",
|
||||
name: "Chilly autumn Jazz ☕ Smooth September Jazz & Bossa Nova for a great relaxing weekend",
|
||||
length: Some(86403),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -372,7 +372,7 @@ Paginator(
|
|||
),
|
||||
VideoItem(
|
||||
id: "Jri4_9vBFiQ",
|
||||
title: "Top 100 Best Classic Rock Songs Of All Time 🔥 R.E.M, Queen, Metallica,Guns N’ Roses,Bon Jovi, U2,CCR",
|
||||
name: "Top 100 Best Classic Rock Songs Of All Time 🔥 R.E.M, Queen, Metallica,Guns N’ Roses,Bon Jovi, U2,CCR",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -409,7 +409,7 @@ Paginator(
|
|||
),
|
||||
VideoItem(
|
||||
id: "ll4d5Lt-Ie8",
|
||||
title: "Relaxing Music Healing Stress, Anxiety and Depressive States Heal Mind, Body and Soul | Sleep music",
|
||||
name: "Relaxing Music Healing Stress, Anxiety and Depressive States Heal Mind, Body and Soul | Sleep music",
|
||||
length: Some(42896),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -446,7 +446,7 @@ Paginator(
|
|||
),
|
||||
VideoItem(
|
||||
id: "Dx2wbKLokuQ",
|
||||
title: "W. Putin: Die Sehnsucht nach dem Imperium | Mit offenen Karten | ARTE",
|
||||
name: "W. Putin: Die Sehnsucht nach dem Imperium | Mit offenen Karten | ARTE",
|
||||
length: Some(729),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -483,7 +483,7 @@ Paginator(
|
|||
),
|
||||
VideoItem(
|
||||
id: "jfKfPfyJRdk",
|
||||
title: "lofi hip hop radio - beats to relax/study to",
|
||||
name: "lofi hip hop radio - beats to relax/study to",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -520,7 +520,7 @@ Paginator(
|
|||
),
|
||||
VideoItem(
|
||||
id: "qmrzTUmZ4UU",
|
||||
title: "850€ für den Verrat am System - UCS AT-AT LEGO® Star Wars 75313",
|
||||
name: "850€ für den Verrat am System - UCS AT-AT LEGO® Star Wars 75313",
|
||||
length: Some(2043),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -557,7 +557,7 @@ Paginator(
|
|||
),
|
||||
VideoItem(
|
||||
id: "t0Q2otsqC4I",
|
||||
title: "Tom & Jerry | Tom & Jerry in Full Screen | Classic Cartoon Compilation | WB Kids",
|
||||
name: "Tom & Jerry | Tom & Jerry in Full Screen | Classic Cartoon Compilation | WB Kids",
|
||||
length: Some(1298),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -594,7 +594,7 @@ Paginator(
|
|||
),
|
||||
VideoItem(
|
||||
id: "zE-a5eqvlv8",
|
||||
title: "Dua Lipa, Coldplay, Martin Garrix & Kygo, The Chainsmokers Style - Feeling Me",
|
||||
name: "Dua Lipa, Coldplay, Martin Garrix & Kygo, The Chainsmokers Style - Feeling Me",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -631,7 +631,7 @@ Paginator(
|
|||
),
|
||||
VideoItem(
|
||||
id: "HxCcKzRAGWk",
|
||||
title: "(Music for Man ) Relaxing Whiskey Blues Music - Modern Electric Guitar Blues - JAZZ & BLUES",
|
||||
name: "(Music for Man ) Relaxing Whiskey Blues Music - Modern Electric Guitar Blues - JAZZ & BLUES",
|
||||
length: Some(42899),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -668,7 +668,7 @@ Paginator(
|
|||
),
|
||||
VideoItem(
|
||||
id: "HlHYOdZePSE",
|
||||
title: "Healing Music for Anxiety Disorders, Fears, Depression and Eliminate Negative Thoughts",
|
||||
name: "Healing Music for Anxiety Disorders, Fears, Depression and Eliminate Negative Thoughts",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -705,7 +705,7 @@ Paginator(
|
|||
),
|
||||
VideoItem(
|
||||
id: "CJ2AH3LJeic",
|
||||
title: "Coldplay Greatest Hits Full Album 2022 New Songs of Coldplay 2022",
|
||||
name: "Coldplay Greatest Hits Full Album 2022 New Songs of Coldplay 2022",
|
||||
length: Some(7781),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -742,7 +742,7 @@ Paginator(
|
|||
),
|
||||
VideoItem(
|
||||
id: "KJwzKxQ81iA",
|
||||
title: "Handmade Candy Making Collection / 수제 사탕 만들기 모음 / Korean Candy Store",
|
||||
name: "Handmade Candy Making Collection / 수제 사탕 만들기 모음 / Korean Candy Store",
|
||||
length: Some(3152),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -5,7 +5,7 @@ expression: map_res.c
|
|||
[
|
||||
VideoItem(
|
||||
id: "6T67I2w1G2U",
|
||||
title: "Extreme $1,000,000 Minecraft Challenge!",
|
||||
name: "Extreme $1,000,000 Minecraft Challenge!",
|
||||
length: Some(643),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -47,7 +47,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "8TzH0ayIcdo",
|
||||
title: "The Darkest Story I\'ve Ever Read",
|
||||
name: "The Darkest Story I\'ve Ever Read",
|
||||
length: Some(4383),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -89,7 +89,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "s9PzYuVwCSE",
|
||||
title: "Lil Yachty - Poland (Directed by Cole Bennett)",
|
||||
name: "Lil Yachty - Poland (Directed by Cole Bennett)",
|
||||
length: Some(89),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -131,7 +131,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "y8qhSduN6sk",
|
||||
title: "PC Games on Console - Scott The Woz",
|
||||
name: "PC Games on Console - Scott The Woz",
|
||||
length: Some(1912),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -173,7 +173,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "U9HAaHc3wnc",
|
||||
title: "Guess Iono’s Partner Pokémon! 🤔 | Pokémon Scarlet and Pokémon Violet",
|
||||
name: "Guess Iono’s Partner Pokémon! 🤔 | Pokémon Scarlet and Pokémon Violet",
|
||||
length: Some(211),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -215,7 +215,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "MBzi6hRrkww",
|
||||
title: "Celebrating Tito Puente",
|
||||
name: "Celebrating Tito Puente",
|
||||
length: Some(65),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -257,7 +257,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "DvkTX-AquQo",
|
||||
title: "Impossible 0.00001% Odds!",
|
||||
name: "Impossible 0.00001% Odds!",
|
||||
length: Some(481),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -299,7 +299,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "T-8fCPT-ZKI",
|
||||
title: "DDG - Bulletproof Maybach (Official Music Video) ft. Offset",
|
||||
name: "DDG - Bulletproof Maybach (Official Music Video) ft. Offset",
|
||||
length: Some(189),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -341,7 +341,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "dFlDRhvM4L0",
|
||||
title: "『チェンソーマン』ノンクレジットオープニング / CHAINSAW MAN Opening│米津玄師 「KICK BACK」",
|
||||
name: "『チェンソーマン』ノンクレジットオープニング / CHAINSAW MAN Opening│米津玄師 「KICK BACK」",
|
||||
length: Some(90),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -383,7 +383,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "G9W8CSckzAc",
|
||||
title: "why I disappeared",
|
||||
name: "why I disappeared",
|
||||
length: Some(461),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -425,7 +425,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "PuOUI2kwftA",
|
||||
title: "Brooklyn\'s Wedding Day Vlog | Behind the Scenes",
|
||||
name: "Brooklyn\'s Wedding Day Vlog | Behind the Scenes",
|
||||
length: Some(1265),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -467,7 +467,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "lkOGhJX6LKU",
|
||||
title: "Social Security payments set for big increase; here’s what you need to know",
|
||||
name: "Social Security payments set for big increase; here’s what you need to know",
|
||||
length: Some(120),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -509,7 +509,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "zkvIzKwzYNc",
|
||||
title: "Kep1er 케플러 | ‘We Fresh\' M/V",
|
||||
name: "Kep1er 케플러 | ‘We Fresh\' M/V",
|
||||
length: Some(225),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -551,7 +551,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "foMQG_Bpcag",
|
||||
title: "*After 4* DESTROYED my last brain cell",
|
||||
name: "*After 4* DESTROYED my last brain cell",
|
||||
length: Some(2169),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -593,7 +593,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "iquXFFSEKyE",
|
||||
title: "NLE Choppa - Do It Again (ft. 2Rare) [HipHop Dance Musical] MEMPHIS EDITION",
|
||||
name: "NLE Choppa - Do It Again (ft. 2Rare) [HipHop Dance Musical] MEMPHIS EDITION",
|
||||
length: Some(239),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -635,7 +635,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "ijj_hheGEi0",
|
||||
title: "Queen - Face It Alone (Official Lyric Video)",
|
||||
name: "Queen - Face It Alone (Official Lyric Video)",
|
||||
length: Some(257),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -677,7 +677,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "nwMxp7mRbx4",
|
||||
title: "Dimension 20: Neverafter Trailer",
|
||||
name: "Dimension 20: Neverafter Trailer",
|
||||
length: Some(154),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -719,7 +719,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "7IGD5URBGZ8",
|
||||
title: "We Got Engaged",
|
||||
name: "We Got Engaged",
|
||||
length: Some(1325),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -761,7 +761,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "eKAIQDxai9Y",
|
||||
title: "I remade every mob into Rainbow Friends in Minecraft",
|
||||
name: "I remade every mob into Rainbow Friends in Minecraft",
|
||||
length: Some(811),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -803,7 +803,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "5sRVxb2wkGM",
|
||||
title: "We Bought Every Weird Ad We Saw",
|
||||
name: "We Bought Every Weird Ad We Saw",
|
||||
length: Some(1602),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -845,7 +845,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "9gbScp1JVN4",
|
||||
title: "Making Renaissance Costumes IN ONE DAY[ish]",
|
||||
name: "Making Renaissance Costumes IN ONE DAY[ish]",
|
||||
length: Some(1317),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -887,7 +887,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "qRao6FARFRo",
|
||||
title: "TURN THE TIDES - Harbor Agent Trailer // VALORANT",
|
||||
name: "TURN THE TIDES - Harbor Agent Trailer // VALORANT",
|
||||
length: Some(228),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -929,7 +929,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "F8sGGKxSYNM",
|
||||
title: "Chares Oliveira: I’ll shock the world vs. Islam Makhachev at UFC 280 | ESPN MMA",
|
||||
name: "Chares Oliveira: I’ll shock the world vs. Islam Makhachev at UFC 280 | ESPN MMA",
|
||||
length: Some(231),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -971,7 +971,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "ZnQP13rYpUY",
|
||||
title: "Rochy RD, Tivi Gunz , Harryson, Onguito Wa, El Perrote Wz - Lokisla (Video Oficial) @Izy Music",
|
||||
name: "Rochy RD, Tivi Gunz , Harryson, Onguito Wa, El Perrote Wz - Lokisla (Video Oficial) @Izy Music",
|
||||
length: Some(265),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1013,7 +1013,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "WArWsWRmdJw",
|
||||
title: "I made GeoGuessr in Among Us to challenge my friends...",
|
||||
name: "I made GeoGuessr in Among Us to challenge my friends...",
|
||||
length: Some(1340),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1055,7 +1055,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "wP9zsx04fWY",
|
||||
title: "WE ARE COMING! to a city near you!",
|
||||
name: "WE ARE COMING! to a city near you!",
|
||||
length: Some(59),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1097,7 +1097,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "Wz0Gb4_Q5rM",
|
||||
title: "Mariners vs. Astros ALDS Game 1 Highlights (10/11/22) | MLB Highlights",
|
||||
name: "Mariners vs. Astros ALDS Game 1 Highlights (10/11/22) | MLB Highlights",
|
||||
length: Some(584),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1139,7 +1139,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "ICULY_gTngs",
|
||||
title: "The MCU Has Been Taking Us For Granted.",
|
||||
name: "The MCU Has Been Taking Us For Granted.",
|
||||
length: Some(1025),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1181,7 +1181,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "bunhaERjxmE",
|
||||
title: "Frog Slime 🐸✨ | Ep. 11 | Minecraft Empires S2 1.19",
|
||||
name: "Frog Slime 🐸✨ | Ep. 11 | Minecraft Empires S2 1.19",
|
||||
length: Some(608),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1223,7 +1223,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "tDhfNCUqZDs",
|
||||
title: "Bandmanrill x Sha Ek - “Jiggy In Jersey Pt2” (Shot by @RARI DIGITAL)",
|
||||
name: "Bandmanrill x Sha Ek - “Jiggy In Jersey Pt2” (Shot by @RARI DIGITAL)",
|
||||
length: Some(110),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1265,7 +1265,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "MEZe4chAeZA",
|
||||
title: "Dog and Chainsaw | Chainsawman Ep 1 Reaction",
|
||||
name: "Dog and Chainsaw | Chainsawman Ep 1 Reaction",
|
||||
length: Some(1077),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1307,7 +1307,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "NMA_isZYsYQ",
|
||||
title: "KICK BACK",
|
||||
name: "KICK BACK",
|
||||
length: Some(194),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1349,7 +1349,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "qe6Oy8oEOhI",
|
||||
title: "Top 50 Amazon Prime Day October 2022 Deals (DAY 2!) 🔥 Better Deals Than Yesterday?!",
|
||||
name: "Top 50 Amazon Prime Day October 2022 Deals (DAY 2!) 🔥 Better Deals Than Yesterday?!",
|
||||
length: Some(752),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1391,7 +1391,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "odWKEfp2QMY",
|
||||
title: "Måneskin - THE LONELIEST (Official Video)",
|
||||
name: "Måneskin - THE LONELIEST (Official Video)",
|
||||
length: Some(288),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1433,7 +1433,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "BRb4U99OU80",
|
||||
title: "M3GAN - official trailer",
|
||||
name: "M3GAN - official trailer",
|
||||
length: Some(148),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1475,7 +1475,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "F-7rQBY8uIQ",
|
||||
title: "Lil Baby - Heyy (Official Video)",
|
||||
name: "Lil Baby - Heyy (Official Video)",
|
||||
length: Some(193),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1517,7 +1517,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "3sPxvgrKwEg",
|
||||
title: "Overwatch 2 - SEASON 1 HERO TIER LIST",
|
||||
name: "Overwatch 2 - SEASON 1 HERO TIER LIST",
|
||||
length: Some(1183),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1559,7 +1559,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "_akEYecFdyM",
|
||||
title: "Overwatch 2 is free but I still feel scammed",
|
||||
name: "Overwatch 2 is free but I still feel scammed",
|
||||
length: Some(904),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1601,7 +1601,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "6MKcY5wTcpY",
|
||||
title: "LEE CHAE YEON (이채연) - HUSH RUSH MV",
|
||||
name: "LEE CHAE YEON (이채연) - HUSH RUSH MV",
|
||||
length: Some(221),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1643,7 +1643,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "xIeYK9w03i4",
|
||||
title: "『チェンソーマン』第1話スペシャルエンディング / CHAINSAW MAN #1 Ending│Vaundy 「CHAINSAW BLOOD」",
|
||||
name: "『チェンソーマン』第1話スペシャルエンディング / CHAINSAW MAN #1 Ending│Vaundy 「CHAINSAW BLOOD」",
|
||||
length: Some(92),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1685,7 +1685,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "s4y_kzpCthQ",
|
||||
title: "Blaqbonez - Back In Uni (Official Music Video)",
|
||||
name: "Blaqbonez - Back In Uni (Official Music Video)",
|
||||
length: Some(209),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1727,7 +1727,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "_SKVFtLtJws",
|
||||
title: "Charli D\'Amelio and Mark Ballas Jazz (Week 4) | Dancing With The Stars on Disney+",
|
||||
name: "Charli D\'Amelio and Mark Ballas Jazz (Week 4) | Dancing With The Stars on Disney+",
|
||||
length: Some(92),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1769,7 +1769,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "BtJPMqyhj_M",
|
||||
title: "Money Man - Armed & Dangerous (Official Video)",
|
||||
name: "Money Man - Armed & Dangerous (Official Video)",
|
||||
length: Some(110),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1811,7 +1811,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "rge0deYBVv0",
|
||||
title: "Top 50 Amazon Prime Day October 2022 Deals 🤑 (Updated Hourly!!)",
|
||||
name: "Top 50 Amazon Prime Day October 2022 Deals 🤑 (Updated Hourly!!)",
|
||||
length: Some(780),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1853,7 +1853,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "luXUJ9LJcy0",
|
||||
title: "Sounds from the Sideline: Week 5 at LAR | 2022",
|
||||
name: "Sounds from the Sideline: Week 5 at LAR | 2022",
|
||||
length: Some(432),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1895,7 +1895,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "avUEfUTGbhM",
|
||||
title: "Welding an excavator bucket and digging pond",
|
||||
name: "Welding an excavator bucket and digging pond",
|
||||
length: Some(1756),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1937,7 +1937,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "bqEgXmTU2SI",
|
||||
title: "NEW 5-5-5 ACE PARAGON - The Goliath Doomship! (Bloons TD 6)",
|
||||
name: "NEW 5-5-5 ACE PARAGON - The Goliath Doomship! (Bloons TD 6)",
|
||||
length: Some(950),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1979,7 +1979,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "xhYj9JJnLHM",
|
||||
title: "DDG 25th SURPRISE BIRTHDAY PARTY!!",
|
||||
name: "DDG 25th SURPRISE BIRTHDAY PARTY!!",
|
||||
length: Some(3252),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2021,7 +2021,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "RlbajBvxR0M",
|
||||
title: "Werewolf by Night - The MCU Tries to Be Creative Again",
|
||||
name: "Werewolf by Night - The MCU Tries to Be Creative Again",
|
||||
length: Some(366),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2063,7 +2063,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "yX_DwPnkycc",
|
||||
title: "THE BEST RESULTS I\'VE SEEN YET! (PROGRESS UPDATE)",
|
||||
name: "THE BEST RESULTS I\'VE SEEN YET! (PROGRESS UPDATE)",
|
||||
length: Some(906),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2105,7 +2105,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "CtpdMkKvB6U",
|
||||
title: "hi, I\'m Dream.",
|
||||
name: "hi, I\'m Dream.",
|
||||
length: Some(342),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2147,7 +2147,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "t6fIp7mMJ90",
|
||||
title: "what happened.",
|
||||
name: "what happened.",
|
||||
length: Some(332),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2189,7 +2189,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "dFlDRhvM4L0",
|
||||
title: "『チェンソーマン』ノンクレジットオープニング / CHAINSAW MAN Opening│米津玄師 「KICK BACK」",
|
||||
name: "『チェンソーマン』ノンクレジットオープニング / CHAINSAW MAN Opening│米津玄師 「KICK BACK」",
|
||||
length: Some(90),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2231,7 +2231,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "6T67I2w1G2U",
|
||||
title: "Extreme $1,000,000 Minecraft Challenge!",
|
||||
name: "Extreme $1,000,000 Minecraft Challenge!",
|
||||
length: Some(643),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2273,7 +2273,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "DvkTX-AquQo",
|
||||
title: "Impossible 0.00001% Odds!",
|
||||
name: "Impossible 0.00001% Odds!",
|
||||
length: Some(481),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2315,7 +2315,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "F-7rQBY8uIQ",
|
||||
title: "Lil Baby - Heyy (Official Video)",
|
||||
name: "Lil Baby - Heyy (Official Video)",
|
||||
length: Some(193),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2357,7 +2357,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "atwHMKZ0SLU",
|
||||
title: "Boosie in the trap!",
|
||||
name: "Boosie in the trap!",
|
||||
length: Some(9879),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2399,7 +2399,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "Ut68FBnWbAI",
|
||||
title: "ok, let\'s talk about it. - The TryPod Ep. 181",
|
||||
name: "ok, let\'s talk about it. - The TryPod Ep. 181",
|
||||
length: Some(4226),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2441,7 +2441,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "_Z3QKkl1WyM",
|
||||
title: "Marvel Studios’ Black Panther: Wakanda Forever | Official Trailer",
|
||||
name: "Marvel Studios’ Black Panther: Wakanda Forever | Official Trailer",
|
||||
length: Some(131),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2483,7 +2483,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "nMPCXuvL8EM",
|
||||
title: "The Super Mario Bros. Movie Direct",
|
||||
name: "The Super Mario Bros. Movie Direct",
|
||||
length: Some(482),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2525,7 +2525,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "SS7HXxy3_2c",
|
||||
title: "Try Guys - SNL",
|
||||
name: "Try Guys - SNL",
|
||||
length: Some(352),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2567,7 +2567,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "rvInpw0WGLc",
|
||||
title: "Town Hall 15 Is Here! Clash of Clans New Update Available Now!",
|
||||
name: "Town Hall 15 Is Here! Clash of Clans New Update Available Now!",
|
||||
length: Some(71),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2609,7 +2609,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "etV_nxVU6l8",
|
||||
title: "Wedding Stereotypes",
|
||||
name: "Wedding Stereotypes",
|
||||
length: Some(676),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2651,7 +2651,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "i7ytY9Onf9o",
|
||||
title: "I Met Dream In Real Life",
|
||||
name: "I Met Dream In Real Life",
|
||||
length: Some(569),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2693,7 +2693,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "jYSlpC6Ud2A",
|
||||
title: "Stray Kids \"CASE 143\" M/V",
|
||||
name: "Stray Kids \"CASE 143\" M/V",
|
||||
length: Some(221),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2735,7 +2735,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "XKRW1zgkCVc",
|
||||
title: "Where Animals\' Scientific Names Come From",
|
||||
name: "Where Animals\' Scientific Names Come From",
|
||||
length: Some(581),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2777,7 +2777,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "Th_O5kayAM0",
|
||||
title: "Que Vas A Hacer - Nivel Codiciado X Jose Mejia (Video Oficial)",
|
||||
name: "Que Vas A Hacer - Nivel Codiciado X Jose Mejia (Video Oficial)",
|
||||
length: Some(189),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2819,7 +2819,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "O-mtWoF8umw",
|
||||
title: "Yahritza Y Su Esencia & Ivan Cornejo - Inseparables (Official Video)",
|
||||
name: "Yahritza Y Su Esencia & Ivan Cornejo - Inseparables (Official Video)",
|
||||
length: Some(178),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2861,7 +2861,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "rFO1iqDpMZU",
|
||||
title: "I Collected Every Illegal Item In Minecraft Hardcore",
|
||||
name: "I Collected Every Illegal Item In Minecraft Hardcore",
|
||||
length: Some(1402),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2903,7 +2903,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "-1vsm5bhoyE",
|
||||
title: "Grupo Frontera - No Se Va (Letra Oficial)",
|
||||
name: "Grupo Frontera - No Se Va (Letra Oficial)",
|
||||
length: Some(192),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2945,7 +2945,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "XQUiabixHzo",
|
||||
title: "I Speedran the $0.01 Challenge",
|
||||
name: "I Speedran the $0.01 Challenge",
|
||||
length: Some(933),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -2987,7 +2987,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "8TzH0ayIcdo",
|
||||
title: "The Darkest Story I\'ve Ever Read",
|
||||
name: "The Darkest Story I\'ve Ever Read",
|
||||
length: Some(4383),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -3029,7 +3029,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "xkwc5TZmdIs",
|
||||
title: "GloRilla Glows Up In Every Way With Performance Of \"Tomorrow!\" & \"F.N.F.\" | Hip Hop Awards \'22",
|
||||
name: "GloRilla Glows Up In Every Way With Performance Of \"Tomorrow!\" & \"F.N.F.\" | Hip Hop Awards \'22",
|
||||
length: Some(146),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -3071,7 +3071,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "eJPLiT1kCSM",
|
||||
title: "Museums: Last Week Tonight with John Oliver (HBO)",
|
||||
name: "Museums: Last Week Tonight with John Oliver (HBO)",
|
||||
length: Some(2049),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -3113,7 +3113,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "zwa7NzNBQig",
|
||||
title: "GloRilla, Cardi B - Tomorrow 2 (Official Music Video)",
|
||||
name: "GloRilla, Cardi B - Tomorrow 2 (Official Music Video)",
|
||||
length: Some(214),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -3155,7 +3155,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "BHFcF0zcCgA",
|
||||
title: "Hurricane Ian Destroyed My Hometown!",
|
||||
name: "Hurricane Ian Destroyed My Hometown!",
|
||||
length: Some(647),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -3197,7 +3197,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "xhYj9JJnLHM",
|
||||
title: "DDG 25th SURPRISE BIRTHDAY PARTY!!",
|
||||
name: "DDG 25th SURPRISE BIRTHDAY PARTY!!",
|
||||
length: Some(3252),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -3239,7 +3239,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "9YsEQaW0f2c",
|
||||
title: "Eddie Robinson Jr. goes off on Deion Sanders and Coach Prime responds",
|
||||
name: "Eddie Robinson Jr. goes off on Deion Sanders and Coach Prime responds",
|
||||
length: Some(439),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -3281,7 +3281,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "m-SB3cpzLUU",
|
||||
title: "i\'m sorry.",
|
||||
name: "i\'m sorry.",
|
||||
length: Some(322),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -3323,7 +3323,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "TRGHIN2PGIA",
|
||||
title: "Christian Bale Breaks Down His Most Iconic Characters | GQ",
|
||||
name: "Christian Bale Breaks Down His Most Iconic Characters | GQ",
|
||||
length: Some(1381),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -3365,7 +3365,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "U9HAaHc3wnc",
|
||||
title: "Guess Iono’s Partner Pokémon! 🤔 | Pokémon Scarlet and Pokémon Violet",
|
||||
name: "Guess Iono’s Partner Pokémon! 🤔 | Pokémon Scarlet and Pokémon Violet",
|
||||
length: Some(211),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -3407,7 +3407,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "4ywb2pXRYZI",
|
||||
title: "Quavo & Takeoff - To The Bone feat. YoungBoy Never Broke Again (Official visualizer)",
|
||||
name: "Quavo & Takeoff - To The Bone feat. YoungBoy Never Broke Again (Official visualizer)",
|
||||
length: Some(284),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -3449,7 +3449,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "wP9zsx04fWY",
|
||||
title: "WE ARE COMING! to a city near you!",
|
||||
name: "WE ARE COMING! to a city near you!",
|
||||
length: Some(59),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -3491,7 +3491,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "9acxn7qAST4",
|
||||
title: "Overwatch 2 Animated Short | “Kiriko”",
|
||||
name: "Overwatch 2 Animated Short | “Kiriko”",
|
||||
length: Some(587),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -3533,7 +3533,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "8-tQKwB3RKw",
|
||||
title: "Big Boogie - Backend (Remix) Shot by @Camera Gawd",
|
||||
name: "Big Boogie - Backend (Remix) Shot by @Camera Gawd",
|
||||
length: Some(164),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -3575,7 +3575,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "5HNy7b6bz4g",
|
||||
title: "I Tried Out for an NBA Team and This Happened…",
|
||||
name: "I Tried Out for an NBA Team and This Happened…",
|
||||
length: Some(805),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -3617,7 +3617,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "Uq9gPaIzbe8",
|
||||
title: "Sam Smith, Kim Petras - Unholy",
|
||||
name: "Sam Smith, Kim Petras - Unholy",
|
||||
length: Some(276),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -3659,7 +3659,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "78sCR9mwBV4",
|
||||
title: "How Draymond Green Was after hitting Jordan Poole in practice",
|
||||
name: "How Draymond Green Was after hitting Jordan Poole in practice",
|
||||
length: Some(76),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -3701,7 +3701,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "2U9kNnHvE8o",
|
||||
title: "LAKERS at WARRIORS | NBA PRESEASON FULL GAME HIGHLIGHTS | October 9, 2022",
|
||||
name: "LAKERS at WARRIORS | NBA PRESEASON FULL GAME HIGHLIGHTS | October 9, 2022",
|
||||
length: Some(585),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -3743,7 +3743,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "xXGFb19rLtE",
|
||||
title: "Bray Wyatt returns to WWE: WWE Extreme Rules 2022 (WWE Network Exclusive)",
|
||||
name: "Bray Wyatt returns to WWE: WWE Extreme Rules 2022 (WWE Network Exclusive)",
|
||||
length: Some(106),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -3785,7 +3785,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "7IGD5URBGZ8",
|
||||
title: "We Got Engaged",
|
||||
name: "We Got Engaged",
|
||||
length: Some(1325),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -3827,7 +3827,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "5sRVxb2wkGM",
|
||||
title: "We Bought Every Weird Ad We Saw",
|
||||
name: "We Bought Every Weird Ad We Saw",
|
||||
length: Some(1602),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -3869,7 +3869,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "4YEEDqke-D0",
|
||||
title: "Jump into a Paldean Journey | Pokémon Scarlet and Pokémon Violet",
|
||||
name: "Jump into a Paldean Journey | Pokémon Scarlet and Pokémon Violet",
|
||||
length: Some(847),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -3911,7 +3911,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "rYjmxcV1se4",
|
||||
title: "Film Theory: Dora is CURSED! (Dora The Explorer)",
|
||||
name: "Film Theory: Dora is CURSED! (Dora The Explorer)",
|
||||
length: Some(1085),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -3953,7 +3953,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "y8qhSduN6sk",
|
||||
title: "PC Games on Console - Scott The Woz",
|
||||
name: "PC Games on Console - Scott The Woz",
|
||||
length: Some(1912),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -3995,7 +3995,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "yTLzGSJJ5ts",
|
||||
title: "I Spent 50 Hours Customizing The World\'s Largest Xbox!",
|
||||
name: "I Spent 50 Hours Customizing The World\'s Largest Xbox!",
|
||||
length: Some(886),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -4037,7 +4037,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "x1u8-i2pWg0",
|
||||
title: "Witness Hurricane Ian As It Hits My Home In Cape Coral, FL And View The Aftermath",
|
||||
name: "Witness Hurricane Ian As It Hits My Home In Cape Coral, FL And View The Aftermath",
|
||||
length: Some(855),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -4079,7 +4079,7 @@ expression: map_res.c
|
|||
),
|
||||
VideoItem(
|
||||
id: "FfWtIaDtfYk",
|
||||
title: "Let’s Travel to The Most Extreme Place in The Universe",
|
||||
name: "Let’s Travel to The Most Extreme Place in The Universe",
|
||||
length: Some(766),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -4,7 +4,7 @@ expression: map_res.c
|
|||
---
|
||||
VideoDetails(
|
||||
id: "ZeerrnuLi5E",
|
||||
title: "aespa 에스파 \'Black Mamba\' MV",
|
||||
name: "aespa 에스파 \'Black Mamba\' MV",
|
||||
description: RichText([
|
||||
Text("🎧Listen and download aespa\'s debut single \"Black Mamba\": "),
|
||||
Web(
|
||||
|
@ -106,7 +106,7 @@ VideoDetails(
|
|||
items: [
|
||||
VideoItem(
|
||||
id: "aRpkasmB6so",
|
||||
title: "18 de setembro de 2022",
|
||||
name: "18 de setembro de 2022",
|
||||
length: Some(184),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -143,7 +143,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "lCXqNCd0m10",
|
||||
title: "aespa(エスパ) Savage + Next Level + Black Mamba💕Stage Mix Compilation🔥에스파 무대모음 KBS Music Bank",
|
||||
name: "aespa(エスパ) Savage + Next Level + Black Mamba💕Stage Mix Compilation🔥에스파 무대모음 KBS Music Bank",
|
||||
length: Some(898),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -180,7 +180,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "tDukIfFzX18",
|
||||
title: "[MV] Hwa Sa(화사) _ Maria(마리아)",
|
||||
name: "[MV] Hwa Sa(화사) _ Maria(마리아)",
|
||||
length: Some(231),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -217,7 +217,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "e-ORhEE9VVg",
|
||||
title: "Taylor Swift - Blank Space",
|
||||
name: "Taylor Swift - Blank Space",
|
||||
length: Some(273),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -254,7 +254,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "qfVuRQX0ydQ",
|
||||
title: "[MV] Weeekly(위클리) _ After School",
|
||||
name: "[MV] Weeekly(위클리) _ After School",
|
||||
length: Some(225),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -291,7 +291,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "tyrVtwE8Gv0",
|
||||
title: "NCT U 엔시티 유 \'Make A Wish (Birthday Song)\' MV",
|
||||
name: "NCT U 엔시티 유 \'Make A Wish (Birthday Song)\' MV",
|
||||
length: Some(249),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -328,7 +328,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "X-uJtV8ScYk",
|
||||
title: "Stray Kids \"Back Door\" M/V",
|
||||
name: "Stray Kids \"Back Door\" M/V",
|
||||
length: Some(218),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -365,7 +365,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "MjCZfZfucEc",
|
||||
title: "ITZY “LOCO” M/V @ITZY",
|
||||
name: "ITZY “LOCO” M/V @ITZY",
|
||||
length: Some(233),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -402,7 +402,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "2FzSv66c7TQ",
|
||||
title: "A E S P A (에스파) ALL SONGS PLAYLIST 2022 | 에스파 노래 모음",
|
||||
name: "A E S P A (에스파) ALL SONGS PLAYLIST 2022 | 에스파 노래 모음",
|
||||
length: Some(3441),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -439,7 +439,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "CevxZvSJLk8",
|
||||
title: "Katy Perry - Roar (Official)",
|
||||
name: "Katy Perry - Roar (Official)",
|
||||
length: Some(270),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -476,7 +476,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "bwmSjveL3Lc",
|
||||
title: "BLACKPINK - \'붐바야 (BOOMBAYAH)\' M/V",
|
||||
name: "BLACKPINK - \'붐바야 (BOOMBAYAH)\' M/V",
|
||||
length: Some(244),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -513,7 +513,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "CM4CkVFmTds",
|
||||
title: "TWICE \"I CAN\'T STOP ME\" M/V",
|
||||
name: "TWICE \"I CAN\'T STOP ME\" M/V",
|
||||
length: Some(221),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -550,7 +550,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "ioNng23DkIM",
|
||||
title: "BLACKPINK - \'How You Like That\' M/V",
|
||||
name: "BLACKPINK - \'How You Like That\' M/V",
|
||||
length: Some(184),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -587,7 +587,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "BL-aIpCLWnU",
|
||||
title: "Black Mamba",
|
||||
name: "Black Mamba",
|
||||
length: Some(175),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -624,7 +624,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "Jh4QFaPmdss",
|
||||
title: "(G)I-DLE - \'TOMBOY\' Official Music Video",
|
||||
name: "(G)I-DLE - \'TOMBOY\' Official Music Video",
|
||||
length: Some(198),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -661,7 +661,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "WPdWvnAAurg",
|
||||
title: "aespa 에스파 \'Savage\' MV",
|
||||
name: "aespa 에스파 \'Savage\' MV",
|
||||
length: Some(259),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -698,7 +698,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "Z7yNvMzz2zg",
|
||||
title: "Red Velvet 레드벨벳 \'Psycho\' Performance Video",
|
||||
name: "Red Velvet 레드벨벳 \'Psycho\' Performance Video",
|
||||
length: Some(216),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -4,7 +4,7 @@ expression: map_res.c
|
|||
---
|
||||
VideoDetails(
|
||||
id: "ZeerrnuLi5E",
|
||||
title: "aespa 에스파 \'Black Mamba\' MV",
|
||||
name: "aespa 에스파 \'Black Mamba\' MV",
|
||||
description: RichText([
|
||||
Text("🎧Listen and download aespa\'s debut single \"Black Mamba\": "),
|
||||
Web(
|
||||
|
@ -106,7 +106,7 @@ VideoDetails(
|
|||
items: [
|
||||
VideoItem(
|
||||
id: "WPdWvnAAurg",
|
||||
title: "aespa 에스파 \'Savage\' MV",
|
||||
name: "aespa 에스파 \'Savage\' MV",
|
||||
length: Some(259),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -143,7 +143,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "4TWR90KJl84",
|
||||
title: "aespa 에스파 \'Next Level\' MV",
|
||||
name: "aespa 에스파 \'Next Level\' MV",
|
||||
length: Some(236),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -180,7 +180,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "uR8Mrt1IpXg",
|
||||
title: "Red Velvet 레드벨벳 \'Psycho\' MV",
|
||||
name: "Red Velvet 레드벨벳 \'Psycho\' MV",
|
||||
length: Some(216),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -217,7 +217,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "UUUWIGx3hDE",
|
||||
title: "ITZY \"WANNABE\" Performance Video",
|
||||
name: "ITZY \"WANNABE\" Performance Video",
|
||||
length: Some(198),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -254,7 +254,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "NoYKBAajoyo",
|
||||
title: "EVERGLOW (에버글로우) - DUN DUN MV",
|
||||
name: "EVERGLOW (에버글로우) - DUN DUN MV",
|
||||
length: Some(209),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -291,7 +291,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "32si5cfrCNc",
|
||||
title: "BLACKPINK - \'How You Like That\' DANCE PERFORMANCE VIDEO",
|
||||
name: "BLACKPINK - \'How You Like That\' DANCE PERFORMANCE VIDEO",
|
||||
length: Some(181),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -328,7 +328,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "CM4CkVFmTds",
|
||||
title: "TWICE \"I CAN\'T STOP ME\" M/V",
|
||||
name: "TWICE \"I CAN\'T STOP ME\" M/V",
|
||||
length: Some(221),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -365,7 +365,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "UZPZyd5vE1c",
|
||||
title: "Shut Down",
|
||||
name: "Shut Down",
|
||||
length: Some(176),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -402,7 +402,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "CKZvWhCqx1s",
|
||||
title: "ROSÉ - \'On The Ground\' M/V",
|
||||
name: "ROSÉ - \'On The Ground\' M/V",
|
||||
length: Some(189),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -439,7 +439,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "fE2h3lGlOsk",
|
||||
title: "ITZY \"WANNABE\" M/V @ITZY",
|
||||
name: "ITZY \"WANNABE\" M/V @ITZY",
|
||||
length: Some(219),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -476,7 +476,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "Y8JFxS1HlDo",
|
||||
title: "IVE 아이브 \'LOVE DIVE\' MV",
|
||||
name: "IVE 아이브 \'LOVE DIVE\' MV",
|
||||
length: Some(179),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -513,7 +513,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "dNCWe_6HAM8",
|
||||
title: "LISA - \'MONEY\' EXCLUSIVE PERFORMANCE VIDEO",
|
||||
name: "LISA - \'MONEY\' EXCLUSIVE PERFORMANCE VIDEO",
|
||||
length: Some(171),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -550,7 +550,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "tyrVtwE8Gv0",
|
||||
title: "NCT U 엔시티 유 \'Make A Wish (Birthday Song)\' MV",
|
||||
name: "NCT U 엔시티 유 \'Make A Wish (Birthday Song)\' MV",
|
||||
length: Some(249),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -587,7 +587,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "gU2HqP4NxUs",
|
||||
title: "BLACKPINK - ‘Pretty Savage’ 1011 SBS Inkigayo",
|
||||
name: "BLACKPINK - ‘Pretty Savage’ 1011 SBS Inkigayo",
|
||||
length: Some(208),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -624,7 +624,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "Ujb-gvqsoi0",
|
||||
title: "Red Velvet - IRENE & SEULGI \'Monster\' MV",
|
||||
name: "Red Velvet - IRENE & SEULGI \'Monster\' MV",
|
||||
length: Some(182),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -661,7 +661,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "KhTeiaCezwM",
|
||||
title: "[MV] MAMAMOO (마마무) - HIP",
|
||||
name: "[MV] MAMAMOO (마마무) - HIP",
|
||||
length: Some(211),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -698,7 +698,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "XJDPzNzQ3RE",
|
||||
title: "Run BTS! 2022 Special Episode - Fly BTS Fly Part 1",
|
||||
name: "Run BTS! 2022 Special Episode - Fly BTS Fly Part 1",
|
||||
length: Some(2070),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -735,7 +735,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "0lXwMdnpoFQ",
|
||||
title: "aespa 에스파 \'도깨비불 (Illusion)\' Dance Practice",
|
||||
name: "aespa 에스파 \'도깨비불 (Illusion)\' Dance Practice",
|
||||
length: Some(210),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -772,7 +772,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "IHNzOHi8sJs",
|
||||
title: "BLACKPINK - ‘뚜두뚜두 (DDU-DU DDU-DU)’ M/V",
|
||||
name: "BLACKPINK - ‘뚜두뚜두 (DDU-DU DDU-DU)’ M/V",
|
||||
length: Some(216),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -4,7 +4,7 @@ expression: map_res.c
|
|||
---
|
||||
VideoDetails(
|
||||
id: "nFDBxBUfE74",
|
||||
title: "The Prepper PC",
|
||||
name: "The Prepper PC",
|
||||
description: RichText([
|
||||
Text("Thanks to Jackery for sponsoring today\'s video! Check out Jackery\'s Solar Generator 2000 Pro and get 10% off with code LinusTechTips at "),
|
||||
Web(
|
||||
|
@ -298,7 +298,7 @@ VideoDetails(
|
|||
is_ccommons: false,
|
||||
chapters: [
|
||||
Chapter(
|
||||
title: "Intro",
|
||||
name: "Intro",
|
||||
position: 0,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -314,7 +314,7 @@ VideoDetails(
|
|||
],
|
||||
),
|
||||
Chapter(
|
||||
title: "The PC Built for Super Efficiency",
|
||||
name: "The PC Built for Super Efficiency",
|
||||
position: 42,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -330,7 +330,7 @@ VideoDetails(
|
|||
],
|
||||
),
|
||||
Chapter(
|
||||
title: "Our BURIAL ENCLOSURE?!",
|
||||
name: "Our BURIAL ENCLOSURE?!",
|
||||
position: 161,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -346,7 +346,7 @@ VideoDetails(
|
|||
],
|
||||
),
|
||||
Chapter(
|
||||
title: "Our Power Solution (Thanks Jackery!)",
|
||||
name: "Our Power Solution (Thanks Jackery!)",
|
||||
position: 211,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -362,7 +362,7 @@ VideoDetails(
|
|||
],
|
||||
),
|
||||
Chapter(
|
||||
title: "Diggin\' Holes",
|
||||
name: "Diggin\' Holes",
|
||||
position: 287,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -378,7 +378,7 @@ VideoDetails(
|
|||
],
|
||||
),
|
||||
Chapter(
|
||||
title: "Colonoscopy?",
|
||||
name: "Colonoscopy?",
|
||||
position: 330,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -394,7 +394,7 @@ VideoDetails(
|
|||
],
|
||||
),
|
||||
Chapter(
|
||||
title: "Diggin\' like a man",
|
||||
name: "Diggin\' like a man",
|
||||
position: 424,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -410,7 +410,7 @@ VideoDetails(
|
|||
],
|
||||
),
|
||||
Chapter(
|
||||
title: "The world\'s worst woodsman",
|
||||
name: "The world\'s worst woodsman",
|
||||
position: 509,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -426,7 +426,7 @@ VideoDetails(
|
|||
],
|
||||
),
|
||||
Chapter(
|
||||
title: "Backyard cable management",
|
||||
name: "Backyard cable management",
|
||||
position: 543,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -442,7 +442,7 @@ VideoDetails(
|
|||
],
|
||||
),
|
||||
Chapter(
|
||||
title: "Time to bury this boy",
|
||||
name: "Time to bury this boy",
|
||||
position: 602,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -458,7 +458,7 @@ VideoDetails(
|
|||
],
|
||||
),
|
||||
Chapter(
|
||||
title: "Solar Power Generation",
|
||||
name: "Solar Power Generation",
|
||||
position: 646,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -474,7 +474,7 @@ VideoDetails(
|
|||
],
|
||||
),
|
||||
Chapter(
|
||||
title: "Issues",
|
||||
name: "Issues",
|
||||
position: 697,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -490,7 +490,7 @@ VideoDetails(
|
|||
],
|
||||
),
|
||||
Chapter(
|
||||
title: "First Play Test",
|
||||
name: "First Play Test",
|
||||
position: 728,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -506,7 +506,7 @@ VideoDetails(
|
|||
],
|
||||
),
|
||||
Chapter(
|
||||
title: "Conclusion",
|
||||
name: "Conclusion",
|
||||
position: 800,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -527,7 +527,7 @@ VideoDetails(
|
|||
items: [
|
||||
VideoItem(
|
||||
id: "t03rmc-prJo",
|
||||
title: "This PC took 600 HOURS to Build!",
|
||||
name: "This PC took 600 HOURS to Build!",
|
||||
length: Some(1505),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -564,7 +564,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "4ozYlgOuYis",
|
||||
title: "They told me I was stupid - heating my pool with computers",
|
||||
name: "They told me I was stupid - heating my pool with computers",
|
||||
length: Some(691),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -601,7 +601,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "THxkY59_xko",
|
||||
title: "Is the fastest GPU ALWAYS the best?",
|
||||
name: "Is the fastest GPU ALWAYS the best?",
|
||||
length: Some(979),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -638,7 +638,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "UJ-KZzVUV7U",
|
||||
title: "This toaster cost HOW MUCH?? - Revolution InstaGLO R270 Toaster",
|
||||
name: "This toaster cost HOW MUCH?? - Revolution InstaGLO R270 Toaster",
|
||||
length: Some(880),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -675,7 +675,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "yayAQAC1XiE",
|
||||
title: "Intel PLEASE let me Overclock this!",
|
||||
name: "Intel PLEASE let me Overclock this!",
|
||||
length: Some(799),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -712,7 +712,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "y4T374GtKLI",
|
||||
title: "When The Grid Goes Down: How To Power Essential Devices (i.e., Refrigerator)",
|
||||
name: "When The Grid Goes Down: How To Power Essential Devices (i.e., Refrigerator)",
|
||||
length: Some(1239),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -749,7 +749,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "b3x28s61q3c",
|
||||
title: "The most EXPENSIVE thing I own.",
|
||||
name: "The most EXPENSIVE thing I own.",
|
||||
length: Some(887),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -786,7 +786,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "LQ95XJAwaoc",
|
||||
title: "My favorite car (sucks) - Lucid Air GT",
|
||||
name: "My favorite car (sucks) - Lucid Air GT",
|
||||
length: Some(1162),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -823,7 +823,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "WVjtK71qqXU",
|
||||
title: "I bought a SECOND GPU… but NOT for gaming…",
|
||||
name: "I bought a SECOND GPU… but NOT for gaming…",
|
||||
length: Some(754),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -860,7 +860,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "vtvFVH9JdNI",
|
||||
title: "I bought every Nintendo Console EVER.",
|
||||
name: "I bought every Nintendo Console EVER.",
|
||||
length: Some(1381),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -897,7 +897,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "J6Ga4wciA2k",
|
||||
title: "THIS Wish.com Gaming PC is WORSE!",
|
||||
name: "THIS Wish.com Gaming PC is WORSE!",
|
||||
length: Some(1545),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -934,7 +934,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "CsoKWsZ-Tyw",
|
||||
title: "The Personal Gaming Theater - HOLY $H!T Samsung Odyssey Ark",
|
||||
name: "The Personal Gaming Theater - HOLY $H!T Samsung Odyssey Ark",
|
||||
length: Some(1182),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -971,7 +971,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "9T98VsMe3oo",
|
||||
title: "How are we going to do this?",
|
||||
name: "How are we going to do this?",
|
||||
length: Some(1124),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1008,7 +1008,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "5Hxr9k5Vdc4",
|
||||
title: "Building the $1,000,000 Computer",
|
||||
name: "Building the $1,000,000 Computer",
|
||||
length: Some(1659),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1045,7 +1045,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "12Hcbx33Rb4",
|
||||
title: "BREAKING NEWS! - EVGA will no longer do business with NVIDIA",
|
||||
name: "BREAKING NEWS! - EVGA will no longer do business with NVIDIA",
|
||||
length: Some(1262),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1082,7 +1082,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "EHkkwCjQzsc",
|
||||
title: "Prepper (2016) | Full Post-Apocalyptic Thriller Movie HD",
|
||||
name: "Prepper (2016) | Full Post-Apocalyptic Thriller Movie HD",
|
||||
length: Some(5982),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1119,7 +1119,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "AOdp09SYhCc",
|
||||
title: "This Is So Embarrassing! - Building a PC with My Sister",
|
||||
name: "This Is So Embarrassing! - Building a PC with My Sister",
|
||||
length: Some(1063),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1156,7 +1156,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "CTIpNtHWVtQ",
|
||||
title: "Why Pay $1000 for a 25 year old PC! - NIXSYS Windows 98 PC",
|
||||
name: "Why Pay $1000 for a 25 year old PC! - NIXSYS Windows 98 PC",
|
||||
length: Some(1112),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1193,7 +1193,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "3RIp7CwkBeA",
|
||||
title: "I Hope You Have a LOT of Money... RTX 4000 Announced",
|
||||
name: "I Hope You Have a LOT of Money... RTX 4000 Announced",
|
||||
length: Some(569),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1230,7 +1230,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "HZiaHEmE9PQ",
|
||||
title: "Buying a Chromebook was a BIG MISTAKE",
|
||||
name: "Buying a Chromebook was a BIG MISTAKE",
|
||||
length: Some(880),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -4,7 +4,7 @@ expression: map_res.c
|
|||
---
|
||||
VideoDetails(
|
||||
id: "HRKu0cvrr_o",
|
||||
title: "AlphaOmegaSin Fanboy Logic: Likes/Dislikes Disabled = Point Invalid Lol wtf?",
|
||||
name: "AlphaOmegaSin Fanboy Logic: Likes/Dislikes Disabled = Point Invalid Lol wtf?",
|
||||
description: RichText([]),
|
||||
channel: ChannelTag(
|
||||
id: "UCQT2yul0lr6Ie9qNQNmw-sg",
|
||||
|
|
|
@ -4,7 +4,7 @@ expression: map_res.c
|
|||
---
|
||||
VideoDetails(
|
||||
id: "0rb9CfOvojk",
|
||||
title: "BahnMining - Pünktlichkeit ist eine Zier (David Kriesel)",
|
||||
name: "BahnMining - Pünktlichkeit ist eine Zier (David Kriesel)",
|
||||
description: RichText([
|
||||
Web(
|
||||
text: "https://media.ccc.de/v/36c3-10652-bah...",
|
||||
|
@ -53,7 +53,7 @@ VideoDetails(
|
|||
items: [
|
||||
VideoItem(
|
||||
id: "-YpwsdRKt8Q",
|
||||
title: "SpiegelMining – Reverse Engineering von Spiegel-Online (33c3)",
|
||||
name: "SpiegelMining – Reverse Engineering von Spiegel-Online (33c3)",
|
||||
length: Some(3526),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -90,7 +90,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "4z3mu63yxII",
|
||||
title: "Gregor Gysi & Martin Sonneborn",
|
||||
name: "Gregor Gysi & Martin Sonneborn",
|
||||
length: Some(5272),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -127,7 +127,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "WhgRRpA3b2c",
|
||||
title: "36C3 - Verkehrswende selber hacken",
|
||||
name: "36C3 - Verkehrswende selber hacken",
|
||||
length: Some(3176),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -164,7 +164,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "5qNHtdN07FM",
|
||||
title: "GPN16: Wie baut man eigentlich Raumschiffe (urs)",
|
||||
name: "GPN16: Wie baut man eigentlich Raumschiffe (urs)",
|
||||
length: Some(5172),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -201,7 +201,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "7FeqF1-Z1g0",
|
||||
title: "David Kriesel: Traue keinem Scan, den du nicht selbst gefälscht hast",
|
||||
name: "David Kriesel: Traue keinem Scan, den du nicht selbst gefälscht hast",
|
||||
length: Some(3820),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -238,7 +238,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "1vcP9UWrWBI",
|
||||
title: "Easterhegg 2019 - Kernreaktoren",
|
||||
name: "Easterhegg 2019 - Kernreaktoren",
|
||||
length: Some(7263),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -275,7 +275,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "jnp1veXQf7U",
|
||||
title: "Blockchain - Ein außer Kontrolle geratenes Laborexperiment? #GPN19",
|
||||
name: "Blockchain - Ein außer Kontrolle geratenes Laborexperiment? #GPN19",
|
||||
length: Some(3362),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -312,7 +312,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "77OlKRkaixo",
|
||||
title: "leyrer, MacLemon: E-Mail. Hässlich, aber es funktioniert #eh16",
|
||||
name: "leyrer, MacLemon: E-Mail. Hässlich, aber es funktioniert #eh16",
|
||||
length: Some(6998),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -349,7 +349,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "u29--YNGMyg",
|
||||
title: "Physikalisches Kolloquium 22. Juli 2011 - Vortrag von Prof. Dr. Harald Lesch",
|
||||
name: "Physikalisches Kolloquium 22. Juli 2011 - Vortrag von Prof. Dr. Harald Lesch",
|
||||
length: Some(6715),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -386,7 +386,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "urt2_ACal9A",
|
||||
title: "CCC-Jahresrückblick 2016 (33c3)",
|
||||
name: "CCC-Jahresrückblick 2016 (33c3)",
|
||||
length: Some(8170),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -423,7 +423,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "PnBs9oH2Lx8",
|
||||
title: "Easterhegg 2019 - Wie ich die Regierung gehackt habe",
|
||||
name: "Easterhegg 2019 - Wie ich die Regierung gehackt habe",
|
||||
length: Some(3147),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -460,7 +460,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "yaCiVvBD-xc",
|
||||
title: "Mathias Dalheimer: Wie man einen Blackout verursacht",
|
||||
name: "Mathias Dalheimer: Wie man einen Blackout verursacht",
|
||||
length: Some(3748),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -497,7 +497,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "1PJnEwoFSXo",
|
||||
title: "Das Geheimnis der Hieroglyphen | Doku HD | ARTE",
|
||||
name: "Das Geheimnis der Hieroglyphen | Doku HD | ARTE",
|
||||
length: Some(5541),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -534,7 +534,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "iIDZ8pJKLZA",
|
||||
title: "36C3 ChaosWest: Bahn API Chaos",
|
||||
name: "36C3 ChaosWest: Bahn API Chaos",
|
||||
length: Some(3056),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -571,7 +571,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "PhUQN6fd5O4",
|
||||
title: "35C3 - Jahresrückblick des CCC 2018",
|
||||
name: "35C3 - Jahresrückblick des CCC 2018",
|
||||
length: Some(8102),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -608,7 +608,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "bzr0c8qzQoc",
|
||||
title: "GPN19 - Beton",
|
||||
name: "GPN19 - Beton",
|
||||
length: Some(3972),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -645,7 +645,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "IeX1F-Jjq9E",
|
||||
title: "Lars “Pylon” Weiler (DC4LW): Weltraumkommunikation",
|
||||
name: "Lars “Pylon” Weiler (DC4LW): Weltraumkommunikation",
|
||||
length: Some(5075),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -682,7 +682,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "gsnL4m57MCM",
|
||||
title: "David Kriesel: SpiegelMining – Reverse Engineering von Spiegel-Online",
|
||||
name: "David Kriesel: SpiegelMining – Reverse Engineering von Spiegel-Online",
|
||||
length: Some(3526),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -719,7 +719,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "uEEHq6f8RsM",
|
||||
title: "Leyrer: Moderne Linux Kommandozeilenwerkzeuge - Edition \"Allein zu Haus\"",
|
||||
name: "Leyrer: Moderne Linux Kommandozeilenwerkzeuge - Edition \"Allein zu Haus\"",
|
||||
length: Some(3716),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -4,7 +4,7 @@ expression: map_res.c
|
|||
---
|
||||
VideoDetails(
|
||||
id: "nFDBxBUfE74",
|
||||
title: "The Prepper PC",
|
||||
name: "The Prepper PC",
|
||||
description: RichText([
|
||||
Text("Thanks to Jackery for sponsoring today\'s video! Check out Jackery\'s Solar Generator 2000 Pro and get 10% off with code LinusTechTips at "),
|
||||
Web(
|
||||
|
@ -292,7 +292,7 @@ VideoDetails(
|
|||
is_ccommons: false,
|
||||
chapters: [
|
||||
Chapter(
|
||||
title: "Intro",
|
||||
name: "Intro",
|
||||
position: 0,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -308,7 +308,7 @@ VideoDetails(
|
|||
],
|
||||
),
|
||||
Chapter(
|
||||
title: "The PC Built for Super Efficiency",
|
||||
name: "The PC Built for Super Efficiency",
|
||||
position: 42,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -324,7 +324,7 @@ VideoDetails(
|
|||
],
|
||||
),
|
||||
Chapter(
|
||||
title: "Our BURIAL ENCLOSURE?!",
|
||||
name: "Our BURIAL ENCLOSURE?!",
|
||||
position: 161,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -340,7 +340,7 @@ VideoDetails(
|
|||
],
|
||||
),
|
||||
Chapter(
|
||||
title: "Our Power Solution (Thanks Jackery!)",
|
||||
name: "Our Power Solution (Thanks Jackery!)",
|
||||
position: 211,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -356,7 +356,7 @@ VideoDetails(
|
|||
],
|
||||
),
|
||||
Chapter(
|
||||
title: "Diggin\' Holes",
|
||||
name: "Diggin\' Holes",
|
||||
position: 287,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -372,7 +372,7 @@ VideoDetails(
|
|||
],
|
||||
),
|
||||
Chapter(
|
||||
title: "Colonoscopy?",
|
||||
name: "Colonoscopy?",
|
||||
position: 330,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -388,7 +388,7 @@ VideoDetails(
|
|||
],
|
||||
),
|
||||
Chapter(
|
||||
title: "Diggin\' like a man",
|
||||
name: "Diggin\' like a man",
|
||||
position: 424,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -404,7 +404,7 @@ VideoDetails(
|
|||
],
|
||||
),
|
||||
Chapter(
|
||||
title: "The world\'s worst woodsman",
|
||||
name: "The world\'s worst woodsman",
|
||||
position: 509,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -420,7 +420,7 @@ VideoDetails(
|
|||
],
|
||||
),
|
||||
Chapter(
|
||||
title: "Backyard cable management",
|
||||
name: "Backyard cable management",
|
||||
position: 543,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -436,7 +436,7 @@ VideoDetails(
|
|||
],
|
||||
),
|
||||
Chapter(
|
||||
title: "Time to bury this boy",
|
||||
name: "Time to bury this boy",
|
||||
position: 602,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -452,7 +452,7 @@ VideoDetails(
|
|||
],
|
||||
),
|
||||
Chapter(
|
||||
title: "Solar Power Generation",
|
||||
name: "Solar Power Generation",
|
||||
position: 646,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -468,7 +468,7 @@ VideoDetails(
|
|||
],
|
||||
),
|
||||
Chapter(
|
||||
title: "Issues",
|
||||
name: "Issues",
|
||||
position: 697,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -484,7 +484,7 @@ VideoDetails(
|
|||
],
|
||||
),
|
||||
Chapter(
|
||||
title: "First Play Test",
|
||||
name: "First Play Test",
|
||||
position: 728,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -500,7 +500,7 @@ VideoDetails(
|
|||
],
|
||||
),
|
||||
Chapter(
|
||||
title: "Conclusion",
|
||||
name: "Conclusion",
|
||||
position: 800,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -521,7 +521,7 @@ VideoDetails(
|
|||
items: [
|
||||
VideoItem(
|
||||
id: "AOdp09SYhCc",
|
||||
title: "This Is So Embarrassing!",
|
||||
name: "This Is So Embarrassing!",
|
||||
length: Some(1063),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -558,7 +558,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "CY3OQh-7wIk",
|
||||
title: "The Computer I Would Actually BUY",
|
||||
name: "The Computer I Would Actually BUY",
|
||||
length: Some(6478),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -595,7 +595,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "LQ95XJAwaoc",
|
||||
title: "My favorite car (sucks)",
|
||||
name: "My favorite car (sucks)",
|
||||
length: Some(1162),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -632,7 +632,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "mhMQeJ5Qmp0",
|
||||
title: "The Apple Newton MessagePad.",
|
||||
name: "The Apple Newton MessagePad.",
|
||||
length: Some(758),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -669,7 +669,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "1ctXiZsN6ac",
|
||||
title: "The Reviewer Got Reviewed - WAN Show September 9, 2022",
|
||||
name: "The Reviewer Got Reviewed - WAN Show September 9, 2022",
|
||||
length: Some(10265),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -706,7 +706,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "CMR9z9Xr8GM",
|
||||
title: "Storing Solar Power on my ROOF!!!",
|
||||
name: "Storing Solar Power on my ROOF!!!",
|
||||
length: Some(1028),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -743,7 +743,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "fT2KhJ8W-Kg",
|
||||
title: "How gas pumps know when to turn themselves off",
|
||||
name: "How gas pumps know when to turn themselves off",
|
||||
length: Some(836),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -780,7 +780,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "12Hcbx33Rb4",
|
||||
title: "BREAKING NEWS! - EVGA will no longer do business with NVIDIA",
|
||||
name: "BREAKING NEWS! - EVGA will no longer do business with NVIDIA",
|
||||
length: Some(1262),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -817,7 +817,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "QW1SsqmaIuE",
|
||||
title: "I Surprised My Subscriber with his Dream Gaming Setup! - Season 8",
|
||||
name: "I Surprised My Subscriber with his Dream Gaming Setup! - Season 8",
|
||||
length: Some(2177),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -854,7 +854,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "JAcSNL1T3OA",
|
||||
title: "Why Did I Drill 1756 Holes in This?",
|
||||
name: "Why Did I Drill 1756 Holes in This?",
|
||||
length: Some(1293),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -891,7 +891,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "ZVtOss1U7_s",
|
||||
title: "VW Beetle converted to electric in a day",
|
||||
name: "VW Beetle converted to electric in a day",
|
||||
length: Some(826),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -928,7 +928,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "2kJDTzFtUr4",
|
||||
title: "How ASML, TSMC And Intel Dominate The Chip Market | CNBC Marathon",
|
||||
name: "How ASML, TSMC And Intel Dominate The Chip Market | CNBC Marathon",
|
||||
length: Some(3399),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -965,7 +965,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "0rCbfsuKdYw",
|
||||
title: "I bought every Playstation Ever.",
|
||||
name: "I bought every Playstation Ever.",
|
||||
length: Some(1046),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1002,7 +1002,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "sbdU7AkH6QM",
|
||||
title: "Reviewing Free Energy Generators. A Response to My Video \"Nikola Tesla\'s Greatest Invention\"- 102",
|
||||
name: "Reviewing Free Energy Generators. A Response to My Video \"Nikola Tesla\'s Greatest Invention\"- 102",
|
||||
length: Some(1387),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1039,7 +1039,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "zcchDu7KoYs",
|
||||
title: "AMD’s Victory Lap - HOLY $H!T Threadripper Pro 5995WX",
|
||||
name: "AMD’s Victory Lap - HOLY $H!T Threadripper Pro 5995WX",
|
||||
length: Some(872),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1076,7 +1076,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "pd6DsSjqhFE",
|
||||
title: "Top Gear Satisfaction Survey Compilation",
|
||||
name: "Top Gear Satisfaction Survey Compilation",
|
||||
length: Some(986),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1113,7 +1113,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "2K5Gqp1cEcM",
|
||||
title: "Why our Screwdriver took 3 YEARS",
|
||||
name: "Why our Screwdriver took 3 YEARS",
|
||||
length: Some(1752),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1150,7 +1150,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "t03rmc-prJo",
|
||||
title: "This PC took 600 HOURS to Build!",
|
||||
name: "This PC took 600 HOURS to Build!",
|
||||
length: Some(1505),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -1187,7 +1187,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "QTH9m6MDIfc",
|
||||
title: "One Year Ago I Built an Ecosystem, This Happened",
|
||||
name: "One Year Ago I Built an Ecosystem, This Happened",
|
||||
length: Some(485),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -4,7 +4,7 @@ expression: map_res.c
|
|||
---
|
||||
VideoDetails(
|
||||
id: "86YLFOog4GM",
|
||||
title: "🌎 Nasa Live Stream - Earth From Space : Live Views from the ISS",
|
||||
name: "🌎 Nasa Live Stream - Earth From Space : Live Views from the ISS",
|
||||
description: RichText([
|
||||
Text("Live NASA - Views Of Earth from Space\nLive video feed of Earth from the International Space Station (ISS) Cameras\n-----------------------------------------------------------------------------------------------------\nWatch our latest video - The Sun - 4K Video / Solar Flares\n"),
|
||||
YouTube(
|
||||
|
@ -75,7 +75,7 @@ VideoDetails(
|
|||
items: [
|
||||
VideoItem(
|
||||
id: "SGP6Y0Pnhe4",
|
||||
title: "HOW IT WORKS: The International Space Station",
|
||||
name: "HOW IT WORKS: The International Space Station",
|
||||
length: Some(1738),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -112,7 +112,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "ddZu_1Z3BAc",
|
||||
title: "NASA LIVE Stream From The ISS - Live Earth & Space Station Views & Audio",
|
||||
name: "NASA LIVE Stream From The ISS - Live Earth & Space Station Views & Audio",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -149,7 +149,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "oDXBMjg9HKU",
|
||||
title: "APOD: 2022-09-20 - Star Forming Region NGC 3582 without Stars (Narrated by Amy)",
|
||||
name: "APOD: 2022-09-20 - Star Forming Region NGC 3582 without Stars (Narrated by Amy)",
|
||||
length: Some(124),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -186,7 +186,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "aU0vNvVHXa8",
|
||||
title: "🌎 LIVE ASTEROID Watch Tracking",
|
||||
name: "🌎 LIVE ASTEROID Watch Tracking",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -223,7 +223,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "6scCF_8YN70",
|
||||
title: "Dramatic footage of the tsunami that hit Japan",
|
||||
name: "Dramatic footage of the tsunami that hit Japan",
|
||||
length: Some(133),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -260,7 +260,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "n4IhCSMkADc",
|
||||
title: "EARTH FROM SPACE: Like You\'ve Never Seen Before",
|
||||
name: "EARTH FROM SPACE: Like You\'ve Never Seen Before",
|
||||
length: Some(766),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -297,7 +297,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "bgbH4FAmAA0",
|
||||
title: "Winter Cab View from two of the most SCENIC RAILWAYS in the WORLD",
|
||||
name: "Winter Cab View from two of the most SCENIC RAILWAYS in the WORLD",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -334,7 +334,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "uD4izuDMUQA",
|
||||
title: "TIMELAPSE OF THE FUTURE: A Journey to the End of Time (4K)",
|
||||
name: "TIMELAPSE OF THE FUTURE: A Journey to the End of Time (4K)",
|
||||
length: Some(1761),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -371,7 +371,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "Z6DpPQ8QdLg",
|
||||
title: "Earthrise - Planet Earth Seen From The Moon - Real Time Journey Across The Lunar Surface",
|
||||
name: "Earthrise - Planet Earth Seen From The Moon - Real Time Journey Across The Lunar Surface",
|
||||
length: Some(241),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -408,7 +408,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "1hNF3Wuw0LI",
|
||||
title: "New York City Walk 24/7 Chat Stream",
|
||||
name: "New York City Walk 24/7 Chat Stream",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -445,7 +445,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "ZEyAs3NWH4A",
|
||||
title: "New: Mars In 4K",
|
||||
name: "New: Mars In 4K",
|
||||
length: Some(609),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -482,7 +482,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "NF4LQaWJRDg",
|
||||
title: "Hiroshima: Dropping the Bomb",
|
||||
name: "Hiroshima: Dropping the Bomb",
|
||||
length: Some(276),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -519,7 +519,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "qhOe_PxiNo8",
|
||||
title: "Imagens, Talvez Inéditas do Tsunami no Japão",
|
||||
name: "Imagens, Talvez Inéditas do Tsunami no Japão",
|
||||
length: Some(1202),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -556,7 +556,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "zf3bDpdhUNc",
|
||||
title: "Astronauts accidentally lose a shield in space (GoPro 8K)",
|
||||
name: "Astronauts accidentally lose a shield in space (GoPro 8K)",
|
||||
length: Some(566),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -593,7 +593,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "mJxsj51d-Pk",
|
||||
title: "Record breaking space jump - free fall faster than speed of sound - Red Bull Stratos.",
|
||||
name: "Record breaking space jump - free fall faster than speed of sound - Red Bull Stratos.",
|
||||
length: Some(503),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -630,7 +630,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "fr_hXLDLc38",
|
||||
title: "Horizons mission - Soyuz: launch to orbit",
|
||||
name: "Horizons mission - Soyuz: launch to orbit",
|
||||
length: Some(607),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -667,7 +667,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "Jh-qzwdiAGY",
|
||||
title: "The Earth 4K - Incredible 4K / UHD Video of Earth From Space",
|
||||
name: "The Earth 4K - Incredible 4K / UHD Video of Earth From Space",
|
||||
length: Some(3594),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -704,7 +704,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "EPyl1LgNtoQ",
|
||||
title: "The View from Space - Earth\'s Countries and Coastlines",
|
||||
name: "The View from Space - Earth\'s Countries and Coastlines",
|
||||
length: Some(227),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -741,7 +741,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "7KXGZAEWzn0",
|
||||
title: "ORBIT - Journey Around Earth in Real Time // 4K Remastered",
|
||||
name: "ORBIT - Journey Around Earth in Real Time // 4K Remastered",
|
||||
length: Some(5560),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -778,7 +778,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "KTUa9rG08go",
|
||||
title: "NASA Artemis I Mon Rocket Testing and Inspection LIVE From Launch Complex 39B",
|
||||
name: "NASA Artemis I Mon Rocket Testing and Inspection LIVE From Launch Complex 39B",
|
||||
length: None,
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -4,7 +4,7 @@ expression: map_res.c
|
|||
---
|
||||
VideoDetails(
|
||||
id: "XuM2onMGvTI",
|
||||
title: "Gäa",
|
||||
name: "Gäa",
|
||||
description: RichText([
|
||||
Text("Provided to YouTube by Universal Music Group\n\nGäa · Oonagh\n\nBest Of\n\n℗ An Airforce1 Records / We Love Music recording; ℗ 2014 Universal Music GmbH\n\nReleased on: 2020-08-07\n\nProducer, Associated Performer, Background Vocalist: Hardy Krech\nProducer: Mark Nissen\nAssociated Performer, Background Vocalist: Andreas Fahnert\nAssociated Performer, Background Vocalist: Velile Mchunu\nAssociated Performer, Background Vocalist: Billy King\nAssociated Performer, Background Vocalist: Alex Prince\nAssociated Performer, Flute: Sandro Friedrich\nProgrammer: Hartmut Krech\nEditor: Severin Zahler\nComposer Lyricist: Hartmut Krech\nComposer Lyricist: Mark Nissen\nAuthor: Lukas Hainer\nAuthor: Michael Boden\n\nAuto-generated by YouTube."),
|
||||
]),
|
||||
|
@ -43,7 +43,7 @@ VideoDetails(
|
|||
items: [
|
||||
VideoItem(
|
||||
id: "XtV_HGppS6A",
|
||||
title: "Vergiss mein nicht",
|
||||
name: "Vergiss mein nicht",
|
||||
length: Some(263),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -80,7 +80,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "BcqM8Qshx7U",
|
||||
title: "Kuliko Jana - Eine neue Zeit",
|
||||
name: "Kuliko Jana - Eine neue Zeit",
|
||||
length: Some(210),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -117,7 +117,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "IUFUIgZOcow",
|
||||
title: "Silmaril - Schöner als die Sterne",
|
||||
name: "Silmaril - Schöner als die Sterne",
|
||||
length: Some(205),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -154,7 +154,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "UtP9J88Jzg0",
|
||||
title: "Ruinen im Sand",
|
||||
name: "Ruinen im Sand",
|
||||
length: Some(195),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -191,7 +191,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "sg6j-zfUF_A",
|
||||
title: "Eldamar",
|
||||
name: "Eldamar",
|
||||
length: Some(223),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -228,7 +228,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "u2XCC1rKxV0",
|
||||
title: "Faolan",
|
||||
name: "Faolan",
|
||||
length: Some(256),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -265,7 +265,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "oOBBBl3fywU",
|
||||
title: "Aeria - Vom Wind",
|
||||
name: "Aeria - Vom Wind",
|
||||
length: Some(260),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -302,7 +302,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "pI0Rancanz0",
|
||||
title: "Vergiss mein nicht",
|
||||
name: "Vergiss mein nicht",
|
||||
length: Some(263),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -339,7 +339,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "DsviLYh1CB0",
|
||||
title: "Eldamar",
|
||||
name: "Eldamar",
|
||||
length: Some(222),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -376,7 +376,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "Ctpe9kafn78",
|
||||
title: "So still mein Herz",
|
||||
name: "So still mein Herz",
|
||||
length: Some(259),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -413,7 +413,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "y252630WbIk",
|
||||
title: "Oonagh und Santiano: Vergiss mein nicht (mit lyrics)",
|
||||
name: "Oonagh und Santiano: Vergiss mein nicht (mit lyrics)",
|
||||
length: Some(260),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -450,7 +450,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "YgUZtELr_jw",
|
||||
title: "Aulë und Yavanna",
|
||||
name: "Aulë und Yavanna",
|
||||
length: Some(216),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -487,7 +487,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "ABKSs0aU4C0",
|
||||
title: "Gäa (Akustik Version)",
|
||||
name: "Gäa (Akustik Version)",
|
||||
length: Some(235),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -524,7 +524,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "O0I3rJsHikA",
|
||||
title: "Orome (A-Class Remix)",
|
||||
name: "Orome (A-Class Remix)",
|
||||
length: Some(199),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -4,7 +4,7 @@ expression: map_res.c
|
|||
---
|
||||
VideoDetails(
|
||||
id: "ZeerrnuLi5E",
|
||||
title: "aespa 에스파 \'Black Mamba\' MV",
|
||||
name: "aespa 에스파 \'Black Mamba\' MV",
|
||||
description: RichText([
|
||||
Text("🎧Listen and download aespa\'s debut single \"Black Mamba\": "),
|
||||
Web(
|
||||
|
@ -106,7 +106,7 @@ VideoDetails(
|
|||
items: [
|
||||
VideoItem(
|
||||
id: "4TWR90KJl84",
|
||||
title: "aespa 에스파 \'Next Level\' MV",
|
||||
name: "aespa 에스파 \'Next Level\' MV",
|
||||
length: Some(236),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -143,7 +143,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "WPdWvnAAurg",
|
||||
title: "aespa 에스파 \'Savage\' MV",
|
||||
name: "aespa 에스파 \'Savage\' MV",
|
||||
length: Some(259),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -180,7 +180,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "NoYKBAajoyo",
|
||||
title: "EVERGLOW (에버글로우) - DUN DUN MV",
|
||||
name: "EVERGLOW (에버글로우) - DUN DUN MV",
|
||||
length: Some(209),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -217,7 +217,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "KhTeiaCezwM",
|
||||
title: "[MV] MAMAMOO (마마무) - HIP",
|
||||
name: "[MV] MAMAMOO (마마무) - HIP",
|
||||
length: Some(211),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -254,7 +254,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "Jh4QFaPmdss",
|
||||
title: "(G)I-DLE - \'TOMBOY\' Official Music Video",
|
||||
name: "(G)I-DLE - \'TOMBOY\' Official Music Video",
|
||||
length: Some(198),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -291,7 +291,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "CM4CkVFmTds",
|
||||
title: "TWICE \"I CAN\'T STOP ME\" M/V",
|
||||
name: "TWICE \"I CAN\'T STOP ME\" M/V",
|
||||
length: Some(221),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -328,7 +328,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "uR8Mrt1IpXg",
|
||||
title: "Red Velvet 레드벨벳 \'Psycho\' MV",
|
||||
name: "Red Velvet 레드벨벳 \'Psycho\' MV",
|
||||
length: Some(216),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -365,7 +365,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "QslJYDX3o8s",
|
||||
title: "Red Velvet 레드벨벳 \'러시안 룰렛 (Russian Roulette)\' MV",
|
||||
name: "Red Velvet 레드벨벳 \'러시안 룰렛 (Russian Roulette)\' MV",
|
||||
length: Some(212),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -402,7 +402,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "EaswWiwMVs8",
|
||||
title: "Stray Kids \"소리꾼(Thunderous)\" M/V",
|
||||
name: "Stray Kids \"소리꾼(Thunderous)\" M/V",
|
||||
length: Some(199),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -439,7 +439,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "pNfTK39k55U",
|
||||
title: "ITZY \"달라달라(DALLA DALLA)\" M/V @ITZY",
|
||||
name: "ITZY \"달라달라(DALLA DALLA)\" M/V @ITZY",
|
||||
length: Some(227),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -476,7 +476,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "dYRITmpFbJ4",
|
||||
title: "aespa 에스파 \'Girls\' MV",
|
||||
name: "aespa 에스파 \'Girls\' MV",
|
||||
length: Some(269),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -513,7 +513,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "ioNng23DkIM",
|
||||
title: "BLACKPINK - \'How You Like That\' M/V",
|
||||
name: "BLACKPINK - \'How You Like That\' M/V",
|
||||
length: Some(184),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -550,7 +550,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "Ujb-gvqsoi0",
|
||||
title: "Red Velvet - IRENE & SEULGI \'Monster\' MV",
|
||||
name: "Red Velvet - IRENE & SEULGI \'Monster\' MV",
|
||||
length: Some(182),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -587,7 +587,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "bwmSjveL3Lc",
|
||||
title: "BLACKPINK - \'붐바야 (BOOMBAYAH)\' M/V",
|
||||
name: "BLACKPINK - \'붐바야 (BOOMBAYAH)\' M/V",
|
||||
length: Some(244),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -624,7 +624,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "6uJf2IT2Zh8",
|
||||
title: "Red Velvet 레드벨벳 \'피카부 (Peek-A-Boo)\' MV",
|
||||
name: "Red Velvet 레드벨벳 \'피카부 (Peek-A-Boo)\' MV",
|
||||
length: Some(230),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -661,7 +661,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "Y8JFxS1HlDo",
|
||||
title: "IVE 아이브 \'LOVE DIVE\' MV",
|
||||
name: "IVE 아이브 \'LOVE DIVE\' MV",
|
||||
length: Some(179),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -698,7 +698,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "2FzSv66c7TQ",
|
||||
title: "A E S P A (에스파) ALL SONGS PLAYLIST 2022 | 에스파 노래 모음",
|
||||
name: "A E S P A (에스파) ALL SONGS PLAYLIST 2022 | 에스파 노래 모음",
|
||||
length: Some(3441),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
@ -735,7 +735,7 @@ VideoDetails(
|
|||
),
|
||||
VideoItem(
|
||||
id: "NU611fxGyPU",
|
||||
title: "aespa 에스파 \'Black Mamba\' Dance Practice",
|
||||
name: "aespa 에스파 \'Black Mamba\' Dance Practice",
|
||||
length: Some(175),
|
||||
thumbnail: [
|
||||
Thumbnail(
|
||||
|
|
|
@ -166,14 +166,20 @@ impl MapResponse<VideoDetails> for response::VideoDetails {
|
|||
(
|
||||
title,
|
||||
// view count field contains `No views` if the view count is zero
|
||||
util::parse_numeric(&view_count.video_view_count_renderer.view_count)
|
||||
view_count
|
||||
.as_ref()
|
||||
.and_then(|vc| {
|
||||
util::parse_numeric(&vc.video_view_count_renderer.view_count).ok()
|
||||
})
|
||||
.unwrap_or_default(),
|
||||
// accessibility_data contains no digits if the like count is hidden,
|
||||
// so we ignore parse errors here for now
|
||||
like_btn.and_then(|btn| util::parse_numeric(&btn.accessibility_data).ok()),
|
||||
timeago::parse_textual_date_or_warn(lang, &date_text, &mut warnings),
|
||||
date_text,
|
||||
view_count.video_view_count_renderer.is_live,
|
||||
view_count
|
||||
.map(|vc| vc.video_view_count_renderer.is_live)
|
||||
.unwrap_or_default(),
|
||||
)
|
||||
}
|
||||
_ => {
|
||||
|
@ -291,7 +297,7 @@ impl MapResponse<VideoDetails> for response::VideoDetails {
|
|||
.c
|
||||
.into_iter()
|
||||
.map(|item| Chapter {
|
||||
title: item.macro_markers_list_item_renderer.title,
|
||||
name: item.macro_markers_list_item_renderer.title,
|
||||
position: item
|
||||
.macro_markers_list_item_renderer
|
||||
.on_tap
|
||||
|
@ -317,7 +323,7 @@ impl MapResponse<VideoDetails> for response::VideoDetails {
|
|||
Ok(MapResult {
|
||||
c: VideoDetails {
|
||||
id: video_id,
|
||||
title,
|
||||
name: title,
|
||||
description,
|
||||
channel: ChannelTag {
|
||||
id: channel_id,
|
||||
|
|
|
@ -174,7 +174,7 @@ pub struct VideoPlayerDetails {
|
|||
/// Unique YouTube video ID
|
||||
pub id: String,
|
||||
/// Video title
|
||||
pub title: String,
|
||||
pub name: String,
|
||||
/// Video description in plaintext format
|
||||
pub description: Option<String>,
|
||||
/// Video length in seconds
|
||||
|
@ -524,7 +524,7 @@ pub struct PlaylistVideo {
|
|||
/// Unique YouTube video ID
|
||||
pub id: String,
|
||||
/// Video title
|
||||
pub title: String,
|
||||
pub name: String,
|
||||
/// Video length in seconds
|
||||
pub length: u32,
|
||||
/// Video thumbnail
|
||||
|
@ -555,7 +555,7 @@ pub struct VideoDetails {
|
|||
/// Unique YouTube video ID
|
||||
pub id: String,
|
||||
/// Video title
|
||||
pub title: String,
|
||||
pub name: String,
|
||||
/// Video description in rich text format
|
||||
pub description: RichText,
|
||||
/// Channel of the video
|
||||
|
@ -608,8 +608,8 @@ pub struct VideoDetails {
|
|||
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
|
||||
#[non_exhaustive]
|
||||
pub struct Chapter {
|
||||
/// Chapter title
|
||||
pub title: String,
|
||||
/// Chapter name
|
||||
pub name: String,
|
||||
/// Chapter position in seconds
|
||||
pub position: u32,
|
||||
/// Chapter thumbnail
|
||||
|
@ -779,7 +779,7 @@ pub struct ChannelRssVideo {
|
|||
/// Unique YouTube video ID
|
||||
pub id: String,
|
||||
/// Video title
|
||||
pub title: String,
|
||||
pub name: String,
|
||||
/// Video description in plaintext format
|
||||
pub description: String,
|
||||
/// Video thumbnail
|
||||
|
@ -831,7 +831,7 @@ pub struct VideoItem {
|
|||
/// Unique YouTube video ID
|
||||
pub id: String,
|
||||
/// Video title
|
||||
pub title: String,
|
||||
pub name: String,
|
||||
/// Video length in seconds.
|
||||
///
|
||||
/// Is [`None`] for livestreams.
|
||||
|
@ -911,8 +911,8 @@ pub struct PlaylistItem {
|
|||
pub struct TrackItem {
|
||||
/// Unique YouTube video ID
|
||||
pub id: String,
|
||||
/// Track title
|
||||
pub title: String,
|
||||
/// Track name
|
||||
pub name: String,
|
||||
/// Track duration in seconds
|
||||
///
|
||||
/// [`None`] when extracted from an artist page or a featured video.
|
||||
|
|
|
@ -61,11 +61,16 @@ impl FilterResult {
|
|||
}
|
||||
|
||||
impl<'a> StreamFilter<'a> {
|
||||
/// Create a new [`StreamFilter`]
|
||||
pub fn new() -> Self {
|
||||
Self::default()
|
||||
}
|
||||
|
||||
/// Set the maximum audio bitrate in bits per second.
|
||||
///
|
||||
/// This is a soft filter, so if there is no stream with a bitrate
|
||||
/// <= the limit, the stream with the next higher bitrate is returned.
|
||||
pub fn audio_max_bitrate(&mut self, max_bitrate: u32) -> &mut Self {
|
||||
pub fn audio_max_bitrate(mut self, max_bitrate: u32) -> Self {
|
||||
self.audio_max_bitrate = Some(max_bitrate);
|
||||
self
|
||||
}
|
||||
|
@ -78,7 +83,7 @@ impl<'a> StreamFilter<'a> {
|
|||
}
|
||||
|
||||
/// Set the supported audio container formats
|
||||
pub fn audio_formats(&mut self, formats: &'a [AudioFormat]) -> &mut Self {
|
||||
pub fn audio_formats(mut self, formats: &'a [AudioFormat]) -> Self {
|
||||
self.audio_formats = Some(formats);
|
||||
self
|
||||
}
|
||||
|
@ -91,7 +96,7 @@ impl<'a> StreamFilter<'a> {
|
|||
}
|
||||
|
||||
/// Set the supported audio codecs
|
||||
pub fn audio_codecs(&mut self, codecs: &'a [AudioCodec]) -> &mut Self {
|
||||
pub fn audio_codecs(mut self, codecs: &'a [AudioCodec]) -> Self {
|
||||
self.audio_codecs = Some(codecs);
|
||||
self
|
||||
}
|
||||
|
@ -109,7 +114,7 @@ impl<'a> StreamFilter<'a> {
|
|||
///
|
||||
/// If this filter is unset or no stream matches,
|
||||
/// the filter returns the default audio stream.
|
||||
pub fn audio_language(&mut self, language: &'a str) -> &mut Self {
|
||||
pub fn audio_language(mut self, language: &'a str) -> Self {
|
||||
self.audio_language = Some(language);
|
||||
self
|
||||
}
|
||||
|
@ -135,7 +140,7 @@ impl<'a> StreamFilter<'a> {
|
|||
///
|
||||
/// This is a soft filter, so if there is no stream with a resolution
|
||||
/// <= the limit, the stream with the next higher resolution is returned.
|
||||
pub fn video_max_res(&mut self, max_res: u32) -> &mut Self {
|
||||
pub fn video_max_res(mut self, max_res: u32) -> Self {
|
||||
self.video_max_res = Some(max_res);
|
||||
self
|
||||
}
|
||||
|
@ -151,7 +156,7 @@ impl<'a> StreamFilter<'a> {
|
|||
///
|
||||
/// This is a soft filter, so if there is no stream with a framerate
|
||||
/// <= the limit, the stream with the next higher framerate is returned.
|
||||
pub fn video_max_fps(&mut self, max_fps: u8) -> &mut Self {
|
||||
pub fn video_max_fps(mut self, max_fps: u8) -> Self {
|
||||
self.video_max_fps = Some(max_fps);
|
||||
self
|
||||
}
|
||||
|
@ -164,7 +169,7 @@ impl<'a> StreamFilter<'a> {
|
|||
}
|
||||
|
||||
/// Set the supported video container formats
|
||||
pub fn video_formats(&mut self, formats: &'a [VideoFormat]) -> &mut Self {
|
||||
pub fn video_formats(mut self, formats: &'a [VideoFormat]) -> Self {
|
||||
self.video_formats = Some(formats);
|
||||
self
|
||||
}
|
||||
|
@ -177,7 +182,7 @@ impl<'a> StreamFilter<'a> {
|
|||
}
|
||||
|
||||
/// Set the supported video codecs
|
||||
pub fn video_codecs(&mut self, codecs: &'a [VideoCodec]) -> &mut Self {
|
||||
pub fn video_codecs(mut self, codecs: &'a [VideoCodec]) -> Self {
|
||||
self.video_codecs = Some(codecs);
|
||||
self
|
||||
}
|
||||
|
@ -190,7 +195,7 @@ impl<'a> StreamFilter<'a> {
|
|||
}
|
||||
|
||||
/// Allow HDR videos
|
||||
pub fn video_hdr(&mut self) -> &mut Self {
|
||||
pub fn video_hdr(mut self) -> Self {
|
||||
self.video_hdr = true;
|
||||
self
|
||||
}
|
||||
|
@ -203,7 +208,7 @@ impl<'a> StreamFilter<'a> {
|
|||
}
|
||||
|
||||
/// Output no video stream (audio only)
|
||||
pub fn no_video(&mut self) -> &mut Self {
|
||||
pub fn no_video(mut self) -> Self {
|
||||
self.video_none = true;
|
||||
self
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"details": {
|
||||
"id": "LXb3EKWsInQ",
|
||||
"title": "COSTA RICA IN 4K 60fps HDR (ULTRA HD)",
|
||||
"name": "COSTA RICA IN 4K 60fps HDR (ULTRA HD)",
|
||||
"description": "We've re-mastered and re-uploaded our favorite video in HDR!\n\nCHECK OUT OUR MOST POPULAR VIDEO: https://youtu.be/tO01J-M3g0U\n► INSTAGRAM: http://www.instagram.com/mysterybox\n► INSTAGRAM: http://www.instagram.com/jacobschwarz\n►WEBSITE: http://www.mysterybox.us\n►FACEBOOK: https://www.facebook.com/mysteryboxdi...\n\nMake sure to follow us on Instagram for BTS and sneak-peaks at upcoming projects. \n\nLICENSING & BUSINESS INQUIRIES\n► contact@mysterybox.us\n\nCHECK OUT OUR VIDEO PRODUCTION COMPANY\n► https://www.mysterybox.us\n\n4K PLAYLISTS\n► https://www.youtube.com/playlist?list...\n\nBLOG Check out our blog for great information on working in HDR and 8K. \n► http://www.mysterybox.us/blog\n\nSUBSCRIBE FOR MORE VIDS\n►https://www.youtube.com/user/jacobsch...\n\nMUSIC\n► Storyworks Music \"Promise of Dawn\"\nhttps://soundcloud.com/joshuapeterson/promise-of-dawn\nwww.storyworksmusic.com\n\n► SHOT ON\nRed Weapon LE w/Helium 8K s35 sensor (Stormtrooper33)\nCanon 16-35mm III \nCanon 24-70mm II\nSigma 150-500mm\nZeiss Classic 15mm\nMOVI M10\nAdobe Premiere and DaVinci Resolve\n\n\n\nLICENSING & BUSINESS INQUIRIES\n► contact@mysterybox.us\n\nThis video is subject to copyright owned by Mystery Box LLC. Any reproduction or republication of all or part of this video is expressly prohibited, unless Mystery Box has explicitly granted its prior written consent. All other rights reserved.\n\nCopyright © 2017 Mystery Box, LLC. All Rights Reserved.",
|
||||
"length": 314,
|
||||
"thumbnail": [
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"details": {
|
||||
"id": "tVWWp1PqDus",
|
||||
"title": "100 Girls Vs 100 Boys For $500,000",
|
||||
"name": "100 Girls Vs 100 Boys For $500,000",
|
||||
"description": "Giving away $25k on Current! Sign up and use my code “BEAST250” for a chance to win*: https://www.current.com/beast250\n\nSUBSCRIBE OR I TAKE YOUR DOG\n╔═╦╗╔╦╗╔═╦═╦╦╦╦╗╔═╗\n║╚╣║║║╚╣╚╣╔╣╔╣║╚╣═╣ \n╠╗║╚╝║║╠╗║╚╣║║║║║═╣\n╚═╩══╩═╩═╩═╩╝╚╩═╩═╝\n\n----------------------------------------------------------------\nfollow all of these or i will kick you\n• TikTok - https://www.tiktok.com/@mrbeast\n• Twitter - https://twitter.com/MrBeast\n• Instagram - https://www.instagram.com/mrbeast\n• Facebook - https://www.facebook.com/MrBeast6000/\n• Official Merch - https://www.shopmrbeast.com/\n• Beast Philanthropy - https://www.beastphilanthropy.org/\n\nText me @ +1 (917) 259-6364\nI'm Hiring! - https://www.mrbeastjobs.com/\nOrder a beast burger 🍔 - https://mrbeastburger.com\nChocolate 🍫 Win a Tesla or be in a MrBeast video - Buy now ▸ https://feastables.com\n-----------------------------------------------------------------—\n\nCurrent is a financial technology company, not a bank. Banking services provided by Choice Financial Group, Member FDIC. The Current Visa Debit Card is issued by Choice Financial Group pursuant to a license from Visa U.S.A. Inc. and may be used everywhere Visa debit cards are accepted.\n\n*NO PURCHASE OR PAYMENT NECESSARY TO ENTER OR WIN. Open to legal residents of the 50 U.S./D.C., age 18+ (19+ in AL and NE, 21+ in MS). Void outside the 50 U.S./D.C. and where prohibited. Sweepstakes starts at 12:00:01 AM ET on 7/9/22; ends at 11:59:59 PM ET on 10/9/22. Odds of winning will depend upon the number of eligible entries received. For full Official Rules and how to enter without becoming a Current member, visit https://www.current.com/beast250. Sponsor: Finco Services, Inc. d/b/a Current, 30 Cooper Square, Floor 4, New York, NY 10003.",
|
||||
"length": 1013,
|
||||
"thumbnail": [
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -21,7 +21,7 @@ MusicAlbum(
|
|||
tracks: [
|
||||
TrackItem(
|
||||
id: "aGd3VKSOTxY",
|
||||
title: "Ich wache auf",
|
||||
name: "Ich wache auf",
|
||||
duration: Some(221),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -42,7 +42,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Jz-26iiDuYs",
|
||||
title: "Waldbrand",
|
||||
name: "Waldbrand",
|
||||
duration: Some(208),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -63,7 +63,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Bu26uFtpt58",
|
||||
title: "Verlernt",
|
||||
name: "Verlernt",
|
||||
duration: Some(223),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -84,7 +84,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "RgwNqqiVqdY",
|
||||
title: "In Farbe",
|
||||
name: "In Farbe",
|
||||
duration: Some(221),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -105,7 +105,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "2TuOh30XbCI",
|
||||
title: "Stadt im Hinterland",
|
||||
name: "Stadt im Hinterland",
|
||||
duration: Some(197),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
|
135
tests/snapshots/youtube__music_album_no_artist.snap
Normal file
135
tests/snapshots/youtube__music_album_no_artist.snap
Normal file
|
@ -0,0 +1,135 @@
|
|||
---
|
||||
source: tests/youtube.rs
|
||||
assertion_line: 1391
|
||||
expression: album
|
||||
---
|
||||
MusicAlbum(
|
||||
id: "MPREb_bqWA6mAZFWS",
|
||||
playlist_id: Some("OLAK5uy_mUiRbMqeQXFUH6h9KB87RcEmNtm45Qvs0"),
|
||||
name: "Pedha Rasi Peddamma Katha",
|
||||
cover: "[cover]",
|
||||
artists: [],
|
||||
artist_id: None,
|
||||
description: None,
|
||||
album_type: Ep,
|
||||
year: Some(1968),
|
||||
by_va: false,
|
||||
tracks: [
|
||||
TrackItem(
|
||||
id: "EX7-pOQHPyE",
|
||||
name: "Siva Manoranjani",
|
||||
duration: Some(267),
|
||||
cover: [],
|
||||
artists: [
|
||||
ArtistId(
|
||||
id: Some("UC1C05NyYICFB2mVGn9_ttEw"),
|
||||
name: "Dr. M. Balamuralikrishna",
|
||||
),
|
||||
],
|
||||
artist_id: Some("UC1C05NyYICFB2mVGn9_ttEw"),
|
||||
album: Some(AlbumId(
|
||||
id: "MPREb_bqWA6mAZFWS",
|
||||
name: "Pedha Rasi Peddamma Katha",
|
||||
)),
|
||||
view_count: None,
|
||||
is_video: false,
|
||||
track_nr: Some(1),
|
||||
by_va: false,
|
||||
),
|
||||
TrackItem(
|
||||
id: "0AyWB-Quj4A",
|
||||
name: "Kuluku Nadakula",
|
||||
duration: Some(179),
|
||||
cover: [],
|
||||
artists: [
|
||||
ArtistId(
|
||||
id: Some("UCDqpyYkgWy2h03HamIfODjw"),
|
||||
name: "Ghantasala, Chorus",
|
||||
),
|
||||
],
|
||||
artist_id: Some("UCDqpyYkgWy2h03HamIfODjw"),
|
||||
album: Some(AlbumId(
|
||||
id: "MPREb_bqWA6mAZFWS",
|
||||
name: "Pedha Rasi Peddamma Katha",
|
||||
)),
|
||||
view_count: None,
|
||||
is_video: false,
|
||||
track_nr: Some(2),
|
||||
by_va: false,
|
||||
),
|
||||
TrackItem(
|
||||
id: "s0Sb-GZLXSM",
|
||||
name: "Gulabi Buggalunna",
|
||||
duration: Some(155),
|
||||
cover: [],
|
||||
artists: [
|
||||
ArtistId(
|
||||
id: None,
|
||||
name: "L.r. Eswari",
|
||||
),
|
||||
],
|
||||
artist_id: None,
|
||||
album: Some(AlbumId(
|
||||
id: "MPREb_bqWA6mAZFWS",
|
||||
name: "Pedha Rasi Peddamma Katha",
|
||||
)),
|
||||
view_count: None,
|
||||
is_video: false,
|
||||
track_nr: Some(3),
|
||||
by_va: false,
|
||||
),
|
||||
TrackItem(
|
||||
id: "P4XAaXjlCDA",
|
||||
name: "Oh Javaraala",
|
||||
duration: Some(229),
|
||||
cover: [],
|
||||
artists: [
|
||||
ArtistId(
|
||||
id: Some("UCl4iPtukwe7m0kIxUMskkgA"),
|
||||
name: "S.p. Balasubrahmanyam, S. Janaki",
|
||||
),
|
||||
],
|
||||
artist_id: Some("UCl4iPtukwe7m0kIxUMskkgA"),
|
||||
album: Some(AlbumId(
|
||||
id: "MPREb_bqWA6mAZFWS",
|
||||
name: "Pedha Rasi Peddamma Katha",
|
||||
)),
|
||||
view_count: None,
|
||||
is_video: false,
|
||||
track_nr: Some(4),
|
||||
by_va: false,
|
||||
),
|
||||
],
|
||||
variants: [
|
||||
AlbumItem(
|
||||
id: "MPREb_h8ltx5oKvyY",
|
||||
name: "Pedha Rasi Peddamma Katha",
|
||||
cover: [
|
||||
Thumbnail(
|
||||
url: "https://lh3.googleusercontent.com/iZtBdPWBGNB-GAWvOp9seuYj5QqKrUYGSe-B5J026yxHqFSWv4zsxHy-LxX5LbFlnepOPRWNLrajO-_-=w226-h226-l90-rj",
|
||||
width: 226,
|
||||
height: 226,
|
||||
),
|
||||
Thumbnail(
|
||||
url: "https://lh3.googleusercontent.com/iZtBdPWBGNB-GAWvOp9seuYj5QqKrUYGSe-B5J026yxHqFSWv4zsxHy-LxX5LbFlnepOPRWNLrajO-_-=w544-h544-l90-rj",
|
||||
width: 544,
|
||||
height: 544,
|
||||
),
|
||||
],
|
||||
artists: [
|
||||
ArtistId(
|
||||
id: Some("UCl4iPtukwe7m0kIxUMskkgA"),
|
||||
name: "S P Balasubramaniam",
|
||||
),
|
||||
ArtistId(
|
||||
id: Some("UCWgAqlYG7mXTUxrFiLyDSsg"),
|
||||
name: "S Janaki",
|
||||
),
|
||||
],
|
||||
artist_id: Some("UCl4iPtukwe7m0kIxUMskkgA"),
|
||||
album_type: Ep,
|
||||
year: None,
|
||||
by_va: false,
|
||||
),
|
||||
],
|
||||
)
|
61
tests/snapshots/youtube__music_album_no_year.snap
Normal file
61
tests/snapshots/youtube__music_album_no_year.snap
Normal file
|
@ -0,0 +1,61 @@
|
|||
---
|
||||
source: tests/youtube.rs
|
||||
expression: album
|
||||
---
|
||||
MusicAlbum(
|
||||
id: "MPREb_F3Af9UZZVxX",
|
||||
playlist_id: Some("OLAK5uy_nim4i4eycEtlBtS3Ci6j4SvvTmdfBcRX4"),
|
||||
name: "La Ultima Vez (Remix)",
|
||||
cover: "[cover]",
|
||||
artists: [
|
||||
ArtistId(
|
||||
id: Some("UCAJwa_1l4rHzBJyWbeBtGZw"),
|
||||
name: "Omega",
|
||||
),
|
||||
ArtistId(
|
||||
id: Some("UCbBaYg2UToDaoOwo-R6xi4g"),
|
||||
name: "Anuel AA",
|
||||
),
|
||||
ArtistId(
|
||||
id: Some("UCiY3z8HAGD6BlSNKVn2kSvQ"),
|
||||
name: "Bad Bunny",
|
||||
),
|
||||
],
|
||||
artist_id: Some("UCAJwa_1l4rHzBJyWbeBtGZw"),
|
||||
description: None,
|
||||
album_type: Single,
|
||||
year: None,
|
||||
by_va: false,
|
||||
tracks: [
|
||||
TrackItem(
|
||||
id: "1Sz3lUVGBSM",
|
||||
name: "La Ultima Vez (Remix)",
|
||||
duration: Some(229),
|
||||
cover: [],
|
||||
artists: [
|
||||
ArtistId(
|
||||
id: Some("UCAJwa_1l4rHzBJyWbeBtGZw"),
|
||||
name: "Omega",
|
||||
),
|
||||
ArtistId(
|
||||
id: Some("UCbBaYg2UToDaoOwo-R6xi4g"),
|
||||
name: "Anuel AA",
|
||||
),
|
||||
ArtistId(
|
||||
id: Some("UCiY3z8HAGD6BlSNKVn2kSvQ"),
|
||||
name: "Bad Bunny",
|
||||
),
|
||||
],
|
||||
artist_id: Some("UCAJwa_1l4rHzBJyWbeBtGZw"),
|
||||
album: Some(AlbumId(
|
||||
id: "MPREb_F3Af9UZZVxX",
|
||||
name: "La Ultima Vez (Remix)",
|
||||
)),
|
||||
view_count: None,
|
||||
is_video: false,
|
||||
track_nr: Some(1),
|
||||
by_va: false,
|
||||
),
|
||||
],
|
||||
variants: [],
|
||||
)
|
|
@ -21,7 +21,7 @@ MusicAlbum(
|
|||
tracks: [
|
||||
TrackItem(
|
||||
id: "g0iRiJ_ck48",
|
||||
title: "Aulë und Yavanna",
|
||||
name: "Aulë und Yavanna",
|
||||
duration: Some(216),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -42,7 +42,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "rREEBXp0y9s",
|
||||
title: "Numenor",
|
||||
name: "Numenor",
|
||||
duration: Some(224),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -63,7 +63,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "zvU5Y8Q19hU",
|
||||
title: "Das Mädchen und die Liebe (feat. Santiano)",
|
||||
name: "Das Mädchen und die Liebe (feat. Santiano)",
|
||||
duration: Some(176),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -84,7 +84,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "ARKLrzzTQA0",
|
||||
title: "Niënna",
|
||||
name: "Niënna",
|
||||
duration: Some(215),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -105,7 +105,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "tstLgN8A_Ng",
|
||||
title: "Der fahle Mond",
|
||||
name: "Der fahle Mond",
|
||||
duration: Some(268),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -126,7 +126,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "k2DjgQOY3Ts",
|
||||
title: "Weise den Weg",
|
||||
name: "Weise den Weg",
|
||||
duration: Some(202),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -147,7 +147,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "azHwhecxEsI",
|
||||
title: "Zeit der Sommernächte",
|
||||
name: "Zeit der Sommernächte",
|
||||
duration: Some(185),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -168,7 +168,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "_FcsdYIQ2co",
|
||||
title: "Märchen enden gut",
|
||||
name: "Märchen enden gut",
|
||||
duration: Some(226),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -189,7 +189,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "27bOWEbshyE",
|
||||
title: "Das Mädchen und der Tod",
|
||||
name: "Das Mädchen und der Tod",
|
||||
duration: Some(207),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -210,7 +210,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "riD_3oZwt8w",
|
||||
title: "Wir sehn uns wieder",
|
||||
name: "Wir sehn uns wieder",
|
||||
duration: Some(211),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -231,7 +231,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "8GNvjF3no9s",
|
||||
title: "Tanz mit mir",
|
||||
name: "Tanz mit mir",
|
||||
duration: Some(179),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -252,7 +252,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "YHMFzf1uN2U",
|
||||
title: "Nachtigall",
|
||||
name: "Nachtigall",
|
||||
duration: Some(218),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -273,7 +273,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "jvV-z5F3oAo",
|
||||
title: "Gayatri Mantra",
|
||||
name: "Gayatri Mantra",
|
||||
duration: Some(277),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -294,7 +294,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "u8_9cxlrh8k",
|
||||
title: "Sing mir deine Lieder",
|
||||
name: "Sing mir deine Lieder",
|
||||
duration: Some(204),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -315,7 +315,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "gSvKcvM1Wk0",
|
||||
title: "Laurië lantar",
|
||||
name: "Laurië lantar",
|
||||
duration: Some(202),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -336,7 +336,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "wQHgKRJ0pDQ",
|
||||
title: "Wächter vor dem Tor",
|
||||
name: "Wächter vor dem Tor",
|
||||
duration: Some(222),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -357,7 +357,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Ckz5i6-hzf0",
|
||||
title: "Stroh zu Gold",
|
||||
name: "Stroh zu Gold",
|
||||
duration: Some(177),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -378,7 +378,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "y5zuUgyFqrc",
|
||||
title: "Sonnenwendnacht",
|
||||
name: "Sonnenwendnacht",
|
||||
duration: Some(220),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
|
|
@ -21,7 +21,7 @@ MusicAlbum(
|
|||
tracks: [
|
||||
TrackItem(
|
||||
id: "lSbKz5LWvKE",
|
||||
title: "Achtung, Waldbrand - Teil 1",
|
||||
name: "Achtung, Waldbrand - Teil 1",
|
||||
duration: Some(229),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -42,7 +42,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "fdO6gu4qjRw",
|
||||
title: "Achtung, Waldbrand - Teil 2",
|
||||
name: "Achtung, Waldbrand - Teil 2",
|
||||
duration: Some(235),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -63,7 +63,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "muCxstXirvY",
|
||||
title: "Achtung, Waldbrand - Teil 3",
|
||||
name: "Achtung, Waldbrand - Teil 3",
|
||||
duration: Some(197),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -84,7 +84,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "aG1N0vo__Ng",
|
||||
title: "Eiszeit - Teil 1",
|
||||
name: "Eiszeit - Teil 1",
|
||||
duration: Some(186),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -105,7 +105,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "roHhLNYS9yo",
|
||||
title: "Eiszeit - Teil 2",
|
||||
name: "Eiszeit - Teil 2",
|
||||
duration: Some(188),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -126,7 +126,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "nJ49NuLvcAw",
|
||||
title: "Eiszeit - Teil 3",
|
||||
name: "Eiszeit - Teil 3",
|
||||
duration: Some(205),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -147,7 +147,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Me119D570h0",
|
||||
title: "Eiszeit - Teil 4",
|
||||
name: "Eiszeit - Teil 4",
|
||||
duration: Some(219),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -168,7 +168,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "YXnRLK-qKG8",
|
||||
title: "Im Sinkloch - Teil 1",
|
||||
name: "Im Sinkloch - Teil 1",
|
||||
duration: Some(240),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -189,7 +189,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "A61wz1jz9X0",
|
||||
title: "Im Sinkloch - Teil 2",
|
||||
name: "Im Sinkloch - Teil 2",
|
||||
duration: Some(239),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -210,7 +210,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "u_S08EJOTUg",
|
||||
title: "Im Sinkloch - Teil 3",
|
||||
name: "Im Sinkloch - Teil 3",
|
||||
duration: Some(197),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -231,7 +231,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "0qwYJihV1EU",
|
||||
title: "Vorsicht, heiß - Teil 1",
|
||||
name: "Vorsicht, heiß - Teil 1",
|
||||
duration: Some(201),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -252,7 +252,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "zjhoyTnEzuQ",
|
||||
title: "Vorsicht, heiß - Teil 2",
|
||||
name: "Vorsicht, heiß - Teil 2",
|
||||
duration: Some(187),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -273,7 +273,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "oDjDd0UBzAY",
|
||||
title: "Vorsicht, heiß - Teil 3",
|
||||
name: "Vorsicht, heiß - Teil 3",
|
||||
duration: Some(183),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -294,7 +294,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "_3-WVmqgi-Q",
|
||||
title: "Vorsicht, heiß - Teil 4",
|
||||
name: "Vorsicht, heiß - Teil 4",
|
||||
duration: Some(193),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
|
|
@ -25,7 +25,7 @@ MusicAlbum(
|
|||
tracks: [
|
||||
TrackItem(
|
||||
id: "VU6lEv0PKAo",
|
||||
title: "Der Himmel reißt auf",
|
||||
name: "Der Himmel reißt auf",
|
||||
duration: Some(183),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
|
|
@ -16,7 +16,7 @@ MusicAlbum(
|
|||
tracks: [
|
||||
TrackItem(
|
||||
id: "R3VIKRtzAdE",
|
||||
title: "Teeth",
|
||||
name: "Teeth",
|
||||
duration: Some(205),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -37,7 +37,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "t0v0UOgOt18",
|
||||
title: "Die A Little",
|
||||
name: "Die A Little",
|
||||
duration: Some(174),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -58,7 +58,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "HjJYAkUXrxI",
|
||||
title: "fuck, i\'m lonely (feat. Anne-Marie)",
|
||||
name: "fuck, i\'m lonely (feat. Anne-Marie)",
|
||||
duration: Some(199),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -79,7 +79,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Hg0KUOTL06I",
|
||||
title: "Swim Home",
|
||||
name: "Swim Home",
|
||||
duration: Some(187),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -100,7 +100,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "c8AfY6yhdkM",
|
||||
title: "Another Summer Night Without You",
|
||||
name: "Another Summer Night Without You",
|
||||
duration: Some(159),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -121,7 +121,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "_ZmdHjVvwhc",
|
||||
title: "Miss U",
|
||||
name: "Miss U",
|
||||
duration: Some(186),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -142,7 +142,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "wBe1Zi3q1n8",
|
||||
title: "Favorite Drug",
|
||||
name: "Favorite Drug",
|
||||
duration: Some(209),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -163,7 +163,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "l8Pj8s9uPGc",
|
||||
title: "Keeping It In The Dark",
|
||||
name: "Keeping It In The Dark",
|
||||
duration: Some(209),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -184,7 +184,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Kn3cruxYj0c",
|
||||
title: "All That (feat. Jeremih)",
|
||||
name: "All That (feat. Jeremih)",
|
||||
duration: Some(174),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -205,7 +205,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Sy1lIOl1YN0",
|
||||
title: "This Baby Don’t Cry",
|
||||
name: "This Baby Don’t Cry",
|
||||
duration: Some(185),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -226,7 +226,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "njdlNT1RRo4",
|
||||
title: "Walk Forever By My Side",
|
||||
name: "Walk Forever By My Side",
|
||||
duration: Some(237),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -247,7 +247,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "Si-CXM8CHqQ",
|
||||
title: "Ordinary World (feat. White Sea)",
|
||||
name: "Ordinary World (feat. White Sea)",
|
||||
duration: Some(246),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
|
|
@ -16,7 +16,7 @@ MusicAlbum(
|
|||
tracks: [
|
||||
TrackItem(
|
||||
id: "Tzai7JXo45w",
|
||||
title: "Waka Boom (My Way) (feat. Lee Young Ji)",
|
||||
name: "Waka Boom (My Way) (feat. Lee Young Ji)",
|
||||
duration: Some(274),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -37,7 +37,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "9WYpLYAEub0",
|
||||
title: "AURA",
|
||||
name: "AURA",
|
||||
duration: Some(216),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -58,7 +58,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "R48tE237bW4",
|
||||
title: "THE GIRLS (Can’t turn me down)",
|
||||
name: "THE GIRLS (Can’t turn me down)",
|
||||
duration: Some(239),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -79,7 +79,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "-UzsoR6z-vg",
|
||||
title: "Red Sun!",
|
||||
name: "Red Sun!",
|
||||
duration: Some(254),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -100,7 +100,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "kbNVyn8Ex28",
|
||||
title: "POSE",
|
||||
name: "POSE",
|
||||
duration: Some(187),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
@ -121,7 +121,7 @@ MusicAlbum(
|
|||
),
|
||||
TrackItem(
|
||||
id: "NJrQZUzWP5Y",
|
||||
title: "Whistle",
|
||||
name: "Whistle",
|
||||
duration: Some(224),
|
||||
cover: [],
|
||||
artists: [
|
||||
|
|
139
tests/snapshots/youtube__music_album_version_no_artist.snap
Normal file
139
tests/snapshots/youtube__music_album_version_no_artist.snap
Normal file
|
@ -0,0 +1,139 @@
|
|||
---
|
||||
source: tests/youtube.rs
|
||||
assertion_line: 1391
|
||||
expression: album
|
||||
---
|
||||
MusicAlbum(
|
||||
id: "MPREb_h8ltx5oKvyY",
|
||||
playlist_id: Some("OLAK5uy_lIDfTi_k8V1RJ54MeJJGK_BduAeYbm-0s"),
|
||||
name: "Pedha Rasi Peddamma Katha",
|
||||
cover: "[cover]",
|
||||
artists: [
|
||||
ArtistId(
|
||||
id: Some("UCl4iPtukwe7m0kIxUMskkgA"),
|
||||
name: "S P Balasubramaniam",
|
||||
),
|
||||
ArtistId(
|
||||
id: Some("UCWgAqlYG7mXTUxrFiLyDSsg"),
|
||||
name: "S Janaki",
|
||||
),
|
||||
],
|
||||
artist_id: Some("UCl4iPtukwe7m0kIxUMskkgA"),
|
||||
description: None,
|
||||
album_type: Ep,
|
||||
year: Some(1968),
|
||||
by_va: false,
|
||||
tracks: [
|
||||
TrackItem(
|
||||
id: "AKJ3IJZKPWc",
|
||||
name: "Oh Javaraala",
|
||||
duration: Some(228),
|
||||
cover: [],
|
||||
artists: [
|
||||
ArtistId(
|
||||
id: Some("UCl4iPtukwe7m0kIxUMskkgA"),
|
||||
name: "S P Balasubramaniam",
|
||||
),
|
||||
ArtistId(
|
||||
id: Some("UCWgAqlYG7mXTUxrFiLyDSsg"),
|
||||
name: "S Janaki",
|
||||
),
|
||||
],
|
||||
artist_id: Some("UCl4iPtukwe7m0kIxUMskkgA"),
|
||||
album: Some(AlbumId(
|
||||
id: "MPREb_h8ltx5oKvyY",
|
||||
name: "Pedha Rasi Peddamma Katha",
|
||||
)),
|
||||
view_count: None,
|
||||
is_video: false,
|
||||
track_nr: Some(1),
|
||||
by_va: false,
|
||||
),
|
||||
TrackItem(
|
||||
id: "WnpZuHNB33E",
|
||||
name: "Siva Manoranjani",
|
||||
duration: Some(266),
|
||||
cover: [],
|
||||
artists: [
|
||||
ArtistId(
|
||||
id: Some("UC1C05NyYICFB2mVGn9_ttEw"),
|
||||
name: "M Balamuralikrishna",
|
||||
),
|
||||
],
|
||||
artist_id: Some("UC1C05NyYICFB2mVGn9_ttEw"),
|
||||
album: Some(AlbumId(
|
||||
id: "MPREb_h8ltx5oKvyY",
|
||||
name: "Pedha Rasi Peddamma Katha",
|
||||
)),
|
||||
view_count: None,
|
||||
is_video: false,
|
||||
track_nr: Some(2),
|
||||
by_va: false,
|
||||
),
|
||||
TrackItem(
|
||||
id: "pRqoDGXg1-I",
|
||||
name: "Gulabi Buggalunna",
|
||||
duration: Some(154),
|
||||
cover: [],
|
||||
artists: [
|
||||
ArtistId(
|
||||
id: Some("UC_KQPMiRQl3CFAIKTVfCHwA"),
|
||||
name: "L R Eswari",
|
||||
),
|
||||
],
|
||||
artist_id: Some("UC_KQPMiRQl3CFAIKTVfCHwA"),
|
||||
album: Some(AlbumId(
|
||||
id: "MPREb_h8ltx5oKvyY",
|
||||
name: "Pedha Rasi Peddamma Katha",
|
||||
)),
|
||||
view_count: None,
|
||||
is_video: false,
|
||||
track_nr: Some(3),
|
||||
by_va: false,
|
||||
),
|
||||
TrackItem(
|
||||
id: "20vIKLJxjBY",
|
||||
name: "Kuluku Nadakula",
|
||||
duration: Some(178),
|
||||
cover: [],
|
||||
artists: [
|
||||
ArtistId(
|
||||
id: None,
|
||||
name: "Ghantasala & Chorus",
|
||||
),
|
||||
],
|
||||
artist_id: Some("UCDqpyYkgWy2h03HamIfODjw"),
|
||||
album: Some(AlbumId(
|
||||
id: "MPREb_h8ltx5oKvyY",
|
||||
name: "Pedha Rasi Peddamma Katha",
|
||||
)),
|
||||
view_count: None,
|
||||
is_video: false,
|
||||
track_nr: Some(4),
|
||||
by_va: false,
|
||||
),
|
||||
],
|
||||
variants: [
|
||||
AlbumItem(
|
||||
id: "MPREb_bqWA6mAZFWS",
|
||||
name: "Pedha Rasi Peddamma Katha",
|
||||
cover: [
|
||||
Thumbnail(
|
||||
url: "https://lh3.googleusercontent.com/cyKTDdyucqYv8xfv0t3Vs9CkhmvssXRKsGzlWN_DU6A9uapXvovV0Ys2fXc9-r7Jv7V4UB1OD48iYH5z=w226-h226-l90-rj",
|
||||
width: 226,
|
||||
height: 226,
|
||||
),
|
||||
Thumbnail(
|
||||
url: "https://lh3.googleusercontent.com/cyKTDdyucqYv8xfv0t3Vs9CkhmvssXRKsGzlWN_DU6A9uapXvovV0Ys2fXc9-r7Jv7V4UB1OD48iYH5z=w544-h544-l90-rj",
|
||||
width: 544,
|
||||
height: 544,
|
||||
),
|
||||
],
|
||||
artists: [],
|
||||
artist_id: None,
|
||||
album_type: Ep,
|
||||
year: None,
|
||||
by_va: true,
|
||||
),
|
||||
],
|
||||
)
|
|
@ -3,235 +3,145 @@ source: tests/youtube.rs
|
|||
expression: artist
|
||||
---
|
||||
MusicArtist(
|
||||
id: "UC_vmjW5e1xEHhYjY2a0kK1A",
|
||||
name: "Oonagh",
|
||||
id: "UCOR4_bSVIXPsGa4BbCSt60Q",
|
||||
name: "Trailerpark",
|
||||
header_image: "[header_image]",
|
||||
description: Some("Senta-Sofia Delliponti is a German singer, songwriter and actress. Since January 2014, she used the stage name Oonagh, until she changed it to Senta in 2022. Her signature musical style is inspired by the mystical lore of J. R. R. Tolkien\'s universe and by ethnic sounds throughout the world.\n\nFrom Wikipedia (https://en.wikipedia.org/wiki/Oonagh_(singer)) under Creative Commons Attribution CC-BY-SA 3.0 (http://creativecommons.org/licenses/by-sa/3.0/legalcode)"),
|
||||
wikipedia_url: Some("https://en.wikipedia.org/wiki/Oonagh_"),
|
||||
description: None,
|
||||
wikipedia_url: None,
|
||||
subscriber_count: "[subscriber_count]",
|
||||
tracks: "[tracks]",
|
||||
albums: [
|
||||
AlbumItem(
|
||||
id: "MPREb_2vYEpZteTjN",
|
||||
name: "Willst du noch träumen (feat. Elbkinder (Rolf Zuckowski))",
|
||||
id: "MPREb_8PsIyll0LFV",
|
||||
name: "Bleib in der Schule",
|
||||
cover: "[cover]",
|
||||
artists: [
|
||||
ArtistId(
|
||||
id: Some("UC_vmjW5e1xEHhYjY2a0kK1A"),
|
||||
name: "Oonagh",
|
||||
id: Some("UCOR4_bSVIXPsGa4BbCSt60Q"),
|
||||
name: "Trailerpark",
|
||||
),
|
||||
],
|
||||
artist_id: Some("UC_vmjW5e1xEHhYjY2a0kK1A"),
|
||||
album_type: Single,
|
||||
year: Some(2016),
|
||||
by_va: false,
|
||||
),
|
||||
AlbumItem(
|
||||
id: "MPREb_76jQdnW2e6m",
|
||||
name: "Gäa (Akustik Version)",
|
||||
cover: "[cover]",
|
||||
artists: [
|
||||
ArtistId(
|
||||
id: Some("UC_vmjW5e1xEHhYjY2a0kK1A"),
|
||||
name: "Oonagh",
|
||||
),
|
||||
],
|
||||
artist_id: Some("UC_vmjW5e1xEHhYjY2a0kK1A"),
|
||||
artist_id: Some("UCOR4_bSVIXPsGa4BbCSt60Q"),
|
||||
album_type: Single,
|
||||
year: Some(2014),
|
||||
by_va: false,
|
||||
),
|
||||
AlbumItem(
|
||||
id: "MPREb_8weOuwHWdSU",
|
||||
name: "Oonagh",
|
||||
id: "MPREb_HPXN9BBzFpV",
|
||||
name: "TP4L",
|
||||
cover: "[cover]",
|
||||
artists: [
|
||||
ArtistId(
|
||||
id: Some("UC_vmjW5e1xEHhYjY2a0kK1A"),
|
||||
name: "Oonagh",
|
||||
id: Some("UCOR4_bSVIXPsGa4BbCSt60Q"),
|
||||
name: "Trailerpark",
|
||||
),
|
||||
],
|
||||
artist_id: Some("UC_vmjW5e1xEHhYjY2a0kK1A"),
|
||||
artist_id: Some("UCOR4_bSVIXPsGa4BbCSt60Q"),
|
||||
album_type: Single,
|
||||
year: Some(2017),
|
||||
by_va: false,
|
||||
),
|
||||
AlbumItem(
|
||||
id: "MPREb_POeT6m0bw9q",
|
||||
name: "Crackstreet Boys II X Version",
|
||||
cover: "[cover]",
|
||||
artists: [
|
||||
ArtistId(
|
||||
id: Some("UCOR4_bSVIXPsGa4BbCSt60Q"),
|
||||
name: "Trailerpark",
|
||||
),
|
||||
],
|
||||
artist_id: Some("UCOR4_bSVIXPsGa4BbCSt60Q"),
|
||||
album_type: Ep,
|
||||
year: Some(2014),
|
||||
by_va: false,
|
||||
),
|
||||
AlbumItem(
|
||||
id: "MPREb_R6EV2L1q0oc",
|
||||
name: "Armut treibt Jugendliche in die Popmusik",
|
||||
cover: "[cover]",
|
||||
artists: [
|
||||
ArtistId(
|
||||
id: Some("UCOR4_bSVIXPsGa4BbCSt60Q"),
|
||||
name: "Trailerpark",
|
||||
),
|
||||
],
|
||||
artist_id: Some("UCOR4_bSVIXPsGa4BbCSt60Q"),
|
||||
album_type: Single,
|
||||
year: Some(2017),
|
||||
by_va: false,
|
||||
),
|
||||
AlbumItem(
|
||||
id: "MPREb_UYdRV1nnK2J",
|
||||
name: "TP4L",
|
||||
cover: "[cover]",
|
||||
artists: [
|
||||
ArtistId(
|
||||
id: Some("UCOR4_bSVIXPsGa4BbCSt60Q"),
|
||||
name: "Trailerpark",
|
||||
),
|
||||
],
|
||||
artist_id: Some("UCOR4_bSVIXPsGa4BbCSt60Q"),
|
||||
album_type: Album,
|
||||
year: Some(2017),
|
||||
by_va: false,
|
||||
),
|
||||
AlbumItem(
|
||||
id: "MPREb_bi34SGT1xlc",
|
||||
name: "Crackstreet Boys 3 (Bonus Tracks Version)",
|
||||
cover: "[cover]",
|
||||
artists: [
|
||||
ArtistId(
|
||||
id: Some("UCOR4_bSVIXPsGa4BbCSt60Q"),
|
||||
name: "Trailerpark",
|
||||
),
|
||||
],
|
||||
artist_id: Some("UCOR4_bSVIXPsGa4BbCSt60Q"),
|
||||
album_type: Album,
|
||||
year: Some(2014),
|
||||
by_va: false,
|
||||
),
|
||||
AlbumItem(
|
||||
id: "MPREb_Gnj2M6UQmfX",
|
||||
name: "Ich sehe was, was Du nicht siehst (Online Version)",
|
||||
id: "MPREb_hcK0fXETEf9",
|
||||
name: "Endlich normale Leute",
|
||||
cover: "[cover]",
|
||||
artists: [
|
||||
ArtistId(
|
||||
id: Some("UC_vmjW5e1xEHhYjY2a0kK1A"),
|
||||
name: "Oonagh",
|
||||
id: Some("UCOR4_bSVIXPsGa4BbCSt60Q"),
|
||||
name: "Trailerpark",
|
||||
),
|
||||
],
|
||||
artist_id: Some("UC_vmjW5e1xEHhYjY2a0kK1A"),
|
||||
album_type: Single,
|
||||
year: Some(2007),
|
||||
by_va: false,
|
||||
),
|
||||
AlbumItem(
|
||||
id: "MPREb_GyH43gCvdM5",
|
||||
name: "Best Of",
|
||||
cover: "[cover]",
|
||||
artists: [
|
||||
ArtistId(
|
||||
id: Some("UC_vmjW5e1xEHhYjY2a0kK1A"),
|
||||
name: "Oonagh",
|
||||
),
|
||||
],
|
||||
artist_id: Some("UC_vmjW5e1xEHhYjY2a0kK1A"),
|
||||
album_type: Album,
|
||||
year: Some(2020),
|
||||
by_va: false,
|
||||
),
|
||||
AlbumItem(
|
||||
id: "MPREb_S6P0cjIdHIF",
|
||||
name: "Zauberwald",
|
||||
cover: "[cover]",
|
||||
artists: [
|
||||
ArtistId(
|
||||
id: Some("UC_vmjW5e1xEHhYjY2a0kK1A"),
|
||||
name: "Oonagh",
|
||||
),
|
||||
],
|
||||
artist_id: Some("UC_vmjW5e1xEHhYjY2a0kK1A"),
|
||||
artist_id: Some("UCOR4_bSVIXPsGa4BbCSt60Q"),
|
||||
album_type: Single,
|
||||
year: Some(2017),
|
||||
by_va: false,
|
||||
),
|
||||
AlbumItem(
|
||||
id: "MPREb_WAzaITm6K4l",
|
||||
name: "Zeit der Sommernächte (Single Mix)",
|
||||
id: "MPREb_kLvmX2AzYBL",
|
||||
name: "Bleib in der Schule (Live at Wacken 2019)",
|
||||
cover: "[cover]",
|
||||
artists: [
|
||||
ArtistId(
|
||||
id: Some("UC_vmjW5e1xEHhYjY2a0kK1A"),
|
||||
name: "Oonagh",
|
||||
id: Some("UCOR4_bSVIXPsGa4BbCSt60Q"),
|
||||
name: "Trailerpark",
|
||||
),
|
||||
],
|
||||
artist_id: Some("UC_vmjW5e1xEHhYjY2a0kK1A"),
|
||||
artist_id: Some("UCOR4_bSVIXPsGa4BbCSt60Q"),
|
||||
album_type: Single,
|
||||
year: Some(2017),
|
||||
year: Some(2014),
|
||||
by_va: false,
|
||||
),
|
||||
AlbumItem(
|
||||
id: "MPREb_WfEYxWGLcMx",
|
||||
name: "Du bist genug (Single Mix)",
|
||||
id: "MPREb_oHieBHkXn3A",
|
||||
name: "Dicks Sucken",
|
||||
cover: "[cover]",
|
||||
artists: [
|
||||
ArtistId(
|
||||
id: Some("UC_vmjW5e1xEHhYjY2a0kK1A"),
|
||||
name: "Oonagh",
|
||||
id: Some("UCOR4_bSVIXPsGa4BbCSt60Q"),
|
||||
name: "Trailerpark",
|
||||
),
|
||||
],
|
||||
artist_id: Some("UC_vmjW5e1xEHhYjY2a0kK1A"),
|
||||
album_type: Single,
|
||||
year: Some(2020),
|
||||
by_va: false,
|
||||
),
|
||||
AlbumItem(
|
||||
id: "MPREb_eNje8weTxgK",
|
||||
name: "Aulë und Yavanna (Jungle-Mix)",
|
||||
cover: "[cover]",
|
||||
artists: [
|
||||
ArtistId(
|
||||
id: Some("UC_vmjW5e1xEHhYjY2a0kK1A"),
|
||||
name: "Oonagh",
|
||||
),
|
||||
],
|
||||
artist_id: Some("UC_vmjW5e1xEHhYjY2a0kK1A"),
|
||||
album_type: Single,
|
||||
year: Some(2016),
|
||||
by_va: false,
|
||||
),
|
||||
AlbumItem(
|
||||
id: "MPREb_imDwIcPAjFy",
|
||||
name: "Aeria (Sartoranta - Fan Edition)",
|
||||
cover: "[cover]",
|
||||
artists: [
|
||||
ArtistId(
|
||||
id: Some("UC_vmjW5e1xEHhYjY2a0kK1A"),
|
||||
name: "Oonagh",
|
||||
),
|
||||
],
|
||||
artist_id: Some("UC_vmjW5e1xEHhYjY2a0kK1A"),
|
||||
album_type: Album,
|
||||
year: Some(2015),
|
||||
by_va: false,
|
||||
),
|
||||
AlbumItem(
|
||||
id: "MPREb_jovYz4SubiU",
|
||||
name: "Eine neue Zeit",
|
||||
cover: "[cover]",
|
||||
artists: [
|
||||
ArtistId(
|
||||
id: Some("UC_vmjW5e1xEHhYjY2a0kK1A"),
|
||||
name: "Oonagh",
|
||||
),
|
||||
],
|
||||
artist_id: Some("UC_vmjW5e1xEHhYjY2a0kK1A"),
|
||||
album_type: Album,
|
||||
year: Some(2019),
|
||||
by_va: false,
|
||||
),
|
||||
AlbumItem(
|
||||
id: "MPREb_kWjFiCq7EdM",
|
||||
name: "Scheissegal (Digital Version)",
|
||||
cover: "[cover]",
|
||||
artists: [
|
||||
ArtistId(
|
||||
id: Some("UC_vmjW5e1xEHhYjY2a0kK1A"),
|
||||
name: "Oonagh",
|
||||
),
|
||||
],
|
||||
artist_id: Some("UC_vmjW5e1xEHhYjY2a0kK1A"),
|
||||
album_type: Single,
|
||||
year: Some(2006),
|
||||
by_va: false,
|
||||
),
|
||||
AlbumItem(
|
||||
id: "MPREb_nlBWQROfvjo",
|
||||
name: "Märchen enden gut",
|
||||
cover: "[cover]",
|
||||
artists: [
|
||||
ArtistId(
|
||||
id: Some("UC_vmjW5e1xEHhYjY2a0kK1A"),
|
||||
name: "Oonagh",
|
||||
),
|
||||
],
|
||||
artist_id: Some("UC_vmjW5e1xEHhYjY2a0kK1A"),
|
||||
album_type: Album,
|
||||
year: Some(2016),
|
||||
by_va: false,
|
||||
),
|
||||
AlbumItem(
|
||||
id: "MPREb_oWACs9fccqd",
|
||||
name: "Kuliko Jana - Eine neue Zeit",
|
||||
cover: "[cover]",
|
||||
artists: [
|
||||
ArtistId(
|
||||
id: Some("UC_vmjW5e1xEHhYjY2a0kK1A"),
|
||||
name: "Oonagh",
|
||||
),
|
||||
],
|
||||
artist_id: Some("UC_vmjW5e1xEHhYjY2a0kK1A"),
|
||||
album_type: Single,
|
||||
year: Some(2019),
|
||||
by_va: false,
|
||||
),
|
||||
AlbumItem(
|
||||
id: "MPREb_vuyS6nIsNeg",
|
||||
name: "Gäa",
|
||||
cover: "[cover]",
|
||||
artists: [
|
||||
ArtistId(
|
||||
id: Some("UC_vmjW5e1xEHhYjY2a0kK1A"),
|
||||
name: "Oonagh",
|
||||
),
|
||||
],
|
||||
artist_id: Some("UC_vmjW5e1xEHhYjY2a0kK1A"),
|
||||
artist_id: Some("UCOR4_bSVIXPsGa4BbCSt60Q"),
|
||||
album_type: Single,
|
||||
year: Some(2014),
|
||||
by_va: false,
|
||||
|
@ -239,6 +149,6 @@ MusicArtist(
|
|||
],
|
||||
playlists: "[playlists]",
|
||||
similar_artists: "[artists]",
|
||||
tracks_playlist_id: Some("OLAK5uy_m6843aeUO05cz_t1seql2dQ9eUgwyuOXI"),
|
||||
videos_playlist_id: None,
|
||||
tracks_playlist_id: Some("OLAK5uy_miHesZCUQY5S9EwqfoNP2tZR9nZ0NBAeU"),
|
||||
videos_playlist_id: Some("OLAK5uy_mqbgE6T9uvusUWrAxJGiImf4_P4dM7IvQ"),
|
||||
)
|
||||
|
|
|
@ -5,7 +5,7 @@ expression: track
|
|||
TrackDetails(
|
||||
track: TrackItem(
|
||||
id: "ZeerrnuLi5E",
|
||||
title: "Black Mamba",
|
||||
name: "Black Mamba",
|
||||
duration: Some(230),
|
||||
cover: "[cover]",
|
||||
artists: [
|
||||
|
|
|
@ -5,7 +5,7 @@ expression: track
|
|||
TrackDetails(
|
||||
track: TrackItem(
|
||||
id: "7nigXQS1Xb0",
|
||||
title: "INVU",
|
||||
name: "INVU",
|
||||
duration: Some(205),
|
||||
cover: "[cover]",
|
||||
artists: [
|
||||
|
|
|
@ -40,7 +40,7 @@ async fn get_player_from_client(#[case] client_type: ClientType) {
|
|||
// dbg!(&player_data);
|
||||
|
||||
assert_eq!(player_data.details.id, "n4tK7LYFxI0");
|
||||
assert_eq!(player_data.details.title, "Spektrem - Shine [NCS Release]");
|
||||
assert_eq!(player_data.details.name, "Spektrem - Shine [NCS Release]");
|
||||
if client_type == ClientType::DesktopMusic {
|
||||
assert!(player_data.details.description.is_none());
|
||||
} else {
|
||||
|
@ -217,7 +217,7 @@ async fn check_video_stream(s: impl YtStream) {
|
|||
#[tokio::test]
|
||||
async fn get_player(
|
||||
#[case] id: &str,
|
||||
#[case] title: &str,
|
||||
#[case] name: &str,
|
||||
#[case] description: &str,
|
||||
#[case] length: u32,
|
||||
#[case] channel_id: &str,
|
||||
|
@ -231,7 +231,7 @@ async fn get_player(
|
|||
let details = player_data.details;
|
||||
|
||||
assert_eq!(details.id, id);
|
||||
assert_eq!(details.title, title);
|
||||
assert_eq!(details.name, name);
|
||||
let desc = details.description.unwrap();
|
||||
assert!(desc.contains(description), "description: {}", desc);
|
||||
assert_eq!(details.length, length);
|
||||
|
@ -435,7 +435,7 @@ async fn get_video_details() {
|
|||
// dbg!(&details);
|
||||
|
||||
assert_eq!(details.id, "ZeerrnuLi5E");
|
||||
assert_eq!(details.title, "aespa 에스파 'Black Mamba' MV");
|
||||
assert_eq!(details.name, "aespa 에스파 'Black Mamba' MV");
|
||||
let desc = details.description.to_plaintext();
|
||||
assert!(
|
||||
desc.contains("Listen and download aespa's debut single \"Black Mamba\""),
|
||||
|
@ -477,7 +477,7 @@ async fn get_video_details_music() {
|
|||
// dbg!(&details);
|
||||
|
||||
assert_eq!(details.id, "XuM2onMGvTI");
|
||||
assert_eq!(details.title, "Gäa");
|
||||
assert_eq!(details.name, "Gäa");
|
||||
let desc = details.description.to_plaintext();
|
||||
assert!(desc.contains("Gäa · Oonagh"), "bad description: {}", desc);
|
||||
|
||||
|
@ -520,7 +520,7 @@ async fn get_video_details_ccommons() {
|
|||
|
||||
assert_eq!(details.id, "0rb9CfOvojk");
|
||||
assert_eq!(
|
||||
details.title,
|
||||
details.name,
|
||||
"BahnMining - Pünktlichkeit ist eine Zier (David Kriesel)"
|
||||
);
|
||||
let desc = details.description.to_plaintext();
|
||||
|
@ -564,7 +564,7 @@ async fn get_video_details_chapters() {
|
|||
// dbg!(&details);
|
||||
|
||||
assert_eq!(details.id, "nFDBxBUfE74");
|
||||
assert_eq!(details.title, "The Prepper PC");
|
||||
assert_eq!(details.name, "The Prepper PC");
|
||||
let desc = details.description.to_plaintext();
|
||||
assert!(
|
||||
desc.contains("These days, you can game almost anywhere on the planet, anytime. But what if that planet was in the middle of an apocalypse"),
|
||||
|
@ -600,72 +600,72 @@ async fn get_video_details_chapters() {
|
|||
}, @r###"
|
||||
[
|
||||
Chapter(
|
||||
title: "Intro",
|
||||
name: "Intro",
|
||||
position: 0,
|
||||
thumbnail: "[ok]",
|
||||
),
|
||||
Chapter(
|
||||
title: "The PC Built for Super Efficiency",
|
||||
name: "The PC Built for Super Efficiency",
|
||||
position: 42,
|
||||
thumbnail: "[ok]",
|
||||
),
|
||||
Chapter(
|
||||
title: "Our BURIAL ENCLOSURE?!",
|
||||
name: "Our BURIAL ENCLOSURE?!",
|
||||
position: 161,
|
||||
thumbnail: "[ok]",
|
||||
),
|
||||
Chapter(
|
||||
title: "Our Power Solution (Thanks Jackery!)",
|
||||
name: "Our Power Solution (Thanks Jackery!)",
|
||||
position: 211,
|
||||
thumbnail: "[ok]",
|
||||
),
|
||||
Chapter(
|
||||
title: "Diggin\' Holes",
|
||||
name: "Diggin\' Holes",
|
||||
position: 287,
|
||||
thumbnail: "[ok]",
|
||||
),
|
||||
Chapter(
|
||||
title: "Colonoscopy?",
|
||||
name: "Colonoscopy?",
|
||||
position: 330,
|
||||
thumbnail: "[ok]",
|
||||
),
|
||||
Chapter(
|
||||
title: "Diggin\' like a man",
|
||||
name: "Diggin\' like a man",
|
||||
position: 424,
|
||||
thumbnail: "[ok]",
|
||||
),
|
||||
Chapter(
|
||||
title: "The world\'s worst woodsman",
|
||||
name: "The world\'s worst woodsman",
|
||||
position: 509,
|
||||
thumbnail: "[ok]",
|
||||
),
|
||||
Chapter(
|
||||
title: "Backyard cable management",
|
||||
name: "Backyard cable management",
|
||||
position: 543,
|
||||
thumbnail: "[ok]",
|
||||
),
|
||||
Chapter(
|
||||
title: "Time to bury this boy",
|
||||
name: "Time to bury this boy",
|
||||
position: 602,
|
||||
thumbnail: "[ok]",
|
||||
),
|
||||
Chapter(
|
||||
title: "Solar Power Generation",
|
||||
name: "Solar Power Generation",
|
||||
position: 646,
|
||||
thumbnail: "[ok]",
|
||||
),
|
||||
Chapter(
|
||||
title: "Issues",
|
||||
name: "Issues",
|
||||
position: 697,
|
||||
thumbnail: "[ok]",
|
||||
),
|
||||
Chapter(
|
||||
title: "First Play Test",
|
||||
name: "First Play Test",
|
||||
position: 728,
|
||||
thumbnail: "[ok]",
|
||||
),
|
||||
Chapter(
|
||||
title: "Conclusion",
|
||||
name: "Conclusion",
|
||||
position: 800,
|
||||
thumbnail: "[ok]",
|
||||
),
|
||||
|
@ -690,7 +690,7 @@ async fn get_video_details_live() {
|
|||
|
||||
assert_eq!(details.id, "86YLFOog4GM");
|
||||
assert_eq!(
|
||||
details.title,
|
||||
details.name,
|
||||
"🌎 Nasa Live Stream - Earth From Space : Live Views from the ISS"
|
||||
);
|
||||
let desc = details.description.to_plaintext();
|
||||
|
@ -737,7 +737,7 @@ async fn get_video_details_agegate() {
|
|||
|
||||
assert_eq!(details.id, "HRKu0cvrr_o");
|
||||
assert_eq!(
|
||||
details.title,
|
||||
details.name,
|
||||
"AlphaOmegaSin Fanboy Logic: Likes/Dislikes Disabled = Point Invalid Lol wtf?"
|
||||
);
|
||||
insta::assert_ron_snapshot!(details.description, @"RichText([])");
|
||||
|
@ -1378,6 +1378,9 @@ async fn music_playlist_not_found() {
|
|||
#[case::audiobook("audiobook", "MPREb_gaoNzsQHedo")]
|
||||
#[case::show("show", "MPREb_cwzk8EUwypZ")]
|
||||
#[case::unavailable("unavailable", "MPREb_AzuWg8qAVVl")]
|
||||
#[case::no_year("no_year", "MPREb_F3Af9UZZVxX")]
|
||||
#[case::version_no_artist("version_no_artist", "MPREb_h8ltx5oKvyY")]
|
||||
#[case::no_artist("no_artist", "MPREb_bqWA6mAZFWS")]
|
||||
#[tokio::test]
|
||||
async fn music_album(#[case] name: &str, #[case] id: &str) {
|
||||
let rp = RustyPipe::builder().strict().build();
|
||||
|
@ -1412,7 +1415,7 @@ async fn music_album_not_found() {
|
|||
#[rstest]
|
||||
#[case::basic_all("basic_all", "UC7cl4MmM6ZZ2TcFyMk_b4pg", true, 15, 2)]
|
||||
#[case::basic("basic", "UC7cl4MmM6ZZ2TcFyMk_b4pg", false, 15, 2)]
|
||||
#[case::no_more_albums("no_more_albums", "UC_vmjW5e1xEHhYjY2a0kK1A", true, 12, 0)]
|
||||
#[case::no_more_albums("no_more_albums", "UCOR4_bSVIXPsGa4BbCSt60Q", true, 15, 0)]
|
||||
#[case::only_singles("only_singles", "UCfwCE5VhPMGxNPFxtVv7lRw", false, 13, 0)]
|
||||
#[case::no_artist("no_artist", "UCh8gHdtzO2tXd593_bjErWg", false, 0, 2)]
|
||||
#[tokio::test]
|
||||
|
@ -1516,7 +1519,7 @@ async fn music_search(#[case] typo: bool) {
|
|||
|
||||
let track = &res.tracks.iter().find(|a| a.id == "ZeerrnuLi5E").unwrap();
|
||||
|
||||
assert_eq!(track.title, "Black Mamba");
|
||||
assert_eq!(track.name, "Black Mamba");
|
||||
assert_eq!(track.duration.unwrap(), 230);
|
||||
assert!(!track.cover.is_empty(), "got no cover");
|
||||
|
||||
|
@ -1545,7 +1548,7 @@ async fn music_search_tracks() {
|
|||
.find(|a| a.id == "BL-aIpCLWnU")
|
||||
.unwrap();
|
||||
|
||||
assert_eq!(track.title, "Black Mamba");
|
||||
assert_eq!(track.name, "Black Mamba");
|
||||
assert!(!track.cover.is_empty(), "got no cover");
|
||||
assert!(!track.is_video);
|
||||
assert_eq!(track.track_nr, None);
|
||||
|
@ -1579,7 +1582,7 @@ async fn music_search_videos() {
|
|||
.find(|a| a.id == "ZeerrnuLi5E")
|
||||
.unwrap();
|
||||
|
||||
assert_eq!(track.title, "Black Mamba");
|
||||
assert_eq!(track.name, "Black Mamba");
|
||||
assert!(!track.cover.is_empty(), "got no cover");
|
||||
assert!(track.is_video);
|
||||
assert_eq!(track.track_nr, None);
|
||||
|
@ -1618,7 +1621,7 @@ async fn music_search_episode() {
|
|||
.unwrap();
|
||||
|
||||
assert_eq!(
|
||||
track.title,
|
||||
track.name,
|
||||
"Blond - Da muss man dabei gewesen sein: Das Hörspiel - Fall #1"
|
||||
);
|
||||
assert!(!track.cover.is_empty(), "got no cover");
|
||||
|
@ -1879,7 +1882,7 @@ async fn music_related(#[case] id: &str, #[case] full: bool) {
|
|||
|
||||
for track in related.tracks {
|
||||
assert_video_id(&track.id);
|
||||
assert!(!track.title.is_empty());
|
||||
assert!(!track.name.is_empty());
|
||||
assert!(!track.cover.is_empty(), "got no cover");
|
||||
|
||||
if let Some(artist_id) = track.artist_id {
|
||||
|
@ -1912,9 +1915,9 @@ async fn music_related(#[case] id: &str, #[case] full: bool) {
|
|||
assert_gte(n_tracks, 20, "tracks");
|
||||
assert_gte(n_tracks_ytm, 10, "tracks_ytm");
|
||||
|
||||
assert_gte(track_artists, n_tracks - 3, "track_artists");
|
||||
assert_gte(track_artist_ids, n_tracks - 3, "track_artists");
|
||||
assert_gte(track_albums, n_tracks_ytm - 3, "track_artists");
|
||||
assert_gte(track_artists, n_tracks - 4, "track_artists");
|
||||
assert_gte(track_artist_ids, n_tracks - 4, "track_artists");
|
||||
assert_gte(track_albums, n_tracks_ytm - 4, "track_artists");
|
||||
|
||||
if full {
|
||||
assert_gte(related.albums.len(), 10, "albums");
|
||||
|
@ -2086,7 +2089,7 @@ async fn music_new_videos() {
|
|||
|
||||
for video in videos {
|
||||
assert_video_id(&video.id);
|
||||
assert!(!video.title.is_empty());
|
||||
assert!(!video.name.is_empty());
|
||||
assert!(!video.cover.is_empty(), "got no cover");
|
||||
assert_gte(video.view_count.unwrap(), 1000, "views");
|
||||
assert!(video.is_video);
|
||||
|
|
Loading…
Add table
Reference in a new issue