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.7.tar.gz
(2.9 kB
view details)
Built Distribution
File details
Details for the file ffAlive-1.0.7.tar.gz
.
File metadata
- Download URL: ffAlive-1.0.7.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 | 8d109c958c140f1e07bc69a848af9e2f87951e156b4658dbcd126b6b7bfcecea |
|
MD5 | dc1747e0907645574725c72042539a37 |
|
BLAKE2b-256 | 87e84b88c7ccbbb871be2fad7fbb1bc4a22c6acafa0fe0a2071d03587c42bcba |
File details
Details for the file ffAlive-1.0.7-py3-none-any.whl
.
File metadata
- Download URL: ffAlive-1.0.7-py3-none-any.whl
- Upload date:
- Size: 3.1 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 | ec7f77b83af315be8c1f5948e7a7bbea40e05a2cd0cf2793e63de95904949d55 |
|
MD5 | 9aec35fce63b784ab31d5f64a1909886 |
|
BLAKE2b-256 | f807eaca48e70d90368f32396d2abd1551c9a72eb123a5e32a2c2aacb64bb84f |