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.2.tar.gz
(2.2 kB
view details)
Built Distribution
File details
Details for the file ffAlive-1.0.2.tar.gz
.
File metadata
- Download URL: ffAlive-1.0.2.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 | c24f117798fef86a64767e3d01ccb571db6ea1034c603bae4453cbb035e00828 |
|
MD5 | a981503e43f2b74a98ac050723ab9606 |
|
BLAKE2b-256 | 429e7bd9b09a3c6a57f60e60c82353b1da7cb20b9ac624e96e21a90d938d3f27 |
File details
Details for the file ffAlive-1.0.2-py3-none-any.whl
.
File metadata
- Download URL: ffAlive-1.0.2-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 | fd645d2c8476e0d3707e4a7a9b05ab60aaa905597cbb1d9db36ee5ad90babaa2 |
|
MD5 | 3829c59a4db09d9f37fcc9c6637bc183 |
|
BLAKE2b-256 | 45782acf94f3be41432e1f73b33ef5806c011e073bff6b4d04eb1acfb1bd96bb |