diff options
| author | Christophe Besson <cbesson@gmail.com> | 2026-08-11 16:47:01 +0200 |
|---|---|---|
| committer | Christophe Besson <cbesson@gmail.com> | 2026-08-11 16:47:01 +0200 |
| commit | e608b95bf1fe225915eaeafca2a933f687844733 (patch) | |
| tree | 255b28a2d667af0729bb7829d6307324c0119fce /packages/meshbay-hub/src/meshbay_hub/static/i18n.js | |
| parent | fc509ae281c8cd0aa69870f6123a11e3519fb390 (diff) | |
| download | meshbay-e608b95bf1fe225915eaeafca2a933f687844733.tar.gz | |
feat: Phase 10c — MSE video streaming (real-time playback)
Replace download-then-play VideoPlayer with MSE (MediaSource Extensions)
streaming. Node remuxes to fMP4 via ffmpeg, probes codecs with ffprobe,
and sends encrypted segments over DataChannel. Browser decrypts and
appends to SourceBuffer — playback starts within seconds.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Diffstat (limited to 'packages/meshbay-hub/src/meshbay_hub/static/i18n.js')
| -rw-r--r-- | packages/meshbay-hub/src/meshbay_hub/static/i18n.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/meshbay-hub/src/meshbay_hub/static/i18n.js b/packages/meshbay-hub/src/meshbay_hub/static/i18n.js index 8ea4600..2a91407 100644 --- a/packages/meshbay-hub/src/meshbay_hub/static/i18n.js +++ b/packages/meshbay-hub/src/meshbay_hub/static/i18n.js @@ -108,8 +108,10 @@ const en = { // Video player 'video.loading': 'Loading {name}...', + 'video.buffering': 'Buffering...', 'video.close': 'Close (Esc)', 'video.err_transport': 'Transport not connected', + 'video.err_mse': 'Codec not supported for streaming: {codec}', // Settings 'settings.title': 'Settings', |