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.6.tar.gz
(2.9 kB
view details)
Built Distribution
File details
Details for the file ffAlive-1.0.6.tar.gz
.
File metadata
- Download URL: ffAlive-1.0.6.tar.gz
- Upload date:
- Size: 2.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6f8aebb4e8e116a9d0f68092095dd85f571df8678642eb098bb511e293d32dd2 |
|
MD5 | fb80a20f2d28c206ee5325fa14864e6b |
|
BLAKE2b-256 | fb27dcd7d13fc3f8fefadd19e23e407fc61424fb5b83175980ce23145a617938 |
File details
Details for the file ffAlive-1.0.6-py3-none-any.whl
.
File metadata
- Download URL: ffAlive-1.0.6-py3-none-any.whl
- Upload date:
- Size: 3.2 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 | 82f1499122dd6874d2360daec4c8be2d4da05e6079d8b3a146a2b4ca1bad9463 |
|
MD5 | 55d5e39362ba22efcf1b5dc4500f9490 |
|
BLAKE2b-256 | 0a679d6bf473e73502e506b25e423d663f029af5e830e7f18ed8f6cd7a2241ab |