Compare commits
11 Commits
346eb697cf
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| b40ae34387 | |||
| 84231d705f | |||
| 2c8d9d1e9e | |||
| 41fe1a7370 | |||
| 55fb1f640a | |||
| 4293b6735a | |||
| 248fe15b62 | |||
| 81add91669 | |||
| b6c191290c | |||
| 5ab30eee4c | |||
| 187697eca6 |
43
README.md
43
README.md
@@ -28,20 +28,29 @@ brew install ffmpeg gpac
|
|||||||
Before running, make sure `FFmpeg` and `MP4Box` are installed (see Install).
|
Before running, make sure `FFmpeg` and `MP4Box` are installed (see Install).
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Run via npx (no install)
|
|
||||||
npx @gromlab/create-vod video.mp4
|
npx @gromlab/create-vod video.mp4
|
||||||
|
|
||||||
# Or install globally
|
|
||||||
npm install -g @gromlab/create-vod
|
|
||||||
create-vod video.mp4
|
|
||||||
```
|
```
|
||||||
|
|
||||||
**Output:** A folder `video/` in the current directory with segments under `{profile}-{codec}/`, DASH/HLS manifests in the root, poster, and thumbnail sprite/VTT (both DASH and HLS are always generated).
|
**Output:** In the current directory you'll get:
|
||||||
|
```
|
||||||
|
video/
|
||||||
|
├── manifest.mpd # DASH manifest
|
||||||
|
├── master.m3u8 # HLS master playlist
|
||||||
|
├── poster.jpg # Poster frame
|
||||||
|
├── thumbnails.{jpg,vtt} # Sprite + VTT cues
|
||||||
|
├── audio/ # Audio init + segments (AAC)
|
||||||
|
├── 1080p/ # H.264 1080p init + segments
|
||||||
|
├── 720p/ # H.264 720p
|
||||||
|
├── 480p/ # H.264 480p
|
||||||
|
├── 360p/ # H.264 360p
|
||||||
|
├── 1080p-av1/ # AV1 1080p (if av1 selected)
|
||||||
|
└── ... # Other profiles/codecs as {profile}-{codec}
|
||||||
|
```
|
||||||
|
|
||||||
## CLI Usage
|
## CLI Usage
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
create-vod <input-video> [output-dir] [-r resolutions] [-c codec] [-p poster-timecode] [-e encoder] [-d decoder]
|
create-vod <input-video> [output-dir] [-r resolutions] [-c codec] [-p poster-timecode] [-e encoder] [-d decoder] [-m]
|
||||||
```
|
```
|
||||||
|
|
||||||
### Main arguments
|
### Main arguments
|
||||||
@@ -60,33 +69,37 @@ create-vod <input-video> [output-dir] [-r resolutions] [-c codec] [-p poster-tim
|
|||||||
| `-p, --poster` | Poster timecode | `HH:MM:SS` or seconds | `00:00:00` | `-p 00:00:05` or `-p 10` |
|
| `-p, --poster` | Poster timecode | `HH:MM:SS` or seconds | `00:00:00` | `-p 00:00:05` or `-p 10` |
|
||||||
| `-e, --encoder` | Video encoder | `auto`, `nvenc`, `qsv`, `amf`, `vaapi`, `videotoolbox`, `v4l2`, `cpu` | `auto` | `-e nvenc` |
|
| `-e, --encoder` | Video encoder | `auto`, `nvenc`, `qsv`, `amf`, `vaapi`, `videotoolbox`, `v4l2`, `cpu` | `auto` | `-e nvenc` |
|
||||||
| `-d, --decoder` | Video decoder (hwaccel) | `auto`, `nvenc`, `qsv`, `vaapi`, `videotoolbox`, `v4l2`, `cpu` | `auto` | `-d cpu` |
|
| `-d, --decoder` | Video decoder (hwaccel) | `auto`, `nvenc`, `qsv`, `vaapi`, `videotoolbox`, `v4l2`, `cpu` | `auto` | `-d cpu` |
|
||||||
|
| `-m, --muted` | Disable audio track | flag | off | `-m` |
|
||||||
|
|
||||||
### Examples
|
### Examples
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Default (DASH + HLS, auto profiles)
|
# Default (DASH + HLS, auto profiles)
|
||||||
create-vod video.mp4
|
npx @gromlab/create-vod video.mp4
|
||||||
|
|
||||||
# Custom output directory
|
# Custom output directory
|
||||||
create-vod video.mp4 ./output
|
npx @gromlab/create-vod video.mp4 ./output
|
||||||
|
|
||||||
# Selected resolutions
|
# Selected resolutions
|
||||||
create-vod video.mp4 -r 720,1080,1440
|
npx @gromlab/create-vod video.mp4 -r 720,1080,1440
|
||||||
|
|
||||||
# High FPS
|
# High FPS
|
||||||
create-vod video.mp4 -r 720@60,1080@60
|
npx @gromlab/create-vod video.mp4 -r 720@60,1080@60
|
||||||
|
|
||||||
# Poster from 5th second
|
# Poster from 5th second
|
||||||
create-vod video.mp4 -p 5
|
npx @gromlab/create-vod video.mp4 -p 5
|
||||||
|
|
||||||
# Force CPU encode/decode
|
# Force CPU encode/decode
|
||||||
create-vod video.mp4 -c h264 -e cpu -d cpu
|
npx @gromlab/create-vod video.mp4 -c h264 -e cpu -d cpu
|
||||||
|
|
||||||
# Force GPU encode + CPU decode
|
# Force GPU encode + CPU decode
|
||||||
create-vod video.mp4 -c h264 -e nvenc -d cpu
|
npx @gromlab/create-vod video.mp4 -c h264 -e nvenc -d cpu
|
||||||
|
|
||||||
# Combined parameters
|
# Combined parameters
|
||||||
create-vod video.mp4 ./output -r 720,1080@60,1440@60 -p 00:00:10
|
npx @gromlab/create-vod video.mp4 ./output -r 720,1080@60,1440@60 -p 00:00:10
|
||||||
|
|
||||||
|
# No audio
|
||||||
|
npx @gromlab/create-vod video.mp4 -m
|
||||||
```
|
```
|
||||||
|
|
||||||
### Supported resolutions
|
### Supported resolutions
|
||||||
|
|||||||
40
README_RU.md
40
README_RU.md
@@ -27,20 +27,30 @@ brew install ffmpeg gpac
|
|||||||
## Быстрый старт
|
## Быстрый старт
|
||||||
Перед запуском убедитесь, что в системе установлены `FFmpeg` и `MP4Box` (см. Install).
|
Перед запуском убедитесь, что в системе установлены `FFmpeg` и `MP4Box` (см. Install).
|
||||||
```bash
|
```bash
|
||||||
# Использование через npx (без установки)
|
|
||||||
npx @gromlab/create-vod video.mp4
|
npx @gromlab/create-vod video.mp4
|
||||||
|
|
||||||
# Или глобальная установка
|
|
||||||
npm install -g @gromlab/create-vod
|
|
||||||
create-vod video.mp4
|
|
||||||
```
|
```
|
||||||
|
|
||||||
**Результат:** В текущей директории будет создана папка `video/` с сегментами в папках `{profile}-{codec}/`, манифестами DASH и HLS в корне, постером и превью спрайтами.
|
**Результат:** В текущей директории появится структура выходных файлов:
|
||||||
|
```
|
||||||
|
video/
|
||||||
|
├── manifest.mpd # DASH манифест
|
||||||
|
├── master.m3u8 # HLS мастер-плейлист
|
||||||
|
├── poster.jpg # Постер с указанного таймкода
|
||||||
|
├── thumbnails.jpg # Спрайт превью
|
||||||
|
├── thumbnails.vtt # Таймкоды превью
|
||||||
|
├── audio/ # Аудиосегменты (init + m4s)
|
||||||
|
├── 1080p/ # Сегменты H.264 1080p
|
||||||
|
├── 720p/ # Сегменты H.264 720p
|
||||||
|
├── 480p/ # Сегменты H.264 480p
|
||||||
|
├── 360p/ # Сегменты H.264 360p
|
||||||
|
├── 1080p-av1/ # Сегменты AV1 1080p (если выбран av1)
|
||||||
|
└── ... # Остальные профили/кодеки по схеме {profile}-{codec}
|
||||||
|
```
|
||||||
|
|
||||||
## Параметры CLI
|
## Параметры CLI
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
create-vod <input-video> [output-dir] [-r resolutions] [-c codec] [-p poster-timecode] [-e encoder] [-d decoder]
|
create-vod <input-video> [output-dir] [-r resolutions] [-c codec] [-p poster-timecode] [-e encoder] [-d decoder] [-m]
|
||||||
```
|
```
|
||||||
|
|
||||||
### Основные параметры
|
### Основные параметры
|
||||||
@@ -59,27 +69,31 @@ create-vod <input-video> [output-dir] [-r resolutions] [-c codec] [-p poster-tim
|
|||||||
| `-p, --poster` | Таймкод для постера | `HH:MM:SS` или секунды | `00:00:00` | `-p 00:00:05` или `-p 10` |
|
| `-p, --poster` | Таймкод для постера | `HH:MM:SS` или секунды | `00:00:00` | `-p 00:00:05` или `-p 10` |
|
||||||
| `-e, --encoder` | Видео энкодер | `auto`, `nvenc`, `qsv`, `amf`, `vaapi`, `videotoolbox`, `v4l2`, `cpu` | `auto` | `-e nvenc` |
|
| `-e, --encoder` | Видео энкодер | `auto`, `nvenc`, `qsv`, `amf`, `vaapi`, `videotoolbox`, `v4l2`, `cpu` | `auto` | `-e nvenc` |
|
||||||
| `-d, --decoder` | Видео декодер (hwaccel) | `auto`, `nvenc`, `qsv`, `vaapi`, `videotoolbox`, `v4l2`, `cpu` | `auto` | `-d cpu` |
|
| `-d, --decoder` | Видео декодер (hwaccel) | `auto`, `nvenc`, `qsv`, `vaapi`, `videotoolbox`, `v4l2`, `cpu` | `auto` | `-d cpu` |
|
||||||
|
| `-m, --muted` | Отключить аудио дорожку в выходных файлах | `flag` | `off` | `-m` |
|
||||||
|
|
||||||
### Примеры использования
|
### Примеры использования
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Базовая конвертация (DASH + HLS, авто кодек, автопрофили)
|
# Базовая конвертация (DASH + HLS, авто кодек, автопрофили)
|
||||||
create-vod video.mp4
|
npx @gromlab/create-vod video.mp4
|
||||||
|
|
||||||
# Указать выходную директорию
|
# Указать выходную директорию
|
||||||
create-vod video.mp4 ./output
|
npx @gromlab/create-vod video.mp4 ./output
|
||||||
|
|
||||||
# Только выбранные разрешения
|
# Только выбранные разрешения
|
||||||
create-vod video.mp4 -r 720,1080,1440
|
npx @gromlab/create-vod video.mp4 -r 720,1080,1440
|
||||||
|
|
||||||
# Высокий FPS для игровых стримов
|
# Высокий FPS для игровых стримов
|
||||||
create-vod video.mp4 -r 720@60,1080@60
|
npx @gromlab/create-vod video.mp4 -r 720@60,1080@60
|
||||||
|
|
||||||
# Постер с 5-й секунды
|
# Постер с 5-й секунды
|
||||||
create-vod video.mp4 -p 5
|
npx @gromlab/create-vod video.mp4 -p 5
|
||||||
|
|
||||||
# Комбинация параметров
|
# Комбинация параметров
|
||||||
create-vod video.mp4 ./output -r 720,1080@60,1440@60 -p 00:00:10
|
npx @gromlab/create-vod video.mp4 ./output -r 720,1080@60,1440@60 -p 00:00:10
|
||||||
|
|
||||||
|
# Без звука
|
||||||
|
npx @gromlab/create-vod video.mp4 -m
|
||||||
```
|
```
|
||||||
|
|
||||||
### Поддерживаемые разрешения
|
### Поддерживаемые разрешения
|
||||||
|
|||||||
42
bin/cli.js
42
bin/cli.js
File diff suppressed because one or more lines are too long
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@gromlab/create-vod",
|
"name": "@gromlab/create-vod",
|
||||||
"author": "Gromov Sergei",
|
"author": "Gromov Sergei",
|
||||||
"version": "0.1.10",
|
"version": "0.1.15",
|
||||||
"description": "DASH/HLS video converter with hardware acceleration (NVENC/QSV/AMF/VAAPI), thumbnails and poster generation",
|
"description": "DASH/HLS video converter with hardware acceleration (NVENC/QSV/AMF/VAAPI), thumbnails and poster generation",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"main": "./dist/index.js",
|
"main": "./dist/index.js",
|
||||||
@@ -19,6 +19,7 @@
|
|||||||
"dist",
|
"dist",
|
||||||
"bin",
|
"bin",
|
||||||
"README.md",
|
"README.md",
|
||||||
|
"README_RU.md",
|
||||||
"LICENSE"
|
"LICENSE"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@@ -282,7 +282,7 @@ console.log(` File: ${input}`);
|
|||||||
console.log(` Size: ${fileSizeMB} MB`);
|
console.log(` Size: ${fileSizeMB} MB`);
|
||||||
console.log(` Resolution: ${metadata.width}x${metadata.height}`);
|
console.log(` Resolution: ${metadata.width}x${metadata.height}`);
|
||||||
console.log(` FPS: ${metadata.fps.toFixed(2)}`);
|
console.log(` FPS: ${metadata.fps.toFixed(2)}`);
|
||||||
console.log(` Duration: ${Math.floor(metadata.duration / 60)}m ${Math.floor(metadata.duration % 60)}s`);
|
console.log(` Duration: ${metadata.duration.toFixed(2)}s`);
|
||||||
console.log(` Codec: ${metadata.codec}`);
|
console.log(` Codec: ${metadata.codec}`);
|
||||||
if (metadata.videoBitrate) {
|
if (metadata.videoBitrate) {
|
||||||
console.log(` Video Bitrate: ${(metadata.videoBitrate / 1000).toFixed(2)} Mbps`);
|
console.log(` Video Bitrate: ${(metadata.videoBitrate / 1000).toFixed(2)} Mbps`);
|
||||||
@@ -313,7 +313,7 @@ if (customProfiles && customProfiles.length > 0) {
|
|||||||
profileResult.warnings.forEach(warn => console.warn(` - ${warn}`));
|
profileResult.warnings.forEach(warn => console.warn(` - ${warn}`));
|
||||||
}
|
}
|
||||||
|
|
||||||
displayProfiles = profileResult.profiles.map(p => p.name);
|
displayProfiles = profileResult.profiles.map(p => p.fps ? `${p.name}@${p.fps}` : p.name);
|
||||||
} else {
|
} else {
|
||||||
const autoProfiles = selectProfiles(
|
const autoProfiles = selectProfiles(
|
||||||
metadata.width,
|
metadata.width,
|
||||||
@@ -321,7 +321,7 @@ if (customProfiles && customProfiles.length > 0) {
|
|||||||
metadata.fps,
|
metadata.fps,
|
||||||
metadata.videoBitrate
|
metadata.videoBitrate
|
||||||
);
|
);
|
||||||
displayProfiles = autoProfiles.map(p => p.name);
|
displayProfiles = autoProfiles.map(p => p.fps ? `${p.name}@${p.fps}` : p.name);
|
||||||
}
|
}
|
||||||
|
|
||||||
const manifestDesc = [
|
const manifestDesc = [
|
||||||
|
|||||||
@@ -161,7 +161,8 @@ export async function encodeProfileToMP4(
|
|||||||
const targetWidth = profile.width;
|
const targetWidth = profile.width;
|
||||||
const targetHeight = profile.height;
|
const targetHeight = profile.height;
|
||||||
|
|
||||||
if (decoderAccel === 'nvenc') {
|
const useCudaScale = decoderAccel === 'nvenc';
|
||||||
|
if (useCudaScale) {
|
||||||
// CUDA path: вписываем в профиль с сохранением исходного AR
|
// CUDA path: вписываем в профиль с сохранением исходного AR
|
||||||
filters.push(`scale_cuda=${targetWidth}:${targetHeight}:force_original_aspect_ratio=decrease:force_divisible_by=2`);
|
filters.push(`scale_cuda=${targetWidth}:${targetHeight}:force_original_aspect_ratio=decrease:force_divisible_by=2`);
|
||||||
} else {
|
} else {
|
||||||
@@ -181,24 +182,32 @@ export async function encodeProfileToMP4(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Если использовали GPU-скейл, возвращаем кадры в системную память перед CPU-фильтрами
|
||||||
|
if (useCudaScale) {
|
||||||
|
filters.push('hwdownload', 'format=nv12');
|
||||||
|
}
|
||||||
|
|
||||||
// Центрируем кадр, чтобы браузеры (Firefox/videotoolbox) не игнорировали PAR
|
// Центрируем кадр, чтобы браузеры (Firefox/videotoolbox) не игнорировали PAR
|
||||||
filters.push(
|
filters.push(`pad=${targetWidth}:${targetHeight}:(ow-iw)/2:(oh-ih)/2`, 'setsar=1');
|
||||||
`pad=${targetWidth}:${targetHeight}:(ow-iw)/2:(oh-ih)/2`,
|
|
||||||
'setsar=1'
|
|
||||||
);
|
|
||||||
|
|
||||||
args.push('-vf', filters.join(','));
|
args.push('-vf', filters.join(','));
|
||||||
|
|
||||||
if (!muted) {
|
if (!muted) {
|
||||||
// Audio encoding
|
// Audio encoding с нормализацией таймингов и автоподпаддингом тишиной
|
||||||
const targetAudioBitrate = parseInt(profile.audioBitrate) || 256;
|
const targetAudioBitrate = parseInt(profile.audioBitrate) || 256;
|
||||||
const optimalAudioBitrate = selectAudioBitrate(sourceAudioBitrate, targetAudioBitrate);
|
const optimalAudioBitrate = selectAudioBitrate(sourceAudioBitrate, targetAudioBitrate);
|
||||||
args.push('-c:a', 'aac', '-b:a', optimalAudioBitrate);
|
args.push('-c:a', 'aac', '-b:a', optimalAudioBitrate);
|
||||||
|
|
||||||
// Audio optimizations
|
const targetDur = duration.toFixed(3);
|
||||||
|
const audioFilters: string[] = [
|
||||||
|
'aresample=async=1:min_hard_comp=0.1:first_pts=0',
|
||||||
|
`apad=whole_dur=${targetDur}`,
|
||||||
|
`atrim=0:${targetDur}`
|
||||||
|
];
|
||||||
if (optimizations?.audioNormalize) {
|
if (optimizations?.audioNormalize) {
|
||||||
args.push('-af', 'loudnorm');
|
audioFilters.push('loudnorm');
|
||||||
}
|
}
|
||||||
|
args.push('-af', audioFilters.join(','));
|
||||||
} else {
|
} else {
|
||||||
args.push('-an'); // без аудио дорожки
|
args.push('-an'); // без аудио дорожки
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user