No project description provided
Project description
Video Pocket Knife (videopk)
A collection of helper functions for processing videos. Currently, only transcoding is supported.
The initial use case was reducing the size of the videos acquired using a cell phone which normally have an overkill bitrate. This was driven by the need to save space on my Google Photos account.
Currently only one tool is available video-transcode
, please type video-transcode --help
for details. The resulting transcoded file will contain all the metadata of the initial file including the rotation. The resulting file is in mp4
file format where the video stream is encoded using High Efficiency Video Coding (HEVC), also known as H.265.
Installation
pip install videopk
The code relies on FFmpeg to perform the conversion. Make sure ffmpeg
is installed and in your path. This code has not been tested on windows, only under Linux.
- For gpu support, make sure to install FFmpeg NVIDIA GPU Hardware Acceleation.
- Also make sure the
ffmpeg
installation haslibx265
support if you want to perform software encoding.
How to use
To transcode a video file, use video-transcode
:
usage: video transcoding [-h] [-v] [-n] [--version] [-b BITRATE] input_file output_dir
positional arguments:
input_file Input file
output_dir Outout directory
options:
-h, --help show this help message and exit
-v, --verbose Verbose output
-n, --no_gpu Do not use gpu
--version show program's version number and exit
-b BITRATE, --bitrate BITRATE
Bitrate, in bps, if not specified, nominal bitrate is calculated (preferred option)
To transcode a file using nominal bitrate. Note that the nominal bitrate is conservately high, suitable for scenes that are noisy such as scenes that contain trees, clouds and bushes. This bitrate has been determined using this calculator.
video-transcode input.mp4 output_dir
The resulting file will be located under output_dir/input.mp4
.
API Usage
Sample. Currenty, the API is meant to be asynchronous, synchronous version of the API will be added in the future.
import asyncio
from videopk.ffmpeg import Transcoder
async def main():
transcoder = Transcoder()
# Try using the gpu for encoding, will throw an exception if no gpu codec is found
# Currently, this will throw an FFmpegUnsupportedCodec exception.
transcoder.parameters.try_gpu = True
# Will compute the nominal bitrate using average framerate of the file and its resolution
transcoder.parameters.auto_bitrate = True
# Output file will be in H.265 (HEVC) format
await transcoder.transcode("input.mp4", "output.mp4")
if __name__ == "__main__":
asyncio.run(main())
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file videopk-2.0.0.tar.gz
.
File metadata
- Download URL: videopk-2.0.0.tar.gz
- Upload date:
- Size: 8.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0399d9d57d0dd5de39cbfad2fc055d708368c05b34f3001cd224aa2a30b6c1e4 |
|
MD5 | a546083ea9f32a88f4f160247dd6c01d |
|
BLAKE2b-256 | d90227a7a5e0fa908a7af94dbcfde3dce79c4485a8d5064ebb4600cec0cb538b |
File details
Details for the file videopk-2.0.0-py3-none-any.whl
.
File metadata
- Download URL: videopk-2.0.0-py3-none-any.whl
- Upload date:
- Size: 9.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c6ba9770e8f212bb4648628601630836ccd8cacdcb06f223398326006e86a850 |
|
MD5 | e141f2bf8808312f5a7e618a95265c0e |
|
BLAKE2b-256 | 2d60321ea53a84700c65afed063d64f180ef8dd6b8a8a21129885fe6ece80ae1 |