From cb0502944289fd6e4489a7ed50f03640038f77eb Mon Sep 17 00:00:00 2001 From: zefie Date: Tue, 21 Apr 2026 11:15:38 -0400 Subject: [PATCH] add header comment to WTVPNM.js --- zefie_wtvp_minisrv/includes/classes/WTVPNM.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/zefie_wtvp_minisrv/includes/classes/WTVPNM.js b/zefie_wtvp_minisrv/includes/classes/WTVPNM.js index d77fc918..0b1013c4 100644 --- a/zefie_wtvp_minisrv/includes/classes/WTVPNM.js +++ b/zefie_wtvp_minisrv/includes/classes/WTVPNM.js @@ -1,3 +1,9 @@ +// Pure JS implementation of old Progressive Networks PNM streaming protocol used by WebTV and RealPlayer 8. +// This server only supports UDP streams, so mplayer (and others that are TCP only) will not work +// It does support seeking and pausing via the TCP control channel, but does not support bitrate switching or any of the +// other advanced features of the RealServer protocol. It should be compatible with WebTV 2.5 and RP8 clients, but has only been tested with RP8. +// It also has only been tested with 20.7kbps Mono G2 files. It is also not compatible with live streams at this time. + const net = require('net'); const fs = require('fs'); const path = require('path');