Metadata-Version: 2.1
Name: concat_video_g4
Version: 1.0.0
Summary: Concat 2 video files with same codecs and params
Home-page: https://github.com/Genzo4/concat_video
Author: Genzo
Author-email: genzo@bk.ru
License: MIT
Project-URL: Bug Tracker, https://github.com/Genzo4/concat_video/issues
Keywords: g4,concat_video,concat video
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Natural Language :: Russian
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

![Language](https://img.shields.io/badge/English-brigthgreen)

# Concat video

![PyPI](https://img.shields.io/pypi/v/concat-video-g4)
![PyPI - License](https://img.shields.io/pypi/l/concat-video-g4)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/concat-video-g4)


Concat 2 video files with same codecs and params.
It use ffmpeg. Install [ffmpeg](https://ffmpeg.org) and add it to PATH.

***

## Installation

### Package Installation from PyPi

```bash
$ pip install concat-video-g4
```

### Package Installation from Source Code

The source code is available on [GitHub](https://github.com/Genzo4/concat_video).  
Download and install the package:

```bash
$ git clone https://github.com/Genzo4/concat_video
$ cd concat_video
$ pip install -r requirements.txt
$ pip install .
```

***

## Usage

```python
from concat_video_g4 import concat_video

concat_video('path_to_video_1.ts', 'path_to_video_2.ts', 'path_to_output_video.ts')
```

***

[Changelog](https://github.com/Genzo4/concat_video/blob/main/CHANGELOG.md)

***

![Language](https://img.shields.io/badge/Русский-brigthgreen)

# Concat video

![PyPI](https://img.shields.io/pypi/v/concat-video-g4)
![PyPI - License](https://img.shields.io/pypi/l/concat-video-g4)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/concat-video-g4)

Объединение двух видео файлов с одинаковыми кодеками и параметрами в один файл.
Используется ffmpeg. Для использования установите [ffmpeg](https://ffmpeg.org) 
и пропишите его в PATH.

***

## Установка

### Установка пакета с PyPi

```bash
$ pip install concat-video-g4
```

### Установка пакета из исходного кода

Исходный код размещается на [GitHub](https://github.com/Genzo4/concat_video).  
Скачайте его и установите пакет:

```bash
$ git clone https://github.com/Genzo4/concat_video
$ cd concat_video
$ pip install -r requirements.txt
$ pip install .
```

***

## Использование

```python
from concat_video_g4 import concat_video

concat_video('path_to_video_1.ts', 'path_to_video_2.ts', 'path_to_output_video.ts')
```

***

[Changelog](https://github.com/Genzo4/concat_video/blob/main/CHANGELOG.md)
