sidneys / ffmpeg-progressbar-cli

A colored progress bar for FFmpeg.
https://npmjs.com/package/ffmpeg-progressbar-cli
MIT License
208 stars 21 forks source link

ffmpeg-bar no execute in powershell script #11

Open gvonkreisler opened 4 years ago

couleurm commented 3 years ago

I have similar issue, ffmpeg does the same command just fine (yes I manually deleted the file after and it got the same error)

image

PixelVengeur commented 2 years ago

Bumping this to say that I believe the solution to the bar not showing up is to use a more verbose loglevel. From my testing, anything less verbose than the default "info" will result in not showing the progress bar.

So instead of using ffmpeg-bar -loglevel warning -i input.mkv output.mkv

Consider using instead one of the following ffmpeg-bar -loglevel info-i input.mkv output.mkv (the default value, you can omit the loglevel flag in this case) ffmpeg-bar -loglevel verbose -i input.mkv output.mkv ffmpeg-bar -loglevel debug -i input.mkv output.mkv

And the progress bar should show up

couleurm commented 2 years ago

Still does not work for me, in the mean time I've found ffpb, which is made in python and seems to work much nicer with PowerShell

ps: also here's compiled builds if you don't wanna bother with python