sh2515
Joined: Wed Sep 26, 2007 3:39 pm Posts: 65
|
Posted: Sat Mar 03, 2012 5:20 pm Post subject: zenity progress bar |
|
|
Hi
Wanting to get a progress bar to to show the progress going up per file converted but all I get is 0% or finished it all 100%
here is the code for converting video cast to audio for my dog walks
| Code: |
#!/bin/bash
cd ~/Videos/casts
echo n | for i in *.*; do
ffmpeg -i $i -vn -acodec copy ~/Videos/casts/audio/"${i%.*}".mp4
done 2>&1 | zenity --title="coverting" --text="$i" --progress --percentage=0 --auto-kill
|
any ideas |
|