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.4.tar.gz
(2.8 kB
view details)
Built Distribution
File details
Details for the file ffAlive-1.0.4.tar.gz
.
File metadata
- Download URL: ffAlive-1.0.4.tar.gz
- Upload date:
- Size: 2.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 96a468aba56742d994d733be224f6cd112d6c4a14f450d183d73b3b92059920b |
|
MD5 | 96644c89d01c0cb2e1483019bd7f76fd |
|
BLAKE2b-256 | 58792f76901c0c7393e6ee0b05fcbdbf8fe337bde142ba9bda8ea41513cc985f |
File details
Details for the file ffAlive-1.0.4-py3-none-any.whl
.
File metadata
- Download URL: ffAlive-1.0.4-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 | 669fde2b96b310727f72c55d34646dc1ff06e7a3018da697945a83ff4e82ee0c |
|
MD5 | 23d648a12c73e328ad18c221ef06f105 |
|
BLAKE2b-256 | e2723f00158c45fe9b5eb6daed7308311217d7ad600eecb5ecad2d1a408d274d |