fix(webcams): update space webcam feeds and add 2 new streams (#1139)

Update ISS Earth View and NASA TV video IDs, add SpaceX and Space Walk
streams to fill out the space category to 4 feeds.
This commit is contained in:
Elie Habib
2026-03-06 23:50:11 +04:00
committed by GitHub
parent 3bfb167226
commit 21bf298550

View File

@@ -51,8 +51,10 @@ const WEBCAM_FEEDS: WebcamFeed[] = [
{ id: 'seoul', city: 'Seoul', country: 'South Korea', region: 'asia', channelHandle: '@UNvillage_live', fallbackVideoId: '-JhoMGoAfFc' },
{ id: 'sydney', city: 'Sydney', country: 'Australia', region: 'asia', channelHandle: '@WebcamSydney', fallbackVideoId: '7pcL-0Wo77U' },
// Space
{ id: 'iss-earth', city: 'ISS Earth View', country: 'Space', region: 'space', channelHandle: '@NASA', fallbackVideoId: 'P9C25Un7xaM' },
{ id: 'nasa-live', city: 'NASA TV', country: 'Space', region: 'space', channelHandle: '@NASA', fallbackVideoId: '21X5lGlDOfg' },
{ id: 'iss-earth', city: 'ISS Earth View', country: 'Space', region: 'space', channelHandle: '@NASA', fallbackVideoId: 'vytmBNhc9ig' },
{ id: 'nasa-live', city: 'NASA TV', country: 'Space', region: 'space', channelHandle: '@NASA', fallbackVideoId: 'zPH5KtjJFaQ' },
{ id: 'space-x', city: 'SpaceX', country: 'Space', region: 'space', channelHandle: '@SpaceX', fallbackVideoId: 'fO9e9jnhYK8' },
{ id: 'space-walk', city: 'Space Walk', country: 'Space', region: 'space', channelHandle: '@NASA', fallbackVideoId: '0FBiyFpV__g' },
];
const MAX_GRID_CELLS = 4;