Socket
Book a DemoSign in
Socket

untube

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

untube - npm Package Compare versions

Comparing version
2.1.0
to
2.1.1
+1
-1
package.json
{
"name": "untube",
"version": "2.1.0",
"version": "2.1.1",
"description": "Lightweight YouTube video metadata and streaming URL extractor for Node.js. Features automatic signature decryption (n-parameter), proxy support, and cookie management. Ported from yt-dlp.",

@@ -5,0 +5,0 @@ "keywords": [

@@ -85,8 +85,8 @@ # untube

### `mode` (Streaming Behavior)
By default, `untube` uses **parallel** downloading to bypass YouTube bandwidth throttling.
By default, `untube` uses **parallel** downloading to maximize speed.
| Mode | Characteristics | Best for |
| :--- | :--- | :--- |
| `'parallel'` (Default) | Incredibly fast. Downloads chunks concurrently into a temp file and streams the result. Emits `progress` events. | Downloading files, massive scrapers. |
| `'sequential'` | Pure RAM streaming. Slower (throttled by YouTube). No temp files used. Start-up time is instant. | Real-time audio playback. |
| `'parallel'` (Default) | Incredibly fast. Downloads chunks concurrently into a temp file and streams the result. Emits `progress` events. | Downloading large files, maximum throughput. |
| `'sequential'` | Pure RAM streaming. Instant start-up. No temp files used. | Real-time audio playback, Discord bots. |

@@ -93,0 +93,0 @@ ```typescript