FFMPEG with Progress Bars
Project description
ffAlive
Run FFMPEG commands with progress bars.
Usage
from ffAlive import ffAlive
ffAlive( 'input.mp4', 'output.mov' )
It's that simple! If you want to add additional options, add them as a list in the third paramater:
from ffAlive import ffAlive
ffAlive( 'input.mp4', 'output.mov', [ '-c:v', 'prores_ks' ] )
And if you have something more complex, you can use False
for the first two parameters, and put everything in the list.
from ffAlive import ffAlive
ffAlive( False, False, [
'-i', 'left.wav',
'-i', 'right.wav',
'-i', 'centre.wav',
'-i', 'lfe.wav',
'-i', 'ls.wav',
'-i', 'rs.wav',
'-filter_complex', '[0][1][2][3][4]amerge=inputs=5,channelmap=map=0|1|2|3|4|5:5.1',
'5-1.wav',
'-ac', '2',
'stereo.wav'
] )
It also has a useful ffprobe tool, that outputs as a dictionary.
from ffAlive import ffprobe
print( ffprobe( 'input.mp4' ) )
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
ffAlive-1.0.0.tar.gz
(2.2 kB
view details)
Built Distribution
File details
Details for the file ffAlive-1.0.0.tar.gz
.
File metadata
- Download URL: ffAlive-1.0.0.tar.gz
- Upload date:
- Size: 2.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f5db4594aa5fa832f236cd44b9d5aacf8a038e2b7f1db9cf9d03e653d88323d6 |
|
MD5 | e0d89b1876281fbe778500be08afbc66 |
|
BLAKE2b-256 | 504806de168a44f25f4176db4187fcdbaad5ba5b137f6b021491ed0f8681c27b |
File details
Details for the file ffAlive-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: ffAlive-1.0.0-py3-none-any.whl
- Upload date:
- Size: 2.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3a09025da26cc50f92da573d9ced0a429b30aaf7c242febd8f1b71026d9ee3ee |
|
MD5 | 2615343cf0cc53007e405e86cf30b051 |
|
BLAKE2b-256 | cd02a06efc87298de1270152ecaaefde8bfe9094e65f882c1a5942cb1824ccc4 |