Video calling represents the closest digital approximation to in-person communication, making it essential for intergenerational connection. This chapter explores the technical implementation of video call systems optimized for senior users, including API design, accessibility features, and integration patterns.
For seniors separated from family by distance, video calls provide irreplaceable benefits. Research shows that seeing loved ones' faces, expressions, and body language significantly reduces feelings of isolation compared to voice-only calls. However, traditional video conferencing solutions often present technical barriers that prevent seniors from fully embracing this technology.
The WIA-SENIOR-010 standard defines a comprehensive video calling architecture that prioritizes simplicity, reliability, and accessibility while maintaining high-quality connections.
| Component | Function | Key Requirements | Accessibility Features |
|---|---|---|---|
| Signaling Server | Establishes connections between participants | Low latency, high availability, secure protocols | N/A - backend component |
| Media Server | Routes audio/video streams between users | Adaptive bitrate, codec selection, bandwidth optimization | Automatic quality adjustment for varying connections |
| Client SDK | Provides API for applications | Cross-platform, well-documented, simple integration | High-level abstractions hiding complexity |
| User Interface | Visual controls for participants | Large buttons, clear labels, intuitive layout | Voice commands, screen reader support, simplified mode |
| Recording System | Optional call recording for memory preservation | Privacy controls, consent management, secure storage | Automatic transcription, searchable archive |
WebRTC (Web Real-Time Communication) provides the foundation for modern video calling. However, standard WebRTC implementations require customization to meet the needs of intergenerational users.
// WIA-SENIOR-010 Video Call SDK
class IntergenerationalVideoCall {
private peerConnection: RTCPeerConnection;
private localStream: MediaStream;
private remoteStream: MediaStream;
private qualityMonitor: QualityMonitor;
private accessibilityManager: AccessibilityManager;
constructor(config: VideoCallConfig) {
this.qualityMonitor = new QualityMonitor();
this.accessibilityManager = new AccessibilityManager(config.userProfile);
// Configure with senior-friendly defaults
this.peerConnection = new RTCPeerConnection({
iceServers: config.iceServers,
iceCandidatePoolSize: 10, // More candidates for better connectivity
bundlePolicy: 'max-bundle', // Optimize for efficiency
});
this.setupEventHandlers();
}
// Simplified call initiation
async startCall(recipientId: string): Promise {
try {
// Get user media with accessibility enhancements
this.localStream = await this.getUserMediaWithEnhancements();
// Add tracks to peer connection
this.localStream.getTracks().forEach(track => {
this.peerConnection.addTrack(track, this.localStream);
});
// Create and send offer
const offer = await this.peerConnection.createOffer({
offerToReceiveAudio: true,
offerToReceiveVideo: true
});
await this.peerConnection.setLocalDescription(offer);
// Send via signaling server
await this.signalingServer.sendOffer(recipientId, offer);
// Provide audio feedback for visually impaired users
await this.accessibilityManager.announceCallStatus('connecting');
} catch (error) {
// Handle errors with user-friendly messages
await this.handleCallError(error);
}
}
// Enhanced media acquisition with fallbacks
private async getUserMediaWithEnhancements(): Promise {
const userProfile = await this.accessibilityManager.getUserProfile();
// Start with ideal constraints
let constraints: MediaStreamConstraints = {
video: {
width: { ideal: 1280 },
height: { ideal: 720 },
frameRate: { ideal: 30 },
facingMode: 'user'
},
audio: {
echoCancellation: true,
noiseSuppression: true,
autoGainControl: true
}
};
// Adjust for senior preferences
if (userProfile.preferLowBandwidth) {
constraints.video = {
width: { ideal: 640 },
height: { ideal: 480 },
frameRate: { ideal: 15 }
};
}
try {
return await navigator.mediaDevices.getUserMedia(constraints);
} catch (error) {
// Fallback to lower quality if ideal fails
return await this.getUserMediaFallback();
}
}
// Adaptive quality management
private async monitorAndAdaptQuality(): Promise {
setInterval(async () => {
const stats = await this.peerConnection.getStats();
const quality = this.qualityMonitor.analyzeStats(stats);
if (quality.packetLoss > 0.05) {
// High packet loss - reduce quality
await this.reduceVideoQuality();
await this.notifyQualityChange('Connection adjusted for stability');
} else if (quality.packetLoss < 0.01 && quality.bandwidth > 2000) {
// Good connection - can increase quality
await this.increaseVideoQuality();
}
// Provide quality feedback to user
await this.updateQualityIndicator(quality);
}, 3000); // Check every 3 seconds
}
// Accessibility features
async enableLiveTranscription(): Promise {
const transcriptionService = new SpeechRecognitionService();
// Transcribe remote audio
this.remoteStream.getAudioTracks().forEach(track => {
transcriptionService.transcribe(track, (text) => {
this.displayCaptions(text);
this.accessibilityManager.announceIfNeeded(text);
});
});
}
// Simplified screen sharing for tutorials
async shareScreen(): Promise {
try {
const screenStream = await navigator.mediaDevices.getDisplayMedia({
video: { cursor: 'always' }, // Show cursor for teaching
audio: false
});
// Replace video track
const videoTrack = screenStream.getVideoTracks()[0];
const sender = this.peerConnection.getSenders()
.find(s => s.track?.kind === 'video');
if (sender) {
await sender.replaceTrack(videoTrack);
await this.accessibilityManager.announceCallStatus('screen-sharing');
}
// Auto-stop on track end
videoTrack.addEventListener('ended', async () => {
await this.stopScreenShare();
});
} catch (error) {
await this.handleError('Screen sharing not available');
}
}
// Emergency assistance during call
async requestHelp(): Promise {
// Notify family member that user needs help
await this.signalingServer.sendEmergencySignal({
type: 'help-request',
callId: this.callId,
reason: 'user-requested-assistance'
});
// Show help overlay
await this.displayHelpOverlay();
}
}
Seniors often have slower or less reliable internet connections. The system must adapt gracefully to varying network conditions while maintaining usable quality.
| Network Quality | Bandwidth Available | Video Resolution | Frame Rate | Audio Bitrate |
|---|---|---|---|---|
| Excellent | > 5 Mbps | 1280x720 (HD) | 30 fps | 128 kbps |
| Good | 2-5 Mbps | 640x480 (SD) | 25 fps | 96 kbps |
| Fair | 1-2 Mbps | 480x360 | 20 fps | 64 kbps |
| Poor | 500 kbps - 1 Mbps | 320x240 | 15 fps | 48 kbps |
| Very Poor | < 500 kbps | Audio only + photo | N/A | 32 kbps |
The interface must be drastically simpler than traditional video conferencing applications, with an emphasis on large, clear controls and minimal cognitive load.
Video calling must be accessible to seniors with various disabilities, ensuring everyone can maintain face-to-face contact with family.
// Accessibility Manager for Video Calls
class VideoAccessibilityManager {
private profile: UserAccessibilityProfile;
// Real-time captioning for hearing impaired
async enableCaptioning(): Promise {
const recognition = new webkitSpeechRecognition();
recognition.continuous = true;
recognition.interimResults = true;
recognition.lang = this.profile.language || 'en-US';
recognition.onresult = (event) => {
let transcript = '';
for (let i = event.resultIndex; i < event.results.length; i++) {
if (event.results[i].isFinal) {
transcript += event.results[i][0].transcript + ' ';
}
}
// Display captions with large, readable text
this.displayCaption(transcript, {
fontSize: this.profile.captionSize || '24px',
backgroundColor: 'rgba(0, 0, 0, 0.8)',
color: '#ffffff',
position: 'bottom'
});
};
recognition.start();
}
// Voice commands for hands-free control
async enableVoiceCommands(): Promise {
const commands = {
'answer call': () => this.call.answer(),
'end call': () => this.call.hangup(),
'mute microphone': () => this.call.toggleMute(),
'turn off camera': () => this.call.toggleCamera(),
'help': () => this.showHelp(),
'louder': () => this.increaseVolume(),
'quieter': () => this.decreaseVolume()
};
const recognition = new VoiceCommandRecognition();
recognition.addCommands(commands);
recognition.start();
}
// Screen reader announcements
async announceCallEvent(event: CallEvent): Promise {
const messages = {
'incoming-call': `Incoming video call from ${event.caller.name}`,
'call-connected': `Call connected. You are now talking with ${event.peer.name}`,
'call-ended': `Call ended. Duration was ${event.duration}`,
'poor-connection': `Connection quality is poor. Adjusting video quality`,
'camera-off': `Your camera is now off`,
'muted': `Your microphone is muted`,
'unmuted': `Your microphone is active`
};
const message = messages[event.type];
if (message && this.profile.useScreenReader) {
await this.speak(message);
}
}
// High contrast mode for low vision
applyHighContrastMode(): void {
const styles = {
background: '#000000',
foreground: '#FFFF00',
buttons: {
answer: '#00FF00',
hangup: '#FF0000',
default: '#FFFFFF'
},
borders: '4px solid #FFFFFF',
fontSize: 'extra-large'
};
this.applyTheme(styles);
}
// Gesture controls for motor impairment
async enableGestureControl(): Promise {
const gestureRecognizer = new MediaPipeGestureRecognizer();
gestureRecognizer.on('thumbs-up', () => this.call.answer());
gestureRecognizer.on('thumbs-down', () => this.call.hangup());
gestureRecognizer.on('wave', () => this.call.toggleCamera());
gestureRecognizer.on('peace-sign', () => this.takeSnapshot());
await gestureRecognizer.start(this.call.localStream);
}
}
The complexity of initiating a video call must be reduced to a single action. The system should handle all technical details automatically.
// Simplified calling interface
class OneClickCaller {
// Pre-configured contacts with photos
async callFamilyMember(contactId: string): Promise {
// Show calling screen immediately
this.ui.showCallingScreen(contactId);
// Handle all setup automatically
await Promise.all([
this.checkDevicePermissions(),
this.testConnection(),
this.prepareMediaDevices(),
this.establishSignaling()
]);
// Initiate call
const call = await this.videoCallAPI.call(contactId, {
autoAnswer: false, // Recipient must explicitly answer
recordable: this.user.preferences.allowRecording,
quality: 'auto', // Automatic quality adaptation
accessibility: this.user.accessibilityProfile
});
// Provide audio and visual feedback
await this.playRingTone();
await this.announceStatus('Calling...');
// Wait for answer or timeout
call.on('answered', async () => {
await this.announceStatus('Connected');
await this.ui.showCallScreen(call);
});
call.on('rejected', async () => {
await this.announceStatus('Call declined');
await this.ui.showCallEndScreen('declined');
});
call.on('timeout', async () => {
await this.announceStatus('No answer');
await this.ui.showCallEndScreen('timeout');
});
}
// Emergency video call button
async emergencyCall(): Promise {
// Call all emergency contacts simultaneously
const emergencyContacts = await this.getEmergencyContacts();
for (const contact of emergencyContacts) {
await this.callFamilyMember(contact.id);
}
// Also alert emergency services if configured
if (this.settings.alertEmergencyServices) {
await this.notifyEmergencyServices();
}
}
}
The interaction doesn't end when the call disconnects. Post-call features enhance the experience and preserve memories.
With explicit consent from all participants, calls can be recorded and archived as precious family memories:
The video calling API must integrate seamlessly with other intergenerational technology components and external systems.
| Integration Point | Purpose | Implementation |
|---|---|---|
| Calendar Systems | Schedule regular family video calls | Automatic reminders, one-click join from calendar event |
| Health Monitoring | Virtual health check-ins with medical providers | Secure HIPAA-compliant connections, vital sign overlay |
| Smart Home Devices | Answer calls via smart displays, speakers | Multi-device synchronization, device transfer during calls |
| Photo Albums | Share and discuss photos during calls | Screen annotation, simultaneous viewing, collaborative albums |
| Emergency Systems | Video verification of emergencies | Priority routing, location sharing, recording for documentation |
Korea operates a comprehensive standards governance system through inter-ministerial cooperation. National Standards Council (under Prime Minister's Office, per Framework Act on National Standards Article 5) coordinates KATS (Korean Agency for Technology and Standards), MFDS (Ministry of Food and Drug Safety), MOTIE (Ministry of Trade, Industry and Energy), MSIT (Ministry of Science and ICT), MOIS (Ministry of the Interior and Safety), MOE (Ministry of Environment), MOHW (Ministry of Health and Welfare), MND (Ministry of National Defense), MCST (Ministry of Culture, Sports and Tourism), MOFA (Ministry of Foreign Affairs), MOJ (Ministry of Justice), and FSC (Financial Services Commission). Accreditation and Testing: KOLAS (Korea Laboratory Accreditation Scheme) accredits 800+ testing laboratories. KAS (Korea Accreditation System) accredits 50+ certification bodies. KTC (Korea Testing Certification), KTR (Korea Testing & Research Institute), KTL (Korea Testing Laboratory), and KCL (Korea Conformity Laboratories) provide conformance testing. Telecom and Cyber: KCC (Korea Communications Commission), KCA (Korea Communications Agency), TTA (Telecommunications Technology Association), IITP (Institute for Information & Communications Technology Planning & Evaluation), NIPA (National IT Industry Promotion Agency), KISA (Korea Internet & Security Agency), KCMVP (Korea Cryptographic Module Validation Program), NIS (National Intelligence Service), NSR (National Security Research Institute), and NCSC (National Cyber Security Center). National R&D Centers: KIST, ETRI, KAIST, Seoul National University, Yonsei University, Korea University, POSTECH, UNIST, GIST, DGIST, KISTI, KIER, KIMM, KRICT, KFRI, KRIBB. International Standards Cooperation: ISO TC/SC Korean secretariats, IEC TC/SC Korean secretariats, ITU-T Study Group Korean chairs, 3GPP RAN/SA Korean chairs, IEEE 802 Korean chairs, W3C Korea office, OASIS Korea office, IETF Korea cooperation, OECD CSTP, UN ESCAP, APEC SCSC Korean cooperation. Korean Industrial Standards (KS) Catalog: KS X (Information) 25,000+, KS A (Basic) 15,000+, KS B (Machinery) 25,000+, KS C (Electrical) 18,000+, KS D (Metallurgy) 12,000+, KS E (Mining) 5,000+, KS F (Construction) 18,000+, KS H (Food) 8,000+, KS I (Environment) 5,000+, KS J (Biology) 3,000+, KS K (Textile) 15,000+, KS L (Ceramics) 7,000+, KS M (Chemistry) 12,000+, KS P (Medical) 5,000+, KS Q (Quality Mgmt) 4,000+, KS R (Transport) 12,000+, KS S (Service) 3,000+, KS T (Packaging) 4,000+, KS V (Shipbuilding) 5,000+, KS W (Aerospace) 3,000+ — totaling 220,000+ Korean Industrial Standards. Key Acts: Personal Information Protection Act (Act 19234, effective Sept 15, 2024), Electronic Government Act, Electronic Signature Act, Act on Promotion of Information and Communications Network Utilization and Information Protection, Information and Communications Infrastructure Protection Act, Data Industry Act, Public Data Act, AI Framework Act (Act 20212, effective July 2026), Industrial Technology Innovation Promotion Act, Framework Act on Science and Technology — 70+ Korean standardization-related laws.
Korea operates digital transformation through a comprehensive governance system. Digital Government: Digital Platform Government Committee (established September 2022, under the President)·Ministry of the Interior and Safety Digital Government Bureau·e-Government Support Center·Gov.kr·National Citizen Service·KDIS (Korea Digital Information Society)·NIA (National Information Society Agency)·MOIS (Ministry of the Interior and Safety). K-DNS Infrastructure: Korea Internet & Security Agency (KISA) Korea Internet Center·KISA DNS Root Server·KRNIC (Korea Network Information Center)·BGP Korea·National Cyber Security Center (NCSC)·KCC (Korea Communications Commission)·MSIT (Ministry of Science and ICT)·NIA·NIPA. Korean Cloud Infrastructure: KT Cloud·NAVER Cloud (NCloud)·Samsung SDS Cloud·LG U+ Cloud·NHN Cloud·Kakao Enterprise Cloud·SK Telecom Cloud·KISA Cloud Security Assurance Program (CSAP)·KCMVP-validated cloud·ISMS-P (Information Security & Personal Information Management System). Korean Security Certifications: KISA ISMS-P certification·KCMVP (Korean Cryptographic Module Validation Program)·NIS (National Intelligence Service) "National Cryptographic Technology Operation Standards"·NCSC "National Cyber Security Strategy 2024-2028"·CC (Common Criteria) Korean evaluation bodies·EAL4·EAL5·KS X ISO/IEC 15408·19790·24759 Korean Profile. Korean Data Standards: NIA AI Hub·National Data Standardization Committee·Statistics Korea (KOSTAT)·MyData 4 Designated Combination Specialists (Samsung SDS, KICI, KOSTAT, KFTC)·National Institute of Korean Language·National Law Information Center·National Spatial Information Platform·National Spatial Data Center·Korean Spatial Information Standards. Finance and Fintech Standards: FSC (Financial Services Commission)·FSS (Financial Supervisory Service)·FIU (Financial Intelligence Unit)·BOK (Bank of Korea)·FSEC (Financial Security Institute)·KFTC (Korea Financial Telecommunications)·KSD (Korea Securities Depository)·KRX (Korea Exchange) 8-agency cooperation. 5G/6G Communications Infrastructure: 5G subscribers 35 million (2024)·5G base stations 350,000·6G commercialization target 2028·5G dedicated networks 16 operators·6G Acceleration Council (MSIT, 2024). K-Content: KOCCA (Korea Creative Content Agency)·MCST (Ministry of Culture, Sports and Tourism)·KCA (Korea Communications Agency)·Korea Culture Information Service Agency·Korean Film Archive·Korea Publishing Industry Promotion Agency. Data 3 Acts (Personal Information Protection Act·Credit Information Act·Telecommunications Network Act, 2020 enforcement)·Data Industry Act (2021)·Public Data Act (2013)·AI Framework Act (2026)·Digital Platform Government Framework Act (2024 proposed) — Korea digital transformation core legislation.
Korea operates its industrial ecosystem and standardization system through the following core infrastructure. Korea Top 5 Groups: Samsung, Hyundai Motor, LG, SK, Lotte. Each group operates standardization committees and ISO/IEC TC Korean secretariats. Samsung Electronics (semiconductors, displays, home appliances, telecom)·Hyundai Motor (automobiles, mobility)·LG Electronics (home appliances, displays, OLED)·SK hynix (memory)·LG Energy Solution·Samsung SDI (batteries)·POSCO Future M (materials)·Hyundai Mobis (parts). Korean IT Big Tech: NAVER (search, cloud, AI HyperCLOVA)·Kakao (messenger, payment, mobility, banking)·Coupang (e-commerce, logistics)·Karrot Market·Toss·Woowa Brothers. Korea Telcos: SK Telecom·KT·LG U+. 5G·5G dedicated networks·B2B cloud·AI businesses operating. Korea Top 7 Research Universities: Seoul National University·KAIST·POSTECH·Yonsei University·Korea University·UNIST·DGIST·GIST. All serve as standardization R&D bases and ISO/IEC/IEEE Korean chairs. Korea Government-affiliated National Research Institutes (26): KIST, KAERI, KIMM, KIER, KFRI, KRICT, KRIBB, KARI, KASI, KIGAM, KICT, KISTI, KETI, ETRI, NIMS, KIMS, KISDI, KOTRA, STEPI, KOEN, KICCE, KIET, KIPF, KIHASA, KICJ, KLRI. Korea Industrial Complexes / Tech Valleys: Pangyo Techno Valley·Dongtan·Gwanggyo·Songdo IBD·Yeouido·Gangnam·Sihwa·Banwol·Gumi·Ulsan·Changwon·Geoje·Yeosu·Onsan·Cheongju·Iksan·Gwangyang·POSCO Gwangyang Steel Mill·Asan Bay·Seosan·Songdo·Incheon Airport·Sejong·Cheongna·Geomdan. Korea Trade and Finance Infrastructure: Korea International Trade Association (KITA)·Korea Trade-Investment Promotion Agency (KOTRA)·Export-Import Bank of Korea (KEXIM)·Bank of Korea·Kookmin Bank·Shinhan·Hana·Woori·NH Nonghyup·IBK Industrial Bank·SC First Bank·Citi Bank Korea·HSBC Korea·DBS Korea — 14 Korean major banks and foreign banks. Korea K-POP / K-Content: HYBE·SM·YG·JYP 4 major entertainment companies·CJ ENM·tvN·MBC·KBS·SBS·EBS·YTN·Yonhap News TV·JTBC Korean broadcasting·NETFLIX Korea·Disney Plus·TVING·Wavve·Watcha·Coupang Play. Korea Gaming Industry: Nexon·NCsoft·Krafton·Netmarble·Kakao Games·Pearl Abyss·Com2uS·Gamevil·NHN·Smilegate·Webzen. Korea Automotive / Battery: Hyundai Motor·Kia·Genesis·LG Energy Solution·Samsung SDI·SK On·POSCO Future M·EcoPro·L&F battery cathode material suppliers. Korea Semiconductor: Samsung Electronics (HBM3E·HBM4)·SK hynix (HBM3E 12-Hi)·DB HiTek·SK siltron·SK Enpulse·Dongjin Semichem·Seoul Semiconductor·Simmtech·Samsung Display·LG Display.