Skip to content

Commit c5ac229

Browse files
committed
some edits after of #33
1 parent e18cdc1 commit c5ac229

File tree

7 files changed

+78
-46
lines changed

7 files changed

+78
-46
lines changed

README-EN.md

+35-21
Original file line numberDiff line numberDiff line change
@@ -5,58 +5,72 @@
55
A small script that allows you to download an audio translation from Yandex via the terminal.
66

77
## 📖 Using
8+
89
### Usage examples:
9-
- `vot-cli [options] [args] <link> [link2] [link3] ...` — general example
10-
- `vot-cli <link>` — get the audio translation from the link
11-
- `vot-cli --help` — show help by commands
12-
- `vot-cli --version` — show script version
13-
- `vot-cli --output=<path> <link>` — get the audio translation from the link and save it to the specified path
14-
- `vot-cli --output=<path> --reslang=en <link>` — get the audio translation into English and save it in the specified path
15-
- `vot-cli --subs --output=<path> --lang=en <link>` — get English subtitles for the video and save them in the specified path
16-
- `vot-cli --output="." "https://www.youtube.com/watch?v=X98VPQCE_WI" "https://www.youtube.com/watch?v=djr8j-4fS3A&t=900s"` - example with real data
10+
11+
- `vot-cli [options] [args] <link> [link2] [link3] ...` — general example
12+
- `vot-cli <link>` — get the audio translation from the link
13+
- `vot-cli --help` — show help by commands
14+
- `vot-cli --version` — show script version
15+
- `vot-cli --output=<path> <link>` — get the audio translation from the link and save it to the specified path
16+
- `vot-cli --output=<path> --reslang=en <link>` — get the audio translation into English and save it in the specified path
17+
- `vot-cli --subs --output=<path> --lang=en <link>` — get English subtitles for the video and save them in the specified path
18+
- `vot-cli --output="." "https://www.youtube.com/watch?v=X98VPQCE_WI" "https://www.youtube.com/watch?v=djr8j-4fS3A&t=900s"` - example with real data
1719

1820
### Arguments:
19-
- `--output` — set the path to save the audio translation file
20-
- `--output-file` — set the file name to download (requires specifying a dir to download in "--output" argument)
21-
- `--lang` — set the source video language (look [wiki](https://github.com/FOSWLY/vot-cli/wiki/%5BEN%5D-Supported-langs), to find out which languages are supported)
22-
- `--reslang` — set the language of the received audio file (look [wiki](https://github.com/FOSWLY/vot-cli/wiki/%5BEN%5D-Supported-langs), to find out which languages are supported)
23-
- `--proxy` — set HTTP or HTTPS proxy in the format `[<PROTOCOL>://]<USERNAME>:<PASSWORD>@<HOST>[:<port>]`
21+
22+
- `--output` — set the path to save the audio translation file
23+
- `--output-file` — set the file name to download (requires specifying a dir to download in "--output" argument)
24+
- `--lang` — set the source video language (look [wiki](https://github.com/FOSWLY/vot-cli/wiki/%5BEN%5D-Supported-langs), to find out which languages are supported)
25+
- `--reslang` — set the language of the received audio file (look [wiki](https://github.com/FOSWLY/vot-cli/wiki/%5BEN%5D-Supported-langs), to find out which languages are supported)
26+
- `--proxy` — set HTTP or HTTPS proxy in the format `[<PROTOCOL>://]<USERNAME>:<PASSWORD>@<HOST>[:<port>]`
2427

2528
### Options:
26-
- `-h`, `--help` — Show help
27-
- `-v`, `--version` — Show script version
28-
- `--subs`, `--subtitles` — Get video subtitles instead of audio (the subtitle language for saving is taken from `--reslang`)
29+
30+
- `-h`, `--help` — Show help
31+
- `-v`, `--version` — Show script version
32+
- `--subs`, `--subtitles` — Get video subtitles instead of audio (the subtitle language for saving is taken from `--reslang`)
33+
- `--subs-srt`, `--subtitles-srt` — Get video subtitles in `.srt` format instead of audio
2934

3035
## 💻 Installation
36+
3137
1. Install NodeJS 18+
3238
2. Install vot-cli globally:
39+
3340
```bash
3441
npm install -g vot-cli
3542
```
3643

3744
## ⚙️ Installation for development
45+
3846
1. Install NodeJS 18+
3947
2. Download and unpack the archive from vot-cli
4048
3. Install dependencies:
49+
4150
```bash
4251
npm i
4352
```
53+
4454
4. After successful installation of the modules, run the command
55+
4556
```bash
4657
npm link
4758
```
59+
4860
5. That's it, now you can use vot-cli in your terminal
4961

5062
## 📁 Useful links
63+
5164
1. Browser version: [Link](https://github.com/ilyhalight/voice-over-translation)
5265
2. Script for downloading videos with built-in translation (add-on over vot-cli):
53-
| OS | Shell | Author | Link |
54-
| --- | --- | --- | --- |
55-
| Windows | PowerShell | Dragoy | [Link](https://github.com/FOSWLY/vot-cli/tree/main/scripts)
56-
| Unix | Fish | Musickiller | [Link](https://gitlab.com/musickiller/fishy-voice-over/)
57-
| Linux | Bash | s-n-alexeyev | [Ссылка](https://github.com/s-n-alexeyev/yvt)
66+
| OS | Shell | Author | Link |
67+
| --- | --- | --- | --- |
68+
| Windows | PowerShell | Dragoy | [Link](https://github.com/FOSWLY/vot-cli/tree/main/scripts)
69+
| Unix | Fish | Musickiller | [Link](https://gitlab.com/musickiller/fishy-voice-over/)
70+
| Linux | Bash | s-n-alexeyev | [Ссылка](https://github.com/s-n-alexeyev/yvt)
5871

5972
## ❗ Note
73+
6074
1. Wrap links in quotation marks in order to avoid errors
6175
2. To write to the system partition (for example, to "Disk C" in Windows), administrator rights are required
6276

README.md

+35-21
Original file line numberDiff line numberDiff line change
@@ -5,58 +5,72 @@ English version: [Link](https://github.com/FOSWLY/vot-cli/blob/main/README-EN.md
55
Небольшой скрипт, позволяющий скачать перевод аудио перевод от Яндекса через терминал.
66

77
## 📖 Использование
8+
89
### Примеры использования:
9-
- `vot-cli [options] [args] <link> [link2] [link3] ...` — общий пример
10-
- `vot-cli <link>` — получить перевод аудио по ссылке
11-
- `vot-cli --help` — показать помощь по командам
12-
- `vot-cli --version` — показать версию скрипта
13-
- `vot-cli --output=<path> <link>` — получить перевод аудио по ссылке и сохранить его по указаному пути
14-
- `vot-cli --output=<path> --reslang=en <link>` — получить перевод аудио на английский и сохранить его по указаному пути
15-
- `vot-cli --subs --output=<path> --lang=en <link>` — получить английские субтитры к видео и сохранить их по указанному пути
16-
- `vot-cli --output="." "https://www.youtube.com/watch?v=X98VPQCE_WI" "https://www.youtube.com/watch?v=djr8j-4fS3A&t=900s"` - пример с реальными данными
10+
11+
- `vot-cli [options] [args] <link> [link2] [link3] ...` — общий пример
12+
- `vot-cli <link>` — получить перевод аудио по ссылке
13+
- `vot-cli --help` — показать помощь по командам
14+
- `vot-cli --version` — показать версию скрипта
15+
- `vot-cli --output=<path> <link>` — получить перевод аудио по ссылке и сохранить его по указаному пути
16+
- `vot-cli --output=<path> --reslang=en <link>` — получить перевод аудио на английский и сохранить его по указаному пути
17+
- `vot-cli --subs --output=<path> --lang=en <link>` — получить английские субтитры к видео и сохранить их по указанному пути
18+
- `vot-cli --output="." "https://www.youtube.com/watch?v=X98VPQCE_WI" "https://www.youtube.com/watch?v=djr8j-4fS3A&t=900s"` - пример с реальными данными
1719

1820
### Аргументы:
19-
- `--output` — установить путь сохранения аудио файла перевода
20-
- `--output-file` — установить имя файла для сохранения (требует указания пути сохранения аудио файла перевода в аргументе "--output")
21-
- `--lang` — установить язык исходного видео (см. [вики](https://github.com/FOSWLY/vot-cli/wiki/%5BRU%5D-Supported-langs), чтобы узнать какие языки поддерживаются)
22-
- `--reslang` — установить язык полученного аудио файла (см. [вики](https://github.com/FOSWLY/vot-cli/wiki/%5BRU%5D-Supported-langs), чтобы узнать какие языки поддерживаются)
23-
- `--proxy` — установить HTTP или HTTPS прокси в формате `[<PROTOCOL>://]<USERNAME>:<PASSWORD>@<HOST>[:<port>]`
21+
22+
- `--output` — установить путь сохранения аудио файла перевода
23+
- `--output-file` — установить имя файла для сохранения (требует указания пути сохранения аудио файла перевода в аргументе "--output")
24+
- `--lang` — установить язык исходного видео (см. [вики](https://github.com/FOSWLY/vot-cli/wiki/%5BRU%5D-Supported-langs), чтобы узнать какие языки поддерживаются)
25+
- `--reslang` — установить язык полученного аудио файла (см. [вики](https://github.com/FOSWLY/vot-cli/wiki/%5BRU%5D-Supported-langs), чтобы узнать какие языки поддерживаются)
26+
- `--proxy` — установить HTTP или HTTPS прокси в формате `[<PROTOCOL>://]<USERNAME>:<PASSWORD>@<HOST>[:<port>]`
2427

2528
### Опции:
26-
- `-h`, `--help` — показать помощь по использованию
27-
- `-v`, `--version` — показать версию скрипта
28-
- `--subs`, `--subtitles` — получить субтитры к видео заместо аудио (язык субтитров для сохранения берется из `--reslang`)
29+
30+
- `-h`, `--help` — показать помощь по использованию
31+
- `-v`, `--version` — показать версию скрипта
32+
- `--subs`, `--subtitles` — получить субтитры к видео вместо аудио (язык субтитров для сохранения берется из `--reslang`)
33+
- `--subs-srt`, `--subtitles-srt` — получить субтитры в формате `.srt` к видео вместо аудио
2934

3035
## 💻 Установка
36+
3137
1. Установите NodeJS 18+
3238
2. Установите vot-cli глобально:
39+
3340
```bash
3441
npm install -g vot-cli
3542
```
3643

3744
## ⚙️ Установка для разработки
45+
3846
1. Установите NodeJS 18+
3947
2. Скачайте и распакуйте архив с vot-cli
4048
3. Установите зависимости:
49+
4150
```bash
4251
npm i
4352
```
53+
4454
4. После успешной установки модулей выполнить команду
55+
4556
```bash
4657
npm link
4758
```
59+
4860
5. Готово, теперь, вы можете использовать vot-cli в вашем терминале
4961

5062
## 📁 Полезные ссылки
63+
5164
1. Версия для браузера: [Ссылка](https://github.com/ilyhalight/voice-over-translation)
5265
2. Скрипт для скачивания видео с встроенным переводом (надстройка над vot-cli):
53-
| OS | Оболочка | Автор | Ссылка |
54-
| --- | --- | --- | --- |
55-
| Windows | PowerShell | Dragoy | [Ссылка](https://github.com/FOSWLY/vot-cli/tree/main/scripts)
56-
| Unix | Fish | Musickiller | [Ссылка](https://gitlab.com/musickiller/fishy-voice-over/)
57-
| Linux | Bash | s-n-alexeyev | [Ссылка](https://github.com/s-n-alexeyev/yvt)
66+
| OS | Оболочка | Автор | Ссылка |
67+
| --- | --- | --- | --- |
68+
| Windows | PowerShell | Dragoy | [Ссылка](https://github.com/FOSWLY/vot-cli/tree/main/scripts)
69+
| Unix | Fish | Musickiller | [Ссылка](https://gitlab.com/musickiller/fishy-voice-over/)
70+
| Linux | Bash | s-n-alexeyev | [Ссылка](https://github.com/s-n-alexeyev/yvt)
5871

5972
## ❗ Примечание
73+
6074
1. Оборачивайте ссылки в кавычки, дабы избежать ошибок
6175
2. Для записи в системный раздел (например на "Диск C" в Windows) необходимы права администратора
6276

__tests__/utils/utils.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { jsonToSrt } from "../../src/utils/utils.js";
22

33
describe("utils", () => {
4-
it("conver YandexSubtitles json to srt", () => {
4+
it("convert YandexSubtitles json to srt", () => {
55
const jsonYS = [
66
{ text: "Привет", startMs: 2222.0, durationMs: 3610.0 },
77
{ text: "мир", startMs: 26050.0, durationMs: 970.0 },

bun.lockb

143 KB
Binary file not shown.

changelog.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 1.4.3
2+
3+
- Добавлена поддержка загрузки субтитров в `.srt` (#33)
4+
15
# 1.4.2
26

37
- Добавлена поддержка /live/ для YouTube (#32)

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vot-cli",
3-
"version": "1.4.2",
3+
"version": "1.4.3",
44
"description": "A small script that allows you to download an audio translation from Yandex via the terminal.",
55
"type": "module",
66
"main": "./src/index.js",

0 commit comments

Comments
 (0)