ytdwn 1.1.1 → 1.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2 -2
- package/dist/src/config.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -7,7 +7,7 @@ import { program } from "commander";
|
|
|
7
7
|
import { join } from "path";
|
|
8
8
|
var APP_NAME = "ytdwn";
|
|
9
9
|
var APP_TAGLINE = "YouTube to MP3/MP4 • Fast & Simple";
|
|
10
|
-
var APP_VERSION = "1.1.
|
|
10
|
+
var APP_VERSION = "1.1.2";
|
|
11
11
|
var DEFAULT_AUDIO_FORMAT = "mp3";
|
|
12
12
|
var DEFAULT_AUDIO_QUALITY = "0";
|
|
13
13
|
var CONCURRENT_FRAGMENTS = "8";
|
|
@@ -432,7 +432,7 @@ function buildArgs(url, options, downloadDir) {
|
|
|
432
432
|
];
|
|
433
433
|
const formatArgs = isVideo ? [
|
|
434
434
|
"-f",
|
|
435
|
-
|
|
435
|
+
"bestvideo+bestaudio/best",
|
|
436
436
|
"--merge-output-format",
|
|
437
437
|
format
|
|
438
438
|
] : [
|
package/dist/src/config.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare const APP_NAME = "ytdwn";
|
|
2
2
|
export declare const APP_TAGLINE = "YouTube to MP3/MP4 \u2022 Fast & Simple";
|
|
3
|
-
export declare const APP_VERSION = "1.1.
|
|
3
|
+
export declare const APP_VERSION = "1.1.2";
|
|
4
4
|
export declare const DEFAULT_AUDIO_FORMAT = "mp3";
|
|
5
5
|
export declare const DEFAULT_AUDIO_QUALITY = "0";
|
|
6
6
|
export declare const DEFAULT_VIDEO_FORMAT = "mp4";
|