Questions tagged [progress-bar]

A progress bar is a graphical control element used to visualize the progression of an extended computer operation, such as a download, file transfer, or installation. This tag is to be used when referring to computer operations. Questions about programing, developing or creating progress bars are off topic and should be asked at http://stackoverflow.com/.

A progress bar is a graphical control element used to visualize the progression of an extended computer operation, such as a download, file transfer, or installation. Sometimes, the graphic is accompanied by a textual representation of the progress in a percent format.

The concept of a progress bar was invented before digital computing. In 1896 Karol Adamiecki developed a chart which he called a harmonogram, which is better known today as a Gantt chart. Adamiecki did not publish his chart until 1931, however, and then only in Polish. The chart thus now bears the name of Henry Gantt (1861–1919), who designed his chart around the years 1910-1915 and popularized it in the west.

Source

18 questions
7
votes
2 answers

ffmpeg less verbose, without hiding progress bar

Without editing and recompiling ffmpeg from source, how can one hide some of the many lines that it prints when it starts encoding, without also hiding its progress bar that updates every second or so while encoding? Progress bar: frame=14759…
5
votes
3 answers

How to show extraction progress of 7zip inside cmd?

7z.exe do not show any extraction progress in cmd."C:\Program Files\7-Zip\7zG.exe" -y x -pPASSWORD "D:\Myfile.rar" Extracts the file with a GUI progress-bar. But I don't want a GUI progress bar. I want to show the progress in terms of percentage…
Deb
  • 219
4
votes
1 answer

Tar using progress bar and handling multi-volumes

I'm trying to create a tar of a large LVM volume onto multiple external drives. That part is solved. Now, because it is a LONG process, I'd like a progress bar. From the excellent articles here, I've gotten close. The issue is that the PV bar…
4
votes
1 answer

Tar backup with progress bar

I would like to add a progress bar to my tar backup command. I found out that the bar shell script should be able to do this, but I am unable to figure out the correct command. sudo tar pzcf - /media/data | bar > /media/backups/backup.tar.gz With…
Jens
  • 523
4
votes
1 answer

Progress bar bug in linux

When I copy a large file to a flash drive, the progress bar reaches the end very fast, but then it stays like that until the file is really copied to the flash drive. I looked on the web about this problem, and it doesn't seem to be a file explorer…
Sidahmed
  • 387
3
votes
1 answer

"Simple" way to run ProgressBar / GUI in Powershell

Having spent about 8hrs trying different configurations, I've run out of ideas. (I think it's to do with the "single thread" nature of the Powershell; in PERL you could do a 'fork' which may solve the problem) In short, the user clicks "Start" This…
Chris Brown
  • 57
  • 1
  • 1
  • 5
2
votes
0 answers

linux boot up screen image + progress bar

I have a Linux system on which I want to have my own boot up image and a progress bar to indicate the progress. I made my own theme and added it using plymouth-set-default-theme -R 'name-of-theme'. I have just added a .png image to the theme and it…
ins
  • 21
2
votes
1 answer

Windows 7 progress bar sometimes turns yellow

The pulsating green progress bar sometimes turns yellow in Windows 7. It happens in multiple apps and programs, but I can't tell the exact conditions under which it occurs. Does it mean anything or is it a glitch?
Tomas Andrle
  • 3,102
2
votes
1 answer

How can I change the color of the progress bar in Windows 10?

I am interested to find a possibility to change the color of the progress bar in Windows 10 (Anniversary). I've tried this solution but there are some limitations, in the taskbar, the progress color is still green. Also I've found an app that let me…
2
votes
2 answers

Use pipe viewer when streaming directory through tar

I am currently streaming a directory over SSH after compressing it through tar: tar cz /path/to/foo | pv | ssh HOSTNAME 'tar xmz && some-cool-command' The issue is that pv doesn't know the total size of the stream so it cannot show me a proper…
1
vote
1 answer

wget's downloading progress in reverse order?

i have no idea what happened, but suddenly it started showing progress bar in the reverse order... HTTP request sent, awaiting response... 200 OK Length: 4102725632 (3.8G) [application/octet-stream] Saving to: `*******.***' -64%…
Deval
  • 13
1
vote
0 answers

Nushell progress status length and index

I am running some image transcoding tasks using taskfile and Nushell -- using Nconvert to transcode. transcode-jpegxl: #!nu let read_img_files = { ls -f **/* | where type == file | get name} do $read_img_files | enumerate | par-each {|it|…
Shah-G
  • 161
1
vote
1 answer

How can show a progress bar when mixing sound using FFmpeg in Flutter?

I am mixing two files(a,b) into one output(c) using FFmpeg. As it takes a long time to mixing a file I would like to display a progress bar. Can someone please guide me on how to go about the same? String fileMixCommand= "-i "+ a +" -stream_loop -1…
1
vote
0 answers

Retrieving / Exporting Progress Chart of Windows File Processing

In newer window systems, a progress chart is shown when you process a large amount of files (transfer / copy, etc.). Is it possible to retrieve information of these graphs? Can it be done somehow? Is this information stored somewhere? Windows File…
nayfaan
  • 111
  • 3
1
vote
2 answers

Display scp progress in zenity window

I would like to graphically display the scp transfer progress of several files from a remote server to the local machine. I thought using Zenity for example. Browsing the net I found the command pv can be used to do so. Something like that: ( scp…
Maxbester
  • 229
1
2